NuGet / Home

Repo for NuGet Client issues
Other
1.5k stars 252 forks source link

project.assets.json is not being updated when restoring #6999

Closed Tadimsky closed 6 years ago

Tadimsky commented 6 years ago

Details about Problem

I recently updated all of our services to target .NET Core 2.1 and everything worked great on my one machine and on someone else's machine. However, most other people were running into an issue like this:

Errors in C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\ContentServiceFrontend.csproj
    NU1701: Package 'Microsoft.IdentityModel.Protocols.OpenIdConnect 5.2.0' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
    NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.
    NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1) / win10-x64. Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.

Nothing seemed to fix it - I tried nuking every nuget cache I could find, reinstalling Visual Studio, etc. I then compared the project.assets.json file on the machine that worked with the one that didn't and found that the assets file was not updating properly.

This is from the machine that didn't work:

"Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
  "type": "package",
  "dependencies": {
    "Microsoft.IdentityModel.Protocols": "5.2.0",
    "NETStandard.Library": "1.6.1",
    "Newtonsoft.Json": "10.0.1",
    "System.Dynamic.Runtime": "4.3.0",
    "System.IdentityModel.Tokens.Jwt": "5.2.0"
  },
  "compile": {
    "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  },
  "runtime": {
    "lib/net45/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
  }
},
"Microsoft.EntityFrameworkCore.Abstractions/2.1.0": {
  "sha512": "yK69ZDd9mDqEZoDvvevHRRSM+ykJwA4xU1d8VnNm5pSXbBZA9acLfj4QuaqCtjgggFFzodcT/K2LNp5Pcm+Eaw==",
  "type": "package",
  "path": "microsoft.entityframeworkcore.abstractions/2.1.0",
  "files": [
    ".signature.p7s",
    "lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.xml",
    "microsoft.entityframeworkcore.abstractions.2.1.0.nupkg.sha512",
    "microsoft.entityframeworkcore.abstractions.nuspec"
  ]
}

You can see that there are no DLLs listed for Microsoft.EntityFrameworkCore.Abstractions and only net45 DLLs listed for Microsoft.IdentityModel.Protocols.OpenIdConnect.

This is on the machine where it worked:

"Microsoft.IdentityModel.Protocols.OpenIdConnect/5.2.0": {
    "type": "package",
    "dependencies": {
        "Microsoft.IdentityModel.Protocols": "5.2.0",
        "NETStandard.Library": "1.6.1",
        "Newtonsoft.Json": "10.0.1",
        "System.Dynamic.Runtime": "4.3.0",
        "System.IdentityModel.Tokens.Jwt": "5.2.0"
    },
    "compile": {
        "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
    },
    "runtime": {
        "lib/netstandard1.4/Microsoft.IdentityModel.Protocols.OpenIdConnect.dll": {}
    }
},
"Microsoft.EntityFrameworkCore.Abstractions/2.1.0": {
"type": "package",
"compile": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
},
"runtime": {
"lib/netstandard2.0/Microsoft.EntityFrameworkCore.Abstractions.dll": {}
}
}

If I delete the project.assets.json file on the machine then everything works and it recreates it with the format that works. This seems like a pretty gnarly bug (and took down most of our engineers for the day) - any ideas what's happening? Why would nuget restore -force not blow away this file?

NuGet product used (NuGet.exe | VS UI | Package Manager Console | dotnet.exe): Nuget.exe

NuGet version (x.x.x.xxx): 4.6.2.5055

dotnet.exe --version (if appropriate): 2.1.300

VS version (if appropriate): 15.8.0 Preview 2

OS version (i.e. win10 v1607 (14393.321)): 17682.1000

Other suggested things

Verbose Logs

