This question is locked. New answers and comments are not allowed.
It appears when the AppBuilder extension is enabled, you're unable to execute the command "Enable-Migrations" to enable code first Entity Framework migrations. Doing so causes this error to be returned:
PM> Enable-MigrationsException calling "SetData" with "2" argument(s): "Type 'Microsoft.VisualStudioTools.Project.Automation.AbOAProject' in assembly 'Telerik.BlackDragon.MpfBaseClasses, Version=2016.1.128.6, Culture=neutral, PublicKeyToken=28c6af4ce7dade13' is not marked as serializable."At C:\Development\AthleteTracker\DEV\Source\packages\EntityFramework.6.1.3\tools\EntityFramework.psm1:720 char:5+ $domain.SetData('startUpProject', $startUpProject)+ ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + CategoryInfo : NotSpecified: (:) [], MethodInvocationException + FullyQualifiedErrorId : SerializationException System.NullReferenceException: Object reference not set to an instance of an object. at System.Data.Entity.Migrations.Extensions.ProjectExtensions.GetProjectTypes(Project project, Int32 shellVersion) at System.Data.Entity.Migrations.Extensions.ProjectExtensions.IsWebProject(Project project) at System.Data.Entity.Migrations.MigrationsDomainCommand.GetFacade(String configurationTypeName, Boolean useContextWorkingDirectory) at System.Data.Entity.Migrations.EnableMigrationsCommand.FindContextToEnable(String contextTypeName) at System.Data.Entity.Migrations.EnableMigrationsCommand.<>c__DisplayClass2.<.ctor>b__0() at System.Data.Entity.Migrations.MigrationsDomainCommand.Execute(Action command)Object reference not set to an instance of an object.
Disabling the AppBuilder Extensions allows the command to execute properly. Is this a known issue, is there a fix?