λ ~/ dotnet --version10.0.100λ ~/ system_profiler SPSoftwareDataType SPHardwareDataTypeSoftware: System Software Overview: System Version: macOS 26.1 (25B78) Kernel Version: Darwin 25.1.0 Boot Volume: Macintosh HD Boot Mode: Normal Secure Virtual Memory: Enabled System Integrity Protection: Enabled Time since boot: 15 hours, 17 minutesHardware: Hardware Overview: Model Name: MacBook Pro Model Identifier: Mac15,7 Model Number: MRW13LL/A Chip: Apple M3 Pro Total Number of Cores: 12 (6 performance and 6 efficiency) Memory: 18 GB System Firmware Version: 13822.41.1 OS Loader Version: 13822.41.1 Activation Lock Status: Enabledλ ~/ ### VSCode infoVersion: 1.106.3Commit: bf9252a2fb45be6893dd8870c0bf37e2e1766d61Date: 2025-11-25T22:28:18.024ZElectron: 37.7.0ElectronBuildId: 12781156Chromium: 138.0.7204.251Node.js: 22.20.0V8: 13.8.258.32-electron.0OS: Darwin arm64 25.1.0This is a personal/nonmanaged computer
I'm attempting to follow the Blazor movie database app tutorial on Microsoft's website and getting an error 'Could not load type' which then ends referencing Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer and Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService when running dotnet ef migrations add InitialCreate
From what I can tell the package Microsoft.CodeAnalysis.SolutionCrawler.* is no longer available in Nuget although its a requirement for the command? - for simplicity
I'm mostly following the tutorial except the project name and I've installed 2 packages, GraphQL.Client and the accompanying Newtonsoft serializer. I've also created a model folder with all the models needed to make calls, and the api client in an ApiClient folder.
So far my troubleshooting has been
Updated dotnet version from
10.0.100-rc.2.25502.107to10.0.100Verifying macos and vscode are up to date
Reinstalled packages mentioned here
Creating a new project up to migration command
.csproj
<Project Sdk="Microsoft.NET.Sdk.Web"><PropertyGroup><TargetFramework>net10.0</TargetFramework><Nullable>enable</Nullable><ImplicitUsings>enable</ImplicitUsings><BlazorDisableThrowNavigationException>true</BlazorDisableThrowNavigationException></PropertyGroup><ItemGroup><PackageReference Include="GraphQL.Client" Version="6.1.0" /><PackageReference Include="GraphQL.Client.Serializer.Newtonsoft" Version="6.1.0" /><PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid" Version="10.0.0" /><PackageReference Include="Microsoft.AspNetCore.Components.QuickGrid.EntityFrameworkAdapter" Version="10.0.0" /><PackageReference Include="Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore" Version="10.0.0" /><PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="10.0.0" /><PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="10.0.0" /><PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="10.0.0"><IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets><PrivateAssets>all</PrivateAssets></PackageReference><PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="9.0.0" /></ItemGroup></Project>The error
Unable to load one or more of the requested types.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UpdateLegacySuppressions.UpdateLegacySuppressionsCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UseSystemHashCode.UseSystemHashCodeCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UseExplicitTupleName.UseExplicitTupleNameCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UseCoalesceExpression.UseCoalesceExpressionForIfNullStatementCheckCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UseCoalesceExpression.UseCoalesceExpressionForTernaryConditionalCheckCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.UseCoalesceExpression.UseCoalesceExpressionForNullableTernaryConditionalCheckCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.SimplifyBooleanExpression.SimplifyConditionalCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.RemoveUnnecessarySuppressions.RemoveUnnecessaryInlineSuppressionsCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.RemoveUnnecessarySuppressions.RemoveUnnecessaryAttributeSuppressionsCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.RemoveRedundantEquality.RemoveRedundantEqualityCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.AddRequiredParentheses.AddRequiredParenthesesCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FindPackagesAsync' in type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchUpdateNoOpEngine' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FindPackagesAsync' in type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchUpdateEngine' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'FindPackagesAsync' in type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchUpdateEngineProxy' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Method 'FixAllAsync' in type 'Microsoft.CodeAnalysis.PreferFrameworkType.PreferFrameworkTypeCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Host.Mef.WorkspaceKindMetadata' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzerProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Method 'GetFixesAsync' in type 'Microsoft.CodeAnalysis.CodeFixes.Configuration.ConfigureSeverity.ConfigureSeverityLevelCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'GetFixesAsync' in type 'Microsoft.CodeAnalysis.CodeFixes.Configuration.ConfigureCodeStyle.ConfigureCodeStyleOptionCodeFixProvider' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'DetermineDocumentsToSearchAsync' in type 'Microsoft.CodeAnalysis.ChangeSignature.DelegateInvokeMethodReferenceFinder' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Shared.Extensions.KnownTypes' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.CodeActions.CodeFixOptionsProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Method 'OnReferencesFoundAsync' in type 'FindReferencesProgress' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.PackageWithTypeResult' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.ReferenceAssemblyWithTypeResult' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'ConfiguredYieldAwaiter' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzerProvider' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Method 'get_PartialDefinitionPart' in type 'WrappedEventSymbol' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'get_IsExtension' in type 'WrappedNamedTypeSymbol' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Method 'get_PartialDefinitionPart' in type 'WrappedPropertySymbol' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypePropertyGenerationBehavior' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypeGenerationOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Method 'OnReferencesFoundAsync' in type 'FindReferencesProgressAdapter' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' does not have an implementation.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ExtractMethod.ExtractMethodOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'ConfiguredYieldAwaiter' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Host.Mef.WorkspaceKindMetadata' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.TextDocumentStates`1' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' due to value type mismatch.Could not load type 'Microsoft.CodeAnalysis.TextDocumentStates`1' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' due to value type mismatch.Could not load type 'Roslyn.Utilities.IObjectWritable' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Checksum' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' due to value type mismatch.Could not load type 'Microsoft.CodeAnalysis.Checksum' from assembly 'Microsoft.CodeAnalysis.Features, Version=4.8.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' due to value type mismatch.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'NoThrowTaskAwaiter' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypePropertyGenerationBehavior' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.ImplementType.ImplementTypePropertyGenerationBehavior' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Utilities.ParameterName' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.Utilities.ParameterName' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'ItemCompletedDisposer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.PackageWithTypeResult' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.ReferenceAssemblyWithTypeResult' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SymbolSearch.SymbolSearchOptions' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.ISolutionCrawlerRegistrationService' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.Could not load type 'Microsoft.CodeAnalysis.SolutionCrawler.IIncrementalAnalyzer' from assembly 'Microsoft.CodeAnalysis.Workspaces, Version=4.14.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35'.