NuGet Version: 4.6.2.5055
MSBuild P2P timeout [ms]: 120000
MSBuild auto-detection: using msbuild version '15.8.60.28450' from 'C:\Program Files (x86)\Microsoft Visual Studio\Preview\Enterprise\MSBuild\15.0\bin'. Use option -MSBuildVersion to force nuget to use a specific version of MSBuild.
C:\Program Files (x86)\Microsoft Visual Studio\Preview\Enterprise\MSBuild\15.0\bin\msbuild.exe "C:\Users\joschm\AppData\Local\Temp\NuGetScratch\nqp1piug.1mj.nugetinputs.targets" /t:GenerateRestoreGraphFile /nologo /nr:false /v:q /p:NuGetRestoreTargets="C:\Users\joschm\AppData\Local\Temp\NuGetScratch\2desng4l.tbd.nugetrestore.targets" /p:RestoreUseCustomAfterTargets="True" /p:RestoreTaskAssemblyFile="C:\Users\joschm\Intentional\services\.tools\nuget.exe" /p:RestoreBuildInParallel="False" /p:RestoreUseSkipNonexistentTargets="False"

Running restore with 8 concurrent jobs.
Reading project file C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\ContentServiceFrontend.csproj.
The restore inputs for 'ContentServiceFrontend' have changed. Continuing restore.
Restoring packages for C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\ContentServiceFrontend.csproj...
Restoring packages for .NETCoreApp,Version=v2.1...
Resolving conflicts for .NETCoreApp,Version=v2.1...
Scanning packages for runtime.json files...
Merging in runtimes defined in package/Microsoft.NETCore.App 2.1.0.
Merging in runtimes defined in package/Microsoft.NETCore.DotNetHostPolicy 2.1.0.
Merging in runtimes defined in package/Microsoft.NETCore.Platforms 2.1.0.
Merging in runtimes defined in package/Microsoft.NETCore.Targets 2.1.0.
Merging in runtimes defined in package/Microsoft.NETCore.DotNetHostResolver 2.1.0.
Merging in runtimes defined in package/Microsoft.NETCore.DotNetAppHost 2.1.0.
Restoring packages for .NETCoreApp,Version=v2.1/win10-x64...
Resolving conflicts for .NETCoreApp,Version=v2.1/win10-x64...
NU1701: Package 'Microsoft.IdentityModel.Protocols.OpenIdConnect 5.2.0' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
Checking compatibility of packages on .NETCoreApp,Version=v2.1.
Checking compatibility for ContentServiceFrontend 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.App 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Versioning 2.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Azure.DocumentDB.Core 1.9.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Azure.KeyVault 2.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeAnalysis.FxCopAnalyzers 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Authentication 2.1.103 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Ecs 1.0.489-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Logging.CorrelationId 1.0.510-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Messages 1.1.337 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.App 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric 6.1.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.AspNetCore.Kestrel 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.Data 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.Services 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Skype.ECS.Client 3.0.0.148 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Skype.ECS.Core 1.37.1.884 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Skype.Seatbelt.Core 2.3.0.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nerdbank.GitVersioning 2.1.23 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for StackExchange.Redis.StrongName 1.2.6 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reactive 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for WindowsAzure.Storage 9.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Collections.Api 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for ContentServiceFrontend.Api 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for ContentValidationService.Api 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for IntentionalServices.Shared 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for SharesService.Api 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for WhiteboardsStore.Api 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNet.WebApi.Client 5.2.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Antiforgery 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Cookies 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Core 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Facebook 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Google 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.JwtBearer 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.MicrosoftAccount 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.OAuth 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.OpenIdConnect 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.Twitter 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authentication.WsFederation 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authorization 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Authorization.Policy 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Connections.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.CookiePolicy 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Cors 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Cryptography.Internal 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Cryptography.KeyDerivation 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.DataProtection 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.DataProtection.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.DataProtection.Extensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Diagnostics 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Diagnostics.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.HostFiltering 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Hosting 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Hosting.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Hosting.Server.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Html.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http.Connections 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http.Connections.Common 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http.Extensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Http.Features 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.HttpOverrides 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.HttpsPolicy 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Identity 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Identity.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Identity.UI 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.JsonPatch 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Localization 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Localization.Routing 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.MiddlewareAnalysis 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Analyzers 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.ApiExplorer 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Core 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Cors 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.DataAnnotations 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Formatters.Json 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Formatters.Xml 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Localization 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor.Extensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor.ViewCompilation 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.RazorPages 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.TagHelpers 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Mvc.ViewFeatures 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.NodeServices 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Owin 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Razor 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Razor.Design 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Razor.Language 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Razor.Runtime 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.ResponseCaching 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.ResponseCaching.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.ResponseCompression 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Rewrite 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Routing 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Routing.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.HttpSys 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.IISIntegration 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Core 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Https 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.Session 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SignalR 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SignalR.Common 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SignalR.Core 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SignalR.Protocols.Json 1.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SpaServices 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.SpaServices.Extensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.StaticFiles 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.WebSockets 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.AspNetCore.WebUtilities 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeAnalysis.Razor 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.
Checking compatibility for Microsoft.EntityFrameworkCore.Analyzers 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.Design 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.InMemory 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.Relational 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.SqlServer 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.EntityFrameworkCore.Tools 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Caching.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Caching.Memory 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Caching.SqlServer 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.Binder 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.CommandLine 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.EnvironmentVariables 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.FileExtensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.Ini 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.Json 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.KeyPerFile 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.UserSecrets 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Configuration.Xml 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.DependencyInjection 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.DependencyInjection.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.DiagnosticAdapter 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.FileProviders.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.FileProviders.Composite 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.FileProviders.Embedded 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.FileProviders.Physical 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.FileSystemGlobbing 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Hosting 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Hosting.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Http 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Identity.Core 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Identity.Stores 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Localization 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Localization.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.Configuration 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.Console 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.Debug 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.EventSource 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Logging.TraceSource 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.ObjectPool 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Options 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Options.ConfigurationExtensions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.Primitives 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.WebEncoders 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Net.Http.Headers 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.TraceSource 4.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Linq.Queryable 4.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.SecureString 4.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Azure.KeyVault.WebKey 2.0.7 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Rest.ClientRuntime.Azure 3.3.7 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Rest.ClientRuntime 2.3.8 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeQuality.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NetCore.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NetFramework.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Text.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Graph 1.9.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Clients.ActiveDirectory 3.19.6 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.DotNetHostPolicy 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.Platforms 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.Targets 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for NETStandard.Library 2.0.3 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.AspNetCore.Abstractions 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.Diagnostics.Internal 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Bond.Core.CSharp 7.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Bond.CSharp 7.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Bond.Runtime.CSharp 7.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx.Tasks 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx.Coordination 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx.Context 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx.Oop 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.AsyncEx.Interop.WaitHandles 5.0.0-pre-05 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.Cancellation 1.0.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Collections 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Collections.Concurrent 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Collections.NonGeneric 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.Tools 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO.Compression 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO.FileSystem 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Linq 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.NameResolution 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.Security 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.Sockets 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Emit 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Emit.Lightweight 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.TypeExtensions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Extensions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.InteropServices.RuntimeInformation 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Algorithms 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.X509Certificates 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Text.RegularExpressions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Thread 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.ThreadPool 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Timer 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reactive.PlatformServices 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.ServiceFabric 1.1.168-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.Services.Remoting 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Newtonsoft.Json 11.0.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Logging 1.0.511-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.ServiceFabric.Logging 1.0.478-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Newtonsoft.Json.Bson 1.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Protocols.OpenIdConnect 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Protocols.WsFederation 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IdentityModel.Tokens.Jwt 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO.Pipelines 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Win32.Registry 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Xml 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Principal.Windows 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.DiagnosticSource 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Metadata 1.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Text.Encodings.Web 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Buffers 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CSharp 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.DependencyModel 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Tasks.Extensions 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.ComponentModel.Annotations 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeAnalysis.CSharp 2.8.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Memory 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Numerics.Vectors 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.CompilerServices.Unsafe 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Cng 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Channels 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.WebSockets.WebSocketProtocol 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeAnalysis.Common 2.8.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Remotion.Linq 2.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Collections.Immutable 1.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Interactive.Async 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Data.SqlClient 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Graph.Core 1.9.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Serialization.Json 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Serialization.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.DotNetHostResolver 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.Disposables 1.2.3 with .NETCoreApp,Version=v2.1.
Checking compatibility for Nito.Collections.Deque 1.0.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.Debug 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.Tracing 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Globalization 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Resources.ResourceManager 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Tasks 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.IO.Compression 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Handles 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.InteropServices 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Text.Encoding 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO.FileSystem.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Win32.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.Net.Security 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Globalization.Extensions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Claims 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Encoding 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.OpenSsl 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Principal 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Emit.ILGeneration 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Primitives 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reflection.Extensions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Numerics 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.Net.Http 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Globalization.Calendars 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Csp 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reactive.Linq 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.Http 4.3.3 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ServiceFabric.FabricTransport.Internal 3.0.480 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Intentional.Services.Utilities.Telemetry.ApplicationInsights 2.0.485-beta with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.AspNetCore 2.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.Settings.Configuration 2.6.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.Sinks.ApplicationInsights 2.6.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.Sinks.Console 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.Sinks.Debug 1.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.ServiceFabric.Native 2.1.1-beta1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog 2.7.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Protocols 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Dynamic.Runtime 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Tokens.Saml 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Xml 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.XmlDocument 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Tokens 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.AccessControl 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.Pkcs 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Permissions 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.DotNet.PlatformAbstractions 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.CodeAnalysis.Analyzers 1.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.AppContext 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Console 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.FileVersionInfo 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.StackTrace 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Linq.Expressions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Text.Encoding.Extensions 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Tasks.Parallel 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.ValueTuple 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.ReaderWriter 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.XDocument 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.XPath.XDocument 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Text.Encoding.CodePages 4.5.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Private.DataContractSerialization 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.NETCore.DotNetAppHost 2.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reactive.Core 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.InteropServices.WindowsRuntime 4.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.AspNetCore 2.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Serilog.Extensions.Logging 2.0.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.ServiceFabric 2.1.1-beta1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Caching 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.IdentityModel.Logging 5.2.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Collections.Specialized 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.Contracts 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.ObjectModel 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Runtime.Serialization.Xml 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.XPath 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Xml.XmlSerializer 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Reactive.Interfaces 3.1.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.ComponentModel 4.0.1 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights 2.6.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.DependencyCollector 2.6.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.PerfCounterCollector 2.6.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.WindowsServer 2.6.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel 2.6.4 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Configuration.ConfigurationManager 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.Requests 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for Microsoft.Extensions.PlatformAbstractions 1.1.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Diagnostics.Process 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.IO.FileSystem.AccessControl 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.NetworkInformation 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Net.WebHeaderCollection 4.3.0 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Security.Cryptography.ProtectedData 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1.
Checking compatibility for System.Threading.Overlapped 4.3.0 with .NETCoreApp,Version=v2.1.
Incompatible packages: 1
Checking compatibility of packages on .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for ContentServiceFrontend 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.App 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Versioning 2.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Azure.DocumentDB.Core 1.9.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Azure.KeyVault 2.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeAnalysis.FxCopAnalyzers 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Authentication 2.1.103 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Ecs 1.0.489-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Logging.CorrelationId 1.0.510-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Messages 1.1.337 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.App 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric 6.1.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.AspNetCore.Kestrel 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.Data 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.Services 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Skype.ECS.Client 3.0.0.148 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Skype.ECS.Core 1.37.1.884 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Skype.Seatbelt.Core 2.3.0.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nerdbank.GitVersioning 2.1.23 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for StackExchange.Redis.StrongName 1.2.6 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reactive 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for WindowsAzure.Storage 9.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Collections.Api 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for ContentServiceFrontend.Api 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for ContentValidationService.Api 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for IntentionalServices.Shared 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for SharesService.Api 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for WhiteboardsStore.Api 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNet.WebApi.Client 5.2.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Antiforgery 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Cookies 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Core 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Facebook 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Google 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.JwtBearer 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.MicrosoftAccount 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.OAuth 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.OpenIdConnect 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.Twitter 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authentication.WsFederation 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authorization 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Authorization.Policy 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Connections.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.CookiePolicy 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Cors 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Cryptography.Internal 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Cryptography.KeyDerivation 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.DataProtection 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.DataProtection.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.DataProtection.Extensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Diagnostics 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Diagnostics.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.HostFiltering 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Hosting 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Hosting.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Hosting.Server.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Html.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http.Connections 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http.Connections.Common 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http.Extensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Http.Features 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.HttpOverrides 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.HttpsPolicy 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Identity 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Identity.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Identity.UI 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.JsonPatch 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Localization 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Localization.Routing 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.MiddlewareAnalysis 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Analyzers 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.ApiExplorer 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Core 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Cors 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.DataAnnotations 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Formatters.Json 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Formatters.Xml 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Localization 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor.Extensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.Razor.ViewCompilation 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.RazorPages 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.TagHelpers 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Mvc.ViewFeatures 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.NodeServices 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Owin 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Razor 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Razor.Design 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Razor.Language 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Razor.Runtime 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.ResponseCaching 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.ResponseCaching.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.ResponseCompression 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Rewrite 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Routing 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Routing.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.HttpSys 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.IISIntegration 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Core 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Https 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Server.Kestrel.Transport.Sockets 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.Session 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SignalR 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SignalR.Common 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SignalR.Core 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SignalR.Protocols.Json 1.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SpaServices 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.SpaServices.Extensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.StaticFiles 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.WebSockets 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.AspNetCore.WebUtilities 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeAnalysis.Razor 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1) / win10-x64. Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.
Checking compatibility for Microsoft.EntityFrameworkCore.Analyzers 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.Design 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.InMemory 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.Relational 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.SqlServer 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.EntityFrameworkCore.Tools 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Caching.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Caching.Memory 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Caching.SqlServer 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.Binder 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.CommandLine 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.EnvironmentVariables 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.FileExtensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.Ini 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.Json 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.KeyPerFile 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.UserSecrets 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Configuration.Xml 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.DependencyInjection 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.DependencyInjection.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.DiagnosticAdapter 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.FileProviders.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.FileProviders.Composite 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.FileProviders.Embedded 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.FileProviders.Physical 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.FileSystemGlobbing 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Hosting 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Hosting.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Http 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Identity.Core 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Identity.Stores 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Localization 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Localization.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.Abstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.Configuration 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.Console 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.Debug 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.EventSource 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Logging.TraceSource 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.ObjectPool 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Options 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Options.ConfigurationExtensions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.Primitives 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.WebEncoders 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Net.Http.Headers 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.TraceSource 4.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Linq.Queryable 4.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.SecureString 4.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Azure.KeyVault.WebKey 2.0.7 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Rest.ClientRuntime.Azure 3.3.7 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Rest.ClientRuntime 2.3.8 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeQuality.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NetCore.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NetFramework.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Text.Analyzers 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Graph 1.9.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Clients.ActiveDirectory 3.19.6 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x64.Microsoft.NETCore.App 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.DotNetHostPolicy 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.Platforms 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.Targets 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for NETStandard.Library 2.0.3 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.AspNetCore.Abstractions 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.Diagnostics.Internal 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Bond.Core.CSharp 7.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Bond.CSharp 7.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Bond.Runtime.CSharp 7.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx.Tasks 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx.Coordination 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx.Context 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx.Oop 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.AsyncEx.Interop.WaitHandles 5.0.0-pre-05 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.Cancellation 1.0.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Collections 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Collections.Concurrent 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Collections.NonGeneric 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.Tools 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO.Compression 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO.FileSystem 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Linq 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.NameResolution 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.Security 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.Sockets 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Emit 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Emit.Lightweight 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.TypeExtensions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Extensions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.InteropServices.RuntimeInformation 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Algorithms 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.X509Certificates 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Text.RegularExpressions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Thread 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.ThreadPool 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Timer 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reactive.PlatformServices 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.ServiceFabric 1.1.168-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.Services.Remoting 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Newtonsoft.Json 11.0.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Logging 1.0.511-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.ServiceFabric.Logging 1.0.478-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Newtonsoft.Json.Bson 1.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Protocols.OpenIdConnect 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Protocols.WsFederation 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IdentityModel.Tokens.Jwt 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO.Pipelines 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Win32.Registry 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Xml 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Principal.Windows 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.DiagnosticSource 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Metadata 1.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Text.Encodings.Web 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Buffers 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CSharp 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.DependencyModel 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Tasks.Extensions 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.ComponentModel.Annotations 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeAnalysis.CSharp 2.8.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Memory 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Numerics.Vectors 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.CompilerServices.Unsafe 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Cng 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Channels 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.WebSockets.WebSocketProtocol 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeAnalysis.Common 2.8.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Remotion.Linq 2.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Collections.Immutable 1.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Interactive.Async 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Data.SqlClient 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Graph.Core 1.9.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Serialization.Json 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Serialization.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x64.Microsoft.NETCore.DotNetHostPolicy 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.DotNetHostResolver 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.Disposables 1.2.3 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Nito.Collections.Deque 1.0.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.Debug 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.Tracing 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Globalization 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Resources.ResourceManager 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Tasks 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.IO.Compression 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Handles 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.InteropServices 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Text.Encoding 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO.FileSystem.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Win32.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.Net.Security 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Globalization.Extensions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Claims 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Encoding 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.OpenSsl 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Principal 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Emit.ILGeneration 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Primitives 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reflection.Extensions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Numerics 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.Net.Http 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Globalization.Calendars 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Csp 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reactive.Linq 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.Http 4.3.3 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ServiceFabric.FabricTransport.Internal 3.0.480 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Intentional.Services.Utilities.Telemetry.ApplicationInsights 2.0.485-beta with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.AspNetCore 2.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.Settings.Configuration 2.6.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.Sinks.ApplicationInsights 2.6.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.Sinks.Console 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.Sinks.Debug 1.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.ServiceFabric.Native 2.1.1-beta1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog 2.7.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Protocols 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Dynamic.Runtime 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Tokens.Saml 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Xml 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.XmlDocument 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Tokens 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.AccessControl 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.Pkcs 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Permissions 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.DotNet.PlatformAbstractions 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.CodeAnalysis.Analyzers 1.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.AppContext 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Console 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.FileVersionInfo 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.StackTrace 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Linq.Expressions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Text.Encoding.Extensions 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Tasks.Parallel 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.ValueTuple 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.ReaderWriter 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.XDocument 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.XPath.XDocument 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Text.Encoding.CodePages 4.5.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Private.DataContractSerialization 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x64.Microsoft.NETCore.DotNetHostResolver 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.NETCore.DotNetAppHost 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.Apple 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reactive.Core 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.InteropServices.WindowsRuntime 4.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.AspNetCore 2.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Serilog.Extensions.Logging 2.0.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.ServiceFabric 2.1.1-beta1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Caching 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.IdentityModel.Logging 5.2.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Collections.Specialized 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.Contracts 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.ObjectModel 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Runtime.Serialization.Xml 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.XPath 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-arm64.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x64.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x86.runtime.native.System.Data.SqlClient.sni 4.4.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Xml.XmlSerializer 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.win-x64.Microsoft.NETCore.DotNetAppHost 2.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Reactive.Interfaces 3.1.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.ComponentModel 4.0.1 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.debian.8-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.fedora.23-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.fedora.24-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.opensuse.13.2-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.opensuse.42.1-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.osx.10.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.rhel.7-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.ubuntu.14.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.ubuntu.16.04-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for runtime.ubuntu.16.10-x64.runtime.native.System.Security.Cryptography.OpenSsl 4.3.2 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights 2.6.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.DependencyCollector 2.6.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.PerfCounterCollector 2.6.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.WindowsServer 2.6.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.ApplicationInsights.WindowsServer.TelemetryChannel 2.6.4 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Configuration.ConfigurationManager 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.Requests 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for Microsoft.Extensions.PlatformAbstractions 1.1.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Diagnostics.Process 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.IO.FileSystem.AccessControl 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.NetworkInformation 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Net.WebHeaderCollection 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Security.Cryptography.ProtectedData 4.5.0-preview1-25914-04 with .NETCoreApp,Version=v2.1 (win10-x64).
Checking compatibility for System.Threading.Overlapped 4.3.0 with .NETCoreApp,Version=v2.1 (win10-x64).
Incompatible packages: 1
Committing restore...
Assets file has not changed. Skipping assets file writing. Path: C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\obj\project.assets.json
Writing cache file to disk. Path: C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\obj\ContentServiceFrontend.csproj.nuget.cache
Restore failed in 2.85 sec for C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\ContentServiceFrontend.csproj.

Errors in C:\Users\joschm\Intentional\services\src\ContentServiceFrontend\ContentServiceFrontend.csproj
    NU1701: Package 'Microsoft.IdentityModel.Protocols.OpenIdConnect 5.2.0' was restored using '.NETFramework,Version=v4.6.1' instead of the project target framework '.NETCoreApp,Version=v2.1'. This package may not be fully compatible with your project.
    NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.
    NU1202: Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1) / win10-x64. Package Microsoft.EntityFrameworkCore.Abstractions 2.1.0 does not support any target frameworks.

NuGet Config files used:
    C:\Users\joschm\Intentional\services\src\NuGet.Config
    C:\Users\joschm\AppData\Roaming\NuGet\NuGet.Config
    C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.config
    C:\Program Files (x86)\NuGet\Config\Microsoft.VisualStudio.Offline.Fallback.config
    C:\Program Files (x86)\NuGet\Config\ServiceFabricSDK.config

Feeds used:
    C:\Program Files\Microsoft SDKs\Service Fabric\packages
    C:\Users\joschm\Intentional\services-utilities\Authentication\bin\Debug
    C:\Users\joschm\Intentional\services-utilities\Logging\bin\Debug
    https://api.nuget.org/v3/index.json
    https://baconator.pkgs.visualstudio.com/_packaging/CVS-Public/nuget/v3/index.json
    https://intentional.pkgs.visualstudio.com/_packaging/intent/nuget/v3/index.json
    https://microsoft.pkgs.visualstudio.com/_packaging/MEE.Privacy/nuget/v3/index.json
    https://microsoft.pkgs.visualstudio.com/_packaging/Universal.Store/nuget/v3/index.json
    https://msblox.pkgs.visualstudio.com/_packaging/AzureGenevaMonitoring/nuget/v3/index.json
    https://o365exchange.pkgs.visualstudio.com/_packaging/Common/nuget/v3/index.json
    https://securitytools.pkgs.visualstudio.com/DefaultCollection/_packaging/SecureDevelopmentTools/nuget/v3/index.json
    https://skype.pkgs.visualstudio.com/DefaultCollection/_packaging/csc/nuget/v3/index.json

I've attached both of the project.assets.json files in this zip: NugetRestore.zip

nkolev92 commented 6 years ago

@Tadimsky

Do you still have a machine where this never worked?

Can you look for the Microsoft.EntityFrameworkCore.Abstractions package location on disk and post that enumeration? I'd like to figure out how this happened in the first place, why the libraries section doesn't contain the assemblies in the first place. Did you do any specific actions when you ran into this problem?

The reason why you need to delete the assets file is this https://github.com/NuGet/NuGet.Client/pull/1785.

It's a known gap. I've created an issue specifically for that, but note it's an analysis. https://github.com/NuGet/Home/issues/7000

Tadimsky commented 6 years ago

Hey @nkolev92

I do not have it anymore, but I'm thinking I could just restore the assets file and it would break again? How would you like me to find the package location? I was just using Windows Search before. It was showing up in the package cache, the dotnet sdk store folder and the Nuget Fallback location (also under dotnet).

No, all I did was try and build the project on the other machines - 3 machines worked and 3 didn't. On one of the machines I was getting the same error but for Microsoft.CSharp v 4.5

nkolev92 commented 6 years ago

@Tadimsky Personally I use a tool called "everything" for things like this.

All 3 enumerations would been great. Depending on the type of project, different locations are used (non-.NET Core projects won't use the SDK Fallback Folder)

I'd imagine it works now on all machines if you try to restore again, as I'm suspecting it's either an extraction or a setup problem.

Tadimsky commented 6 years ago

Here is some more information we found:

Machine that doesn't work:

microsoftteams-image 3 project.assets.json

Machine that works:

microsoftteams-image 4 project.assets.json

So it looks like it's just not restoring the package correctly? There is no DLL for the library.

nkolev92 commented 6 years ago

NuGet itself doesn't write to the Fallback Folder but merely reads from it.

Basically the root cause here is the assembly for that package is not in the lib folder on the broken machine.

Looks like something could have gone wrong during setup?

// cc @rrelyea @livarcocc

nkolev92 commented 6 years ago

This issue was moved to dotnet/cli#9439