Entity Framework NullReferenceException on second migration - entity-framework
I am using entity framework in an F# project (SAFE-stack) and I can create the initial migration, but when I try to do another migration it fails with a NullReferenceException.
I'm on a SAFE-template 3.1.1, but if I add entity framework to a new safe-template 3.1.1 it works fine. I suspect it is something wrong with my paket.lock, but I am not sure, and I have not had any success in fixing ut.
Running the migration that fails give this error:
❯ dotnet ef migrations add Test --verbose
Using project '/Users/espen/code/horus/src/Server/Server.fsproj'.
Using startup project '/Users/espen/code/horus/src/Server/Server.fsproj'.
Writing '/Users/espen/code/horus/src/Server/obj/Server.fsproj.EntityFrameworkCore.targets'...
dotnet msbuild /target:GetEFProjectMetadata /property:EFProjectMetadataFile=/var/folders/sb/g7_08qr135x_00vnhvz0hqqc0000gn/T/tmp509y63.tmp /verbosity:quiet /nologo /Users/espen/code/horus/src/Server/Server.fsproj
Writing '/Users/espen/code/horus/src/Server/obj/Server.fsproj.EntityFrameworkCore.targets'...
dotnet msbuild /target:GetEFProjectMetadata /property:EFProjectMetadataFile=/var/folders/sb/g7_08qr135x_00vnhvz0hqqc0000gn/T/tmp4U1rqW.tmp /verbosity:quiet /nologo /Users/espen/code/horus/src/Server/Server.fsproj
Build started...
dotnet build /Users/espen/code/horus/src/Server/Server.fsproj /verbosity:quiet /nologo
Build succeeded.
0 Warning(s)
0 Error(s)
Time Elapsed 00:00:13.26
Build succeeded.
dotnet exec --depsfile /Users/espen/code/horus/src/Server/bin/Debug/net5.0/Server.deps.json --additionalprobingpath /Users/espen/.nuget/packages --additionalprobingpath /usr/local/share/dotnet/sdk/NuGetFallbackFolder --runtimeconfig /Users/espen/code/horus/src/Server/bin/Debug/net5.0/Server.runtimeconfig.json /Users/espen/.nuget/packages/dotnet-ef/5.0.17/tools/netcoreapp3.1/any/tools/netcoreapp2.0/any/ef.dll migrations add Test --assembly /Users/espen/code/horus/src/Server/bin/Debug/net5.0/Server.dll --startup-assembly /Users/espen/code/horus/src/Server/bin/Debug/net5.0/Server.dll --project-dir /Users/espen/code/horus/src/Server/ --language F# --working-dir /Users/espen/code/horus/src/Server --verbose --root-namespace Server
Using assembly 'Server'.
Using startup assembly 'Server'.
Using application base '/Users/espen/code/horus/src/Server/bin/Debug/net5.0'.
Using working directory '/Users/espen/code/horus/src/Server'.
Using root namespace 'Server'.
Using project directory '/Users/espen/code/horus/src/Server/'.
Remaining arguments: .
Finding DbContext classes...
Finding IDesignTimeDbContextFactory implementations...
Finding application service provider in assembly 'Server'...
Finding Microsoft.Extensions.Hosting service provider...
No static method 'CreateHostBuilder(string[])' was found on class 'Program'.
No application service provider was found.
Finding DbContext classes in the project...
Found DbContext 'DataContext'.
Using context 'DataContext'.
Finding design-time services for provider 'Pomelo.EntityFrameworkCore.MySql'...
Using design-time services from provider 'Pomelo.EntityFrameworkCore.MySql'.
Finding design-time services referenced by assembly 'Server'...
Finding design-time services referenced by assembly 'Server'...
No referenced design-time services were found.
Finding IDesignTimeServices implementations in assembly 'Server'...
Using design-time services from class 'DesignTimeServices'.
'DataContext' disposed.
System.NullReferenceException: Object reference not set to an instance of an object.
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.Initialize(ColumnOperation columnOperation, IColumn column, RelationalTypeMapping typeMapping, Boolean isNullable, IEnumerable`1 migrationsAnnotations, Boolean inline)
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.Diff(IColumn source, IColumn target, DiffContext diffContext)+MoveNext()
at Pomelo.EntityFrameworkCore.MySql.Migrations.Internal.MySqlMigrationsModelDiffer.SkipRedundantCharSetSpecifyingAlterColumnOperations(IEnumerable`1 migrationOperations)+MoveNext()
at Pomelo.EntityFrameworkCore.MySql.Migrations.Internal.MySqlMigrationsModelDiffer.PostFilterOperations(IEnumerable`1 migrationOperations)+MoveNext()
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.DiffCollection[T](IEnumerable`1 sources, IEnumerable`1 targets, DiffContext diffContext, Func`4 diff, Func`3 add, Func`3 remove, Func`4[] predicates)+MoveNext()
at System.Linq.Enumerable.ConcatIterator`1.MoveNext()
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.Diff(ITable source, ITable target, DiffContext diffContext)+MoveNext()
at Pomelo.EntityFrameworkCore.MySql.Migrations.Internal.MySqlMigrationsModelDiffer.PostFilterOperations(IEnumerable`1 migrationOperations)+MoveNext()
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.DiffCollection[T](IEnumerable`1 sources, IEnumerable`1 targets, DiffContext diffContext, Func`4 diff, Func`3 add, Func`3 remove, Func`4[] predicates)+MoveNext()
at System.Linq.Enumerable.ConcatIterator`1.MoveNext()
at Pomelo.EntityFrameworkCore.MySql.Migrations.Internal.MySqlMigrationsModelDiffer.PostFilterOperations(IEnumerable`1 migrationOperations)+MoveNext()
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.Sort(IEnumerable`1 operations, DiffContext diffContext)
at Microsoft.EntityFrameworkCore.Migrations.Internal.MigrationsModelDiffer.GetDifferences(IRelationalModel source, IRelationalModel target)
at Microsoft.EntityFrameworkCore.Migrations.Design.MigrationsScaffolder.ScaffoldMigration(String migrationName, String rootNamespace, String subNamespace, String language)
at Microsoft.EntityFrameworkCore.Design.Internal.MigrationsOperations.AddMigration(String name, String outputDir, String contextType, String namespace)
at Microsoft.EntityFrameworkCore.Design.OperationExecutor.AddMigrationImpl(String name, String outputDir, String contextType, String namespace)
at Microsoft.EntityFrameworkCore.Design.OperationExecutor.AddMigration.<>c__DisplayClass0_0.<.ctor>b__0()
at Microsoft.EntityFrameworkCore.Design.OperationExecutor.OperationBase.<>c__DisplayClass3_0`1.<Execute>b__0()
at Microsoft.EntityFrameworkCore.Design.OperationExecutor.OperationBase.Execute(Action action)
Object reference not set to an instance of an object.
My paket.lock file locks like this:
STORAGE: NONE
RESTRICTION: == net5.0
NUGET
remote: https://api.nuget.org/v3/index.json
Auth0.AspNetCore.Authentication (1.0.4)
Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 5.0.17)
System.Text.Encodings.Web (>= 4.5.1)
Azure.Core (1.20)
Microsoft.Bcl.AsyncInterfaces (>= 1.0)
System.Diagnostics.DiagnosticSource (>= 4.6)
System.Memory.Data (>= 1.0.2)
System.Numerics.Vectors (>= 4.5)
System.Text.Encodings.Web (>= 4.7.2)
System.Text.Json (>= 4.6)
System.Threading.Tasks.Extensions (>= 4.5.4)
Azure.Identity (1.4.1)
Azure.Core (>= 1.17)
Microsoft.Identity.Client (>= 4.30.1)
Microsoft.Identity.Client.Extensions.Msal (>= 2.18.4)
System.Memory (>= 4.5.4)
System.Security.Cryptography.ProtectedData (>= 4.5)
System.Text.Json (>= 4.6)
System.Threading.Tasks.Extensions (>= 4.5.2)
Azure.Security.KeyVault.Certificates (4.2)
Azure.Core (>= 1.15)
System.Memory (>= 4.5.4)
System.Text.Json (>= 4.6)
System.Threading.Tasks.Extensions (>= 4.5.2)
Azure.Security.KeyVault.Secrets (4.2)
Azure.Core (>= 1.15)
System.Memory (>= 4.5.4)
System.Text.Json (>= 4.6)
System.Threading.Tasks.Extensions (>= 4.5.2)
Elmish.SweetAlert (3.4)
Fable.Core (>= 3.1.3)
Fable.Elmish (>= 3.0)
FSharp.Core (>= 4.7.2)
EntityFrameworkCore.FSharp (5.0.3)
FSharp.Core (>= 5.0)
Microsoft.EntityFrameworkCore.Design (>= 5.0.3)
Expecto (9.0.4)
FSharp.Core (>= 4.6)
Mono.Cecil (>= 0.11.3)
Fable.AST (3.1.1)
Fable.Browser.Blob (1.1.4)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Browser.Dom (2.6)
Fable.Browser.Blob (>= 1.1.4)
Fable.Browser.Event (>= 1.4.5)
Fable.Browser.WebStorage (>= 1.0.4)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Browser.Event (1.4.5)
Fable.Browser.Gamepad (>= 1.0.3)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Browser.Gamepad (1.0.3)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Browser.WebStorage (1.0.4)
Fable.Browser.Event (>= 1.4.4)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Browser.XMLHttpRequest (1.1.6)
Fable.Browser.Blob (>= 1.1.4)
Fable.Browser.Event (>= 1.4.4)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7.2)
Fable.Core (3.7.1)
Fable.Elmish (3.1)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.6.2)
Fable.Elmish.Browser (3.0.4)
Fable.Browser.Dom (>= 1.0)
Fable.Core (>= 3.0)
Fable.Elmish (>= 3.0)
FSharp.Core (>= 4.6.2)
Fable.Elmish.Debugger (3.3)
Fable.Core (>= 3.2.8)
Fable.Elmish (>= 3.0)
FSharp.Core (>= 4.7.2)
Thoth.Json (>= 6.0)
Fable.Elmish.HMR (4.1)
Fable.Core (>= 3.0)
Fable.Elmish.Browser (>= 3.0.4)
Fable.Elmish.React (>= 3.0.1)
FSharp.Core (>= 4.6.2)
Fable.Elmish.React (3.0.1)
Fable.Core (>= 3.0)
Fable.Elmish (>= 3.0)
Fable.React (>= 5.1)
FSharp.Core (>= 4.6.2)
Fable.FontAwesome (2.0)
Fable.Core (>= 3.0)
Fable.React (>= 5.1)
Fable.FontAwesome.Free (2.1)
Fable.Core (>= 3.0)
Fable.FontAwesome (>= 2.0)
Fable.React (>= 5.1)
Fable.GroupingPanel (0.3.1)
Fable.React (>= 6.2)
Fable.SimpleJson (>= 3.11)
FSharp.Core (>= 4.7.2)
Fable.Mocha (2.10)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.7)
Fable.Parsimmon (4.1)
Fable.Core (>= 3.0)
FSharp.Core (>= 4.6.2)
Fable.React (8.0.1)
Fable.Browser.Dom (>= 2.4.4)
Fable.Core (>= 3.2.7)
FSharp.Core (>= 4.7.2)
Fable.Remoting.Client (7.16)
Fable.Browser.XMLHttpRequest (>= 1.0)
Fable.Core (>= 3.1.5)
Fable.Remoting.MsgPack (>= 1.13)
Fable.SimpleJson (>= 3.21)
FSharp.Core (>= 4.7)
Fable.Remoting.Giraffe (5.5)
Fable.Remoting.Server (>= 5.25)
FSharp.Core (>= 5.0)
Giraffe (>= 5.0)
Fable.Remoting.Json (2.19)
FSharp.Core (>= 4.7.2)
Newtonsoft.Json (>= 12.0.2)
Fable.Remoting.MsgPack (1.13)
FSharp.Core (>= 4.7.2)
Fable.Remoting.Server (5.25)
Fable.Remoting.Json (>= 2.19)
Fable.Remoting.MsgPack (>= 1.13)
FSharp.Core (>= 4.7.2)
Fable.SimpleJson (3.21)
Fable.Core (>= 3.1.5)
Fable.Parsimmon (>= 4.0)
FSharp.Core (>= 4.7)
Fake.Core.CommandLineParsing (5.20.4)
FParsec (>= 1.1.1)
FSharp.Core (>= 4.7.2)
Fake.Core.Context (5.20.4)
FSharp.Core (>= 4.7.2)
Fake.Core.Environment (5.20.4)
FSharp.Core (>= 4.7.2)
Fake.Core.FakeVar (5.20.4)
Fake.Core.Context (>= 5.20.4)
FSharp.Core (>= 4.7.2)
Fake.Core.Process (5.20.4)
Fake.Core.Environment (>= 5.20.4)
Fake.Core.FakeVar (>= 5.20.4)
Fake.Core.String (>= 5.20.4)
Fake.Core.Trace (>= 5.20.4)
Fake.IO.FileSystem (>= 5.20.4)
FSharp.Core (>= 4.7.2)
System.Collections.Immutable (>= 1.7.1)
Fake.Core.String (5.20.4)
FSharp.Core (>= 4.7.2)
Fake.Core.Target (5.20.4)
Fake.Core.CommandLineParsing (>= 5.20.4)
Fake.Core.Context (>= 5.20.4)
Fake.Core.Environment (>= 5.20.4)
Fake.Core.FakeVar (>= 5.20.4)
Fake.Core.Process (>= 5.20.4)
Fake.Core.String (>= 5.20.4)
Fake.Core.Trace (>= 5.20.4)
FSharp.Control.Reactive (>= 4.4.2)
FSharp.Core (>= 4.7.2)
Fake.Core.Trace (5.20.4)
Fake.Core.Environment (>= 5.20.4)
Fake.Core.FakeVar (>= 5.20.4)
FSharp.Core (>= 4.7.2)
Fake.IO.FileSystem (5.20.4)
Fake.Core.String (>= 5.20.4)
FSharp.Core (>= 4.7.2)
Farmer (1.6.16)
FSharp.Core (>= 5.0)
Feliz (1.67)
Fable.Core (>= 3.1.5)
Fable.React (>= 7.4)
Feliz.CompilerPlugins (>= 1.10)
FSharp.Core (>= 4.7.2)
Feliz.CompilerPlugins (1.10)
Fable.AST (>= 3.0)
FSharp.Core (>= 4.7.2)
Feliz.DaisyUI (2.0)
Feliz (>= 1.32)
FSharp.Core (>= 4.7.2)
Feliz.Recharts (3.14)
Feliz (>= 1.65)
FSharp.Core (>= 4.7.2)
Feliz.Router (3.8)
Fable.Core (>= 3.1.6)
Fable.Elmish (>= 3.1)
Feliz (>= 1.28)
Feliz.UseListener (>= 0.6.3)
FSharp.Core (>= 4.7.2)
Feliz.UseListener (0.6.3)
Fable.Core (>= 3.1.6 < 4.0)
Feliz (>= 1.17 < 2.0)
FSharp.Core (>= 4.7.2)
FParsec (1.1.1)
FSharp.Core (>= 4.3.4)
FSharp.Control.Reactive (5.0.2)
FSharp.Core (>= 4.7.2)
System.Reactive (>= 5.0)
FSharp.Control.Websockets (0.2.2)
FSharp.Core (>= 4.3.4)
Microsoft.IO.RecyclableMemoryStream (>= 1.2.2)
FSharp.Core (6.0.5)
Giraffe (5.0)
FSharp.Core (>= 5.0)
Giraffe.ViewEngine (>= 1.3)
Microsoft.IO.RecyclableMemoryStream (>= 1.3.6)
Newtonsoft.Json (>= 12.0.3)
Ply (>= 0.3.1)
System.Text.Json (>= 5.0.2)
Utf8Json (>= 1.3.7)
Giraffe.ViewEngine (1.4)
FSharp.Core (>= 5.0)
Google.Protobuf (3.21.5)
K4os.Compression.LZ4 (1.2.16)
K4os.Compression.LZ4.Streams (1.2.16)
K4os.Compression.LZ4 (>= 1.2.16)
K4os.Hash.xxHash (>= 1.0.6)
K4os.Hash.xxHash (1.0.7)
Microsoft.AspNetCore.Authentication.JwtBearer (5.0.10)
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.7.1)
Microsoft.AspNetCore.Authentication.OpenIdConnect (5.0.17)
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.7.1)
Microsoft.AspNetCore.Cryptography.Internal (5.0.10)
Microsoft.AspNetCore.DataProtection (5.0.10)
Microsoft.AspNetCore.Cryptography.Internal (>= 5.0.10)
Microsoft.AspNetCore.DataProtection.Abstractions (>= 5.0.10)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.Hosting.Abstractions (>= 5.0)
Microsoft.Extensions.Logging.Abstractions (>= 5.0)
Microsoft.Extensions.Options (>= 5.0)
Microsoft.Win32.Registry (>= 5.0)
System.Security.Cryptography.Xml (>= 5.0)
Microsoft.AspNetCore.DataProtection.Abstractions (5.0.10)
Microsoft.Bcl.AsyncInterfaces (5.0)
Microsoft.CodeCoverage (17.3)
Microsoft.CSharp (4.7)
Microsoft.EntityFrameworkCore (5.0.17)
Microsoft.EntityFrameworkCore.Abstractions (>= 5.0.17)
Microsoft.EntityFrameworkCore.Analyzers (>= 5.0.17)
Microsoft.Extensions.Caching.Memory (>= 5.0)
Microsoft.Extensions.DependencyInjection (>= 5.0.2)
Microsoft.Extensions.Logging (>= 5.0)
System.Collections.Immutable (>= 5.0)
System.ComponentModel.Annotations (>= 5.0)
System.Diagnostics.DiagnosticSource (>= 5.0.1)
Microsoft.EntityFrameworkCore.Abstractions (5.0.17)
Microsoft.EntityFrameworkCore.Analyzers (6.0.10)
Microsoft.EntityFrameworkCore.Design (5.0.3)
Microsoft.EntityFrameworkCore.Relational (5.0.17)
Microsoft.EntityFrameworkCore (>= 5.0.17)
Microsoft.Extensions.Configuration.Abstractions (>= 5.0)
Microsoft.Extensions.Caching.Abstractions (5.0)
Microsoft.Extensions.Primitives (>= 5.0)
Microsoft.Extensions.Caching.Memory (5.0)
Microsoft.Extensions.Caching.Abstractions (>= 5.0)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.Logging.Abstractions (>= 5.0)
Microsoft.Extensions.Options (>= 5.0)
Microsoft.Extensions.Primitives (>= 5.0)
Microsoft.Extensions.Configuration.Abstractions (5.0)
Microsoft.Extensions.Primitives (>= 5.0)
Microsoft.Extensions.DependencyInjection (5.0.2)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.DependencyInjection.Abstractions (5.0)
Microsoft.Extensions.FileProviders.Abstractions (5.0)
Microsoft.Extensions.Primitives (>= 5.0)
Microsoft.Extensions.Hosting.Abstractions (5.0)
Microsoft.Extensions.Configuration.Abstractions (>= 5.0)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.FileProviders.Abstractions (>= 5.0)
Microsoft.Extensions.Logging (5.0)
Microsoft.Extensions.DependencyInjection (>= 5.0)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.Logging.Abstractions (>= 5.0)
Microsoft.Extensions.Options (>= 5.0)
Microsoft.Extensions.Logging.Abstractions (5.0)
Microsoft.Extensions.Options (5.0)
Microsoft.Extensions.DependencyInjection.Abstractions (>= 5.0)
Microsoft.Extensions.Primitives (>= 5.0)
Microsoft.Extensions.Primitives (5.0.1)
Microsoft.Identity.Client (4.36.2)
Microsoft.Identity.Client.Extensions.Msal (2.19.1)
Microsoft.Identity.Client (>= 4.36.1)
System.Security.Cryptography.ProtectedData (>= 4.5)
Microsoft.Identity.Web (1.17)
Microsoft.AspNetCore.Authentication.JwtBearer (>= 5.0)
Microsoft.AspNetCore.Authentication.OpenIdConnect (>= 5.0)
Microsoft.Identity.Client (>= 4.36)
Microsoft.Identity.Web.Certificate (>= 1.17)
Microsoft.Identity.Web.TokenCache (>= 1.17)
Microsoft.IdentityModel.Logging (>= 6.12.2)
Microsoft.IdentityModel.Protocols.OpenIdConnect (>= 6.12.2)
System.IdentityModel.Tokens.Jwt (>= 6.12.2)
System.Text.Encodings.Web (>= 5.0.1)
Microsoft.Identity.Web.Certificate (1.17)
Azure.Identity (>= 1.3)
Azure.Security.KeyVault.Certificates (>= 4.1)
Azure.Security.KeyVault.Secrets (>= 4.1)
Microsoft.Identity.Client (>= 4.35.1)
System.Text.Encodings.Web (>= 4.7.2)
Microsoft.Identity.Web.TokenCache (1.17)
Microsoft.AspNetCore.DataProtection (>= 5.0.8)
Microsoft.Extensions.Caching.Memory (>= 5.0)
Microsoft.Extensions.Logging (>= 5.0)
Microsoft.Identity.Client (>= 4.35.1)
System.Text.Encodings.Web (>= 5.0.1)
Microsoft.Identity.Web.Ui (1.17)
Microsoft.Identity.Web (>= 1.17)
Microsoft.IdentityModel.JsonWebTokens (6.12.2)
Microsoft.IdentityModel.Tokens (>= 6.12.2)
Microsoft.IdentityModel.Logging (6.12.2)
Microsoft.IdentityModel.Protocols (6.12.2)
Microsoft.IdentityModel.Logging (>= 6.12.2)
Microsoft.IdentityModel.Tokens (>= 6.12.2)
Microsoft.IdentityModel.Protocols.OpenIdConnect (6.12.2)
Microsoft.IdentityModel.Protocols (>= 6.12.2)
System.IdentityModel.Tokens.Jwt (>= 6.12.2)
Microsoft.IdentityModel.Tokens (6.12.2)
Microsoft.CSharp (>= 4.5)
Microsoft.IdentityModel.Logging (>= 6.12.2)
System.Security.Cryptography.Cng (>= 4.5)
Microsoft.IO.RecyclableMemoryStream (2.1.3)
Microsoft.NET.Test.Sdk (17.3)
Microsoft.CodeCoverage (>= 17.3)
Microsoft.TestPlatform.TestHost (>= 17.3)
Microsoft.NETCore.Platforms (5.0.3)
Microsoft.TestPlatform.ObjectModel (17.3)
NuGet.Frameworks (>= 5.11)
System.Reflection.Metadata (>= 1.6)
Microsoft.TestPlatform.TestHost (17.3)
Microsoft.TestPlatform.ObjectModel (>= 17.3)
Newtonsoft.Json (>= 9.0.1)
Microsoft.Win32.Registry (5.0)
System.Security.AccessControl (>= 5.0)
System.Security.Principal.Windows (>= 5.0)
Microsoft.Win32.SystemEvents (5.0)
Microsoft.NETCore.Platforms (>= 5.0)
Mono.Cecil (0.11.4)
MySql.Data (8.0.30)
Google.Protobuf (>= 3.19.4)
K4os.Compression.LZ4.Streams (>= 1.2.6)
Portable.BouncyCastle (>= 1.9)
System.Buffers (>= 4.5.1)
System.Configuration.ConfigurationManager (>= 4.4.1)
System.Runtime.CompilerServices.Unsafe (>= 5.0)
System.Security.Permissions (>= 4.7)
System.Text.Encoding.CodePages (>= 4.4)
MySqlConnector (2.1.13)
Newtonsoft.Json (13.0.1)
NuGet.Frameworks (6.3)
Ply (0.3.1)
FSharp.Core (>= 4.6.2)
System.Threading.Tasks.Extensions (>= 4.5.4)
Pomelo.EntityFrameworkCore.MySql (5.0.4)
Microsoft.EntityFrameworkCore.Relational (>= 5.0.10 < 6.0)
Microsoft.Extensions.DependencyInjection (>= 5.0.2)
MySqlConnector (>= 1.3.13)
Portable.BouncyCastle (1.9)
Saturn (0.15)
FSharp.Control.Websockets (>= 0.2.2)
FSharp.Core (>= 5.0.1)
Giraffe (>= 5.0)
Microsoft.AspNetCore.Authentication.JwtBearer (>= 5.0.7)
System.Buffers (4.5.1)
System.Collections.Immutable (6.0)
System.Memory (>= 4.5.4)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
System.ComponentModel.Annotations (5.0)
System.Configuration.ConfigurationManager (5.0)
System.Security.Cryptography.ProtectedData (>= 5.0)
System.Security.Permissions (>= 5.0)
System.Diagnostics.DiagnosticSource (5.0.1)
System.Drawing.Common (5.0.2)
Microsoft.Win32.SystemEvents (>= 5.0)
System.Formats.Asn1 (5.0)
System.IdentityModel.Tokens.Jwt (6.12.2)
Microsoft.IdentityModel.JsonWebTokens (>= 6.12.2)
Microsoft.IdentityModel.Tokens (>= 6.12.2)
System.Memory (4.5.4)
System.Memory.Data (1.0.2)
System.Text.Encodings.Web (>= 4.7.2)
System.Text.Json (>= 4.6)
System.Numerics.Vectors (4.5)
System.Reactive (5.0)
System.Reflection.Emit (4.7)
System.Reflection.Emit.Lightweight (4.7)
System.Reflection.Metadata (6.0.1)
System.Collections.Immutable (>= 6.0)
System.Runtime.CompilerServices.Unsafe (6.0)
System.Security.AccessControl (5.0)
Microsoft.NETCore.Platforms (>= 5.0)
System.Security.Principal.Windows (>= 5.0)
System.Security.Cryptography.Cng (5.0)
System.Formats.Asn1 (>= 5.0)
System.Security.Cryptography.Pkcs (5.0.1)
System.Formats.Asn1 (>= 5.0)
System.Security.Cryptography.Cng (>= 5.0)
System.Security.Cryptography.ProtectedData (5.0)
System.Security.Cryptography.Xml (5.0)
System.Security.Cryptography.Pkcs (>= 5.0)
System.Security.Permissions (>= 5.0)
System.Security.Permissions (5.0)
System.Security.AccessControl (>= 5.0)
System.Windows.Extensions (>= 5.0)
System.Security.Principal.Windows (5.0)
System.Text.Encoding.CodePages (6.0)
System.Runtime.CompilerServices.Unsafe (>= 6.0)
System.Text.Encodings.Web (5.0.1)
System.Text.Json (5.0.2)
System.Threading.Tasks.Extensions (4.5.4)
System.ValueTuple (4.5)
System.Windows.Extensions (5.0)
System.Drawing.Common (>= 5.0)
Thoth.Json (6.0)
Fable.Core (>= 3.1.6)
FSharp.Core (>= 4.7.2)
Utf8Json (1.3.7)
System.Reflection.Emit (>= 4.3)
System.Reflection.Emit.Lightweight (>= 4.3)
System.Threading.Tasks.Extensions (>= 4.4)
System.ValueTuple (>= 4.4)
YoloDev.Expecto.TestSdk (0.13.3)
Expecto (>= 9.0 < 10.0)
FSharp.Core (>= 4.6.2)
System.Collections.Immutable (>= 6.0)
The problem was a string option in one of my database types. For some reason that did not work, although I have other option types, specifically DateTime option. So might be a problem with the version I have. Either way, figuring out that solved it for me, as I did not need to keep that string as an option.
Related
How do I identify which flutter packages are blocking others from being updated to latest version?
I want to upgrade my dependencies to the latest possible, but I can't because they are being blocked by one of the packages. How can I tell which one is causing the issue where others can't be updated? They pretty much all seem to be outdated. Running flutter pub outdated gives me the list of my packages where the resolvable and updatable are always the same as my current package. > flutter pub outdated Showing outdated packages. [*] indicates versions that are not the latest available. Package Name Current Upgradable Resolvable Latest direct dependencies: bip39 *1.0.3 *1.0.3 *1.0.3 1.0.6 cloud_firestore *0.16.0+1 *0.16.0+1 *0.16.0+1 1.0.5 firebase_auth *0.20.1 *0.20.1 *0.20.1 1.1.0 firebase_core *0.7.0 *0.7.0 *0.7.0 1.0.3 firebase_storage *7.0.0 *7.0.0 *7.0.0 8.0.3 flutter_blue *0.7.3 *0.7.3 *0.7.3 0.8.0 google_maps_flutter *1.2.0 *1.2.0 *1.2.0 2.0.3 http *0.12.2 *0.12.2 *0.12.2 0.13.1 image *2.1.19 *2.1.19 *2.1.19 3.0.2 image_picker *0.6.7+22 *0.6.7+22 *0.6.7+22 0.7.4 local_auth *0.6.3+4 *0.6.3+4 *0.6.3+4 1.1.4 permission_handler *5.1.0+2 *5.1.0+2 *5.1.0+2 6.1.3 transitive dependencies: archive *2.0.13 *2.0.13 *2.0.13 3.1.2 args *1.6.0 *1.6.0 *1.6.0 2.0.0 bech32 *0.1.2 *0.1.2 *0.1.2 0.2.0 bip32 *1.0.7 *1.0.7 *1.0.7 1.0.10 bs58check *1.0.1 *1.0.1 *1.0.1 1.0.2 cloud_firestore_platform_interface *3.0.2 *3.0.2 *3.0.2 4.0.1 cloud_firestore_web *0.3.0+2 *0.3.0+2 *0.3.0+2 1.0.5 convert *2.1.1 *2.1.1 *2.1.1 3.0.0 crypto *2.1.5 *2.1.5 *2.1.5 3.0.1 firebase_auth_platform_interface *3.1.0 *3.1.0 *3.1.0 4.1.0 firebase_auth_web *0.3.3 *0.3.3 *0.3.3 1.0.6 firebase_core_platform_interface *3.0.1 *3.0.1 *3.0.1 4.0.0 firebase_core_web *0.2.1+3 *0.2.1+3 *0.2.1+3 1.0.2 firebase_storage_platform_interface *1.0.4 *1.0.4 *1.0.4 2.0.1 firebase_storage_web *0.1.1+3 *0.1.1+3 *0.1.1+3 1.0.3 fixnum *0.10.11 *0.10.11 *0.10.11 1.0.0 flutter_plugin_android_lifecycle *1.0.11 *1.0.11 *1.0.11 2.0.1 google_maps_flutter_platform_interface *1.2.0 *1.2.0 *1.2.0 2.0.4 hex *0.1.2 *0.1.2 *0.1.2 0.2.0 http_parser *3.1.4 *3.1.4 *3.1.4 4.0.0 image_picker_platform_interface *1.1.6 *1.1.6 *1.1.6 2.1.0 intl *0.16.1 *0.16.1 *0.16.1 0.17.0 permission_handler_platform_interface *2.0.2 *2.0.2 *2.0.2 3.1.3 petitparser *3.1.0 *3.1.0 *3.1.0 4.1.0 plugin_platform_interface *1.0.3 *1.0.3 *1.0.3 2.0.0 pointycastle *1.0.2 *1.0.2 *1.0.2 3.0.1 protobuf *1.1.3 *1.1.3 *1.1.3 2.0.0 quiver *2.1.5 *2.1.5 *2.1.5 3.0.1 rxdart *0.24.1 *0.24.1 *0.24.1 0.26.0 source_span *1.8.0 *1.8.0 *1.8.0 1.8.1 stream_transform *1.2.0 *1.2.0 *1.2.0 2.0.0 uuid *2.2.2 *2.2.2 *2.2.2 3.0.4 xml *4.5.1 *4.5.1 *4.5.1 5.1.0
Flutter pod is not getting deleted
I had had installed firebase ad-mob to my project and after some days I removed it. My pubspec.yaml dependencies: flutter: sdk: flutter intl: ^0.16.1 http: ^0.12.0+2 json_serializable: ^3.2.5 here there is no dependence of firebase but in my Podfiles.lock it show me firebase and. when I run my iOS code from Xcode it says to me firebase framework not found. I Don't know why am able to see the firebase installation description still In my Podfiles.lock. Podfiles.lock PODS: - Firebase/AdMob (6.14.0): - Firebase/CoreOnly - Google-Mobile-Ads-SDK (~> 7.50) - Firebase/Core (6.14.0): - Firebase/CoreOnly - FirebaseAnalytics (= 6.1.7) - Firebase/CoreOnly (6.14.0): - FirebaseCore (= 6.5.0) - firebase_admob (0.0.1): - Firebase/AdMob - Firebase/Core - Flutter - firebase_core (0.0.1): - Firebase/Core - Flutter - firebase_core_web (0.1.0): - Flutter - FirebaseAnalytics (6.1.7): - FirebaseCore (~> 6.5) - FirebaseInstanceID (~> 4.2) - GoogleAppMeasurement (= 6.1.7) - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - GoogleUtilities/MethodSwizzler (~> 6.0) - GoogleUtilities/Network (~> 6.0) - "GoogleUtilities/NSData+zlib (~> 6.0)" - nanopb (= 0.3.9011) - FirebaseCore (6.5.0): - FirebaseCoreDiagnostics (~> 1.0) - FirebaseCoreDiagnosticsInterop (~> 1.0) - GoogleUtilities/Environment (~> 6.4) - GoogleUtilities/Logger (~> 6.4) - FirebaseCoreDiagnostics (1.1.2): - FirebaseCoreDiagnosticsInterop (~> 1.0) - GoogleDataTransportCCTSupport (~> 1.0) - GoogleUtilities/Environment (~> 6.2) - GoogleUtilities/Logger (~> 6.2) - nanopb (~> 0.3.901) - FirebaseCoreDiagnosticsInterop (1.1.0) - FirebaseInstanceID (4.2.8): - FirebaseCore (~> 6.5) - GoogleUtilities/Environment (~> 6.4) - GoogleUtilities/UserDefaults (~> 6.4) - Flutter (1.0.0) - Google-Mobile-Ads-SDK (7.56.0): - GoogleAppMeasurement (~> 6.0) - GoogleAppMeasurement (6.1.7): - GoogleUtilities/AppDelegateSwizzler (~> 6.0) - GoogleUtilities/MethodSwizzler (~> 6.0) - GoogleUtilities/Network (~> 6.0) - "GoogleUtilities/NSData+zlib (~> 6.0)" - nanopb (= 0.3.9011) - GoogleDataTransport (3.2.0) - GoogleDataTransportCCTSupport (1.2.3): - GoogleDataTransport (~> 3.2) - nanopb (~> 0.3.901) - GoogleUtilities/AppDelegateSwizzler (6.4.0): - GoogleUtilities/Environment - GoogleUtilities/Logger - GoogleUtilities/Network - GoogleUtilities/Environment (6.4.0) - GoogleUtilities/Logger (6.4.0): - GoogleUtilities/Environment - GoogleUtilities/MethodSwizzler (6.4.0): - GoogleUtilities/Logger - GoogleUtilities/Network (6.4.0): - GoogleUtilities/Logger - "GoogleUtilities/NSData+zlib" - GoogleUtilities/Reachability - "GoogleUtilities/NSData+zlib (6.4.0)" - GoogleUtilities/Reachability (6.4.0): - GoogleUtilities/Logger - GoogleUtilities/UserDefaults (6.4.0): - GoogleUtilities/Logger - nanopb (0.3.9011): - nanopb/decode (= 0.3.9011) - nanopb/encode (= 0.3.9011) - nanopb/decode (0.3.9011) - nanopb/encode (0.3.9011) DEPENDENCIES: - firebase_admob (from `.symlinks/plugins/firebase_admob/ios`) - firebase_core (from `.symlinks/plugins/firebase_core/ios`) - firebase_core_web (from `.symlinks/plugins/firebase_core_web/ios`) - Flutter (from `Flutter`) SPEC REPOS: trunk: - Firebase - FirebaseAnalytics - FirebaseCore - FirebaseCoreDiagnostics - FirebaseCoreDiagnosticsInterop - FirebaseInstanceID - Google-Mobile-Ads-SDK - GoogleAppMeasurement - GoogleDataTransport - GoogleDataTransportCCTSupport - GoogleUtilities - nanopb EXTERNAL SOURCES: firebase_admob: :path: ".symlinks/plugins/firebase_admob/ios" firebase_core: :path: ".symlinks/plugins/firebase_core/ios" firebase_core_web: :path: ".symlinks/plugins/firebase_core_web/ios" Flutter: :path: Flutter SPEC CHECKSUMS: Firebase: 0219bb4782eb1406f1b9b0628a2e625484ce910d firebase_admob: d8c2bc95b5e0069406280ce6adb816cdee6aa595 firebase_core: 920b9b2a74489a0cf6c5009b744f7f7f5fd84cf6 firebase_core_web: d501d8b946b60c8af265428ce483b0fff5ad52d1 FirebaseAnalytics: f68b9f3f1241385129ae0a83b63627fc420c05e5 FirebaseCore: 632e05cc5e1199d9147122c16d92305eb04c34bd FirebaseCoreDiagnostics: 511f4f3ed7d440bb69127e8b97c2bc8befae639e FirebaseCoreDiagnosticsInterop: e9b1b023157e3a2fc6418b5cb601e79b9af7b3a0 FirebaseInstanceID: ce993a3c3670a8f5d47ce371ac5d143c560608c5 Flutter: 0e3d915762c693b495b44d77113d4970485de6ec Google-Mobile-Ads-SDK: 65e335fadc97c5a91a9d4546214bfd3a2fb11047 GoogleAppMeasurement: db118eb61a97dd8c4f7014e368d3c335cbbcf80a GoogleDataTransport: 8e9b210c97d55fbff306cc5468ff91b9cb32dcf5 GoogleDataTransportCCTSupport: 202d7cdf9c4a7d81a2bb7f7e7e1ba6faa421b1f2 GoogleUtilities: 29bd0d8f850efbd28cff6d99e8b7da1f8d236bcf nanopb: 18003b5e52dab79db540fe93fe9579f399bd1ccd PODFILE CHECKSUM: 083258d7f5e80b42ea9bfee905fe93049bc04c64 COCOAPODS: 1.8.3 Thanks for the help.
Try deleting the podfile. First, go to ios directory cd ios (assuming that your working dir is your project). Remove podfile and podfile.lock using rm podfile and rm podfile.lock They will build again when you flutter run your project.
Azure DevOps Build fails for ASPNETCore 2.1 MVC application
We are using Azure DevOps and we have a build pipeline which is continous integration. When I checkin my code into Azure DevOps branch my Build pipeline kicks on and it works good. Our company is new to .NET Core so as learning process I added ASP.NET Core 2.1 MVC application to my solution. Locally everything is working fine. When I check in my code my Azure DevOps build pipeline kicks off and it fails. Our build pipeline is VS Hosted 2017 agent. I get below errors in Azure DevOps The nuget command failed with exit code(1) and error(Errors in D:\a\1\s\Code\MyProject\MyProject.csproj Package Microsoft.VisualStudio.Web.CodeGeneration.Design 2.1.9 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.VisualStudio.Web.CodeGeneration.Design 2.1.9 supports: - net461 (.NETFramework,Version=v4.6.1) - netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.VisualStudio.Web.CodeGenerators.Mvc 2.1.9 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.VisualStudio.Web.CodeGenerators.Mvc 2.1.9 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Antiforgery 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Antiforgery 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Core 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Core 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Facebook 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Facebook 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.MicrosoftAccount 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.MicrosoftAccount 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.JwtBearer 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.JwtBearer 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Google 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Google 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Cookies 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Cookies 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Localization.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Localization.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.Debug 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.Debug 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.HttpsPolicy 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.HttpsPolicy 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.EventSource 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.EventSource 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNet.WebApi.Client 5.2.4 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNet.WebApi.Client 5.2.4 supports: - net45 (.NETFramework,Version=v4.5) - netstandard2.0 (.NETStandard,Version=v2.0) - portable-net45+netcore45+wp8+wp81+wpa81 (.NETPortable,Version=v0.0,Profile=wp8+netcore45+net45+wp81+wpa81) Package Microsoft.Extensions.Logging 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.FileProviders.Composite 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.FileProviders.Composite 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Options 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Options 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.SpaServices.Extensions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.SpaServices.Extensions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.FileProviders.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.FileProviders.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Server.IISIntegration 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Server.IISIntegration 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Server.Kestrel 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Server.Kestrel 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.OpenIdConnect 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.OpenIdConnect 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Caching.Memory 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Caching.Memory 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Http.Connections.Common 1.0.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Http.Connections.Common 1.0.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Localization 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Localization 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.ObjectPool 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.ObjectPool 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.Ini 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.Ini 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Options.ConfigurationExtensions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Options.ConfigurationExtensions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Diagnostics.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Diagnostics.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.OAuth 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.OAuth 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Razor.Runtime 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Razor.Runtime 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Hosting.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Hosting.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authorization 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authorization 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Owin 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Owin 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Connections.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Connections.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.SpaServices 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.SpaServices 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.JsonPatch 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.JsonPatch 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.KeyPerFile 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.KeyPerFile 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Formatters.Xml 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Formatters.Xml 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Primitives 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Primitives 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Server.Kestrel.Transport.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.Json 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.Json 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Caching.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Caching.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.SignalR.Protocols.Json 1.0.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.SignalR.Protocols.Json 1.0.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Identity.Core 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Identity.Core 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Diagnostics.EntityFrameworkCore 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Hosting.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Hosting.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.ResponseCaching 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.ResponseCaching 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Diagnostics 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Diagnostics 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.WebSockets 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.WebSockets 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.UserSecrets 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.UserSecrets 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.TagHelpers 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.TagHelpers 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Hosting 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Hosting 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.WebEncoders 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.WebEncoders 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.FileSystemGlobbing 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.FileSystemGlobbing 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Hosting 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Hosting 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.WebUtilities 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.WebUtilities 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.CommandLine 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.CommandLine 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Cors 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Cors 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authorization.Policy 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authorization.Policy 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.DependencyInjection.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.DependencyInjection.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Localization 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Localization 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.Console 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.Console 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.Xml 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.Xml 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.Configuration 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.Configuration 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.ApiExplorer 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.ApiExplorer 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Rewrite 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Rewrite 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.ResponseCaching.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.ResponseCaching.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.DataAnnotations 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.DataAnnotations 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Localization 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Localization 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.TraceSource 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.TraceSource 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.ResponseCompression 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.ResponseCompression 2.1.0 supports: - net461 (.NETFramework,Version=v4.6.1) - netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Logging.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Logging.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.Twitter 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.Twitter 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.EnvironmentVariables 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.EnvironmentVariables 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Http.Features 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Http.Features 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Localization.Routing 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Localization.Routing 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Razor 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Razor 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.RazorPages 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.RazorPages 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Identity.Stores 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Identity.Stores 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.ViewFeatures 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.ViewFeatures 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Server.HttpSys 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Server.HttpSys 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.EntityFrameworkCore.SqlServer 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.SqlServer 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Razor.Language 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Razor.Language 2.1.0 supports: - net46 (.NETFramework,Version=v4.6) - netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Formatters.Json 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Formatters.Json 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Authentication.WsFederation 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Authentication.WsFederation 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.FileExtensions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.FileExtensions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Configuration.Binder 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Configuration.Binder 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.MiddlewareAnalysis 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.MiddlewareAnalysis 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Caching.SqlServer 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Caching.SqlServer 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Identity.EntityFrameworkCore 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Identity.EntityFrameworkCore 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.EntityFrameworkCore.InMemory 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.InMemory 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Core 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Core 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Html.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Html.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Http.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Http.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.DataProtection.Extensions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.DataProtection.Extensions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.HostFiltering 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.HostFiltering 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Razor 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Razor 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.NodeServices 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.NodeServices 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.Http 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.Http 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.StaticFiles 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.StaticFiles 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.DataProtection.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.DataProtection.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Identity 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Identity 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Cors 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Cors 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Identity.UI 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Identity.UI 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Session 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Session 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Routing.Abstractions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Routing.Abstractions 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Routing 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Routing 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.EntityFrameworkCore 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Cryptography.Internal 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Cryptography.Internal 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.HttpOverrides 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.HttpOverrides 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.Extensions.FileProviders.Physical 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.Extensions.FileProviders.Physical 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.AspNetCore.Mvc.Razor.Extensions 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.AspNetCore.Mvc.Razor.Extensions 2.1.0 supports: - net46 (.NETFramework,Version=v4.6) - netstandard2.0 (.NETStandard,Version=v2.0) Package Microsoft.EntityFrameworkCore.Relational 2.1.0 is not compatible with netcoreapp2.1 (.NETCoreApp,Version=v2.1). Package Microsoft.EntityFrameworkCore.Relational 2.1.0 supports: netstandard2.0 (.NETStandard,Version=v2.0) One or more packages are incompatible with .NETCoreApp,Version=v2.1.) 1 more errors. Click on expand view in the context menu to view complete logs. SOLUTION This solved my issue. https://zimmergren.net/azure-devops-vsts-package-version-is-not-compatible-with-netcoreapp-supports-netstandard/
Did you try switching to the VS 2019 agents ? Although i dont see any reason why this wouldn't work based on the dependancies installed on the VS2017 agents (1). Microsoft does suggest using the VS2019 agents for DotNet Core development (2). Something else to look into, are there other projects in your solution that are referencing an older version of core which might cause this conflict in versions? 1: https://github.com/Microsoft/azure-pipelines-image-generation/blob/master/images/win/Vs2017-Server2016-Readme.md 2: https://learn.microsoft.com/en-us/azure/devops/pipelines/agents/hosted?view=azure-devops#use-a-microsoft-hosted-agent
Thanks to below link which solved my issue. https://zimmergren.net/azure-devops-vsts-package-version-is-not-compatible-with-netcoreapp-supports-netstandard/ I added new NuGet tool installer task in my Azure DevOps build pipeline. As the link says I used 4.7.1 as Version of NuGet.exe to install. After adding the task build succeeds.
RN Firebase Pod Install modifies Lock Dependency With Quotes "GoogleToolboxForMac/NSData+zlib (~> 2.1)"
When I pod install I am getting one dependency which has quotes around it. I don't want these quotes, and also want to know what they are. The issue is on my team others run this command and do not get the quotes around "GoogleToolboxForMac/NSData+zlib (~> 2.1)" I am leaving this question somewhat open ended so that people can fill in as much information as possible about what in react native firebase versioning and cocoapods in general is causing this behavior. Thanks ahead of time for all of the thoughtful responses. PODS: - Crashlytics (3.9.3): - Fabric (~> 1.7.2) - Fabric (1.7.11) - Firebase/Core (4.8.2): - FirebaseAnalytics (= 4.0.9) - FirebaseCore (= 4.0.14) - Firebase/Messaging (4.8.2): - Firebase/Core - FirebaseMessaging (= 2.0.8) - Firebase/RemoteConfig (4.8.2): - Firebase/Core - FirebaseRemoteConfig (= 2.1.1) - FirebaseABTesting (1.0.0): - FirebaseCore (~> 4.0) - Protobuf (~> 3.1) - FirebaseAnalytics (4.0.9): - FirebaseCore (~> 4.0) - FirebaseInstanceID (~> 2.0) - "GoogleToolboxForMac/NSData+zlib (~> 2.1)" - nanopb (~> 0.3) - FirebaseCore (4.0.14): - "GoogleToolboxForMac/NSData+zlib (~> 2.1)" - FirebaseInstanceID (2.0.8): - FirebaseCore (~> 4.0) - FirebaseMessaging (2.0.8): - FirebaseAnalytics (~> 4.0) - FirebaseCore (~> 4.0) - FirebaseInstanceID (~> 2.0) - GoogleToolboxForMac/Logger (~> 2.1) - Protobuf (~> 3.1) - FirebaseRemoteConfig (2.1.1): - FirebaseABTesting (~> 1.0) - FirebaseAnalytics (~> 4.0) - FirebaseCore (~> 4.0) - FirebaseInstanceID (~> 2.0) - "GoogleToolboxForMac/NSData+zlib (~> 2.1)" - Protobuf (~> 3.1) - GoogleToolboxForMac/Defines (2.1.3) - GoogleToolboxForMac/Logger (2.1.3): - GoogleToolboxForMac/Defines (= 2.1.3) - "GoogleToolboxForMac/NSData+zlib (2.1.3)": - GoogleToolboxForMac/Defines (= 2.1.3) - Heap (5.0.5)
The Podfile.lock file escapes certain characters so that it can be valid YAML. Detailed discussion in this issue.
Most Visualization Tools are Missing from Orange.Canvas (2015/06/15 source)
My orange-canvas is installed on Mint14 under Anaconda python2 environment. Tools appears in "Visualize" section are: Attribute Statistics, Mosaic Display, Sieve Diagram and Venn Diagram. The X-Y Scatter plot module, in particular, is the one I will need. The source is acquired from github, compiled by the instruction: python setup.py build python setup.py install The following error appears multiple times when compiling source: warning: command line option ‘-Wstrict-prototypes’ is valid for C/ObjC but not for C++ [enabled by default] Most files are installed to: /usr/local/conda/lib/python2.7/site-packages/Orange/ Installed Anaconda packages: # packages in environment at /usr/local/conda: # _license 1.1 py27_0 abstract-rendering 0.5.1 np19py27_0 anaconda 2.2.0 np19py27_0 argcomplete 0.8.4 py27_0 astropy 1.0.1 np19py27_0 atom 0.3.9 py27_0 backports.ssl-match-hostname 3.4.0.2 <pip> bcolz 0.8.1 np19py27_0 beautiful-soup 4.3.2 py27_0 beautifulsoup4 4.3.2 <pip> binstar 0.10.1 py27_3 bitarray 0.8.1 py27_0 blaze 0.7.2 np19py27_0 blaze-core 0.7.3 np19py27_0 blz 0.6.2 np19py27_0 bokeh 0.8.1 np19py27_1 boto 2.36.0 py27_0 cairo 1.12.18 1 casuarius 1.1 py27_0 cdecimal 2.3 py27_0 certifi 14.05.14 py27_0 cffi 0.9.2 py27_0 chaco 4.4.1 np19py27_0 clyent 0.3.4 py27_0 colorama 0.3.3 py27_0 conda 3.13.0 py27_0 conda-build 1.10.2 py27_0 conda-env 2.1.4 py27_0 configobj 5.0.6 py27_0 cryptography 0.8 py27_0 curl 7.38.0 0 cx-freeze 4.3.4 <pip> cython 0.22 py27_0 cytoolz 0.7.2 py27_0 datashape 0.4.4 np19py27_1 dateutil 2.1 py27_2 decorator 3.4.0 py27_0 docutils 0.12 py27_0 dynd-python 0.6.5 np19py27_0 enable 4.3.0 np19py27_3 enaml 0.9.8 py27_0 enum34 1.0.4 py27_0 fastcache 1.0.2 py27_0 flask 0.10.1 py27_1 fontconfig 2.11.1 2 freetype 2.5.2 0 funcsigs 0.4 py27_0 future 0.14.3 py27_0 futures 2.2.0 py27_0 genesis-pyapi 1.1.2 <pip> gevent 1.0.1 py27_0 gevent-websocket 0.9.3 py27_0 greenlet 0.4.5 py27_0 grin 1.2.1 py27_1 h5py 2.4.0 np19py27_0 hdf5 1.8.14 0 into 0.2.2 np19py27_0 ipython 3.0.0 py27_0 ipython-notebook 3.0.0 py27_1 ipython-qtconsole 3.0.0 py27_0 itsdangerous 0.24 py27_0 jdcal 1.0 py27_0 jedi 0.8.1 py27_0 jinja2 2.7.3 py27_1 jpeg 8d 0 jsonschema 2.4.0 py27_0 kiwisolver 0.1.3 py27_0 lcms 1.19 0 libdynd 0.6.5 0 libffi 3.0.13 0 libpng 1.5.13 1 libsodium 0.4.5 0 libtiff 4.0.2 1 libxml2 2.9.0 0 libxslt 1.1.28 0 llvm 3.3 0 llvmlite 0.2.2 py27_1 llvmpy 0.12.7 py27_0 lxml 3.4.2 py27_0 markupsafe 0.23 py27_0 matplotlib 1.4.3 np19py27_1 mistune 0.5.1 py27_0 mock 1.0.1 py27_0 mpi4py 1.3 py27_0 mpich2 1.4.1p1 0 multipledispatch 0.4.7 py27_0 networkx 1.9.1 py27_0 nltk 3.0.2 np19py27_0 nose 1.3.4 py27_1 numba 0.17.0 np19py27_0 numexpr 2.3.1 np19py27_0 numpy 1.9.2 py27_0 odo 0.3.1 np19py27_0 openpyxl 1.8.5 py27_0 openssl 1.0.1k 1 orange 2.7.8 <pip> pandas 0.15.2 np19py27_1 patchelf 0.6 0 pathlib 1.0.1 <pip> patsy 0.3.0 np19py27_0 pep8 1.6.2 py27_0 pil 1.1.7 py27_1 pillow 2.7.0 py27_1 pip 7.0.3 py27_0 pixman 0.26.2 0 ply 3.4 py27_0 progressbar 2.3 py27_0 psutil 2.2.1 py27_0 ptyprocess 0.4 py27_0 py 1.4.26 py27_0 py2cairo 1.10.0 py27_2 pyasn1 0.1.7 py27_0 pycosat 0.6.1 py27_0 pycparser 2.10 py27_0 pycrypto 2.6.1 py27_0 pycurl 7.19.5.1 py27_0 pyface 4.4.0 py27_0 pyflakes 0.8.1 py27_0 pygments 2.0.2 py27_0 pylibftdi 0.14.1 py27_0 pymba 0.1 <pip> pymongo 2.8 py27_0 pyopenssl 0.14 py27_0 pyparsing 2.0.3 py27_0 pyqt 4.11.3 py27_0 pyserial 2.7 py27_0 pytables 3.1.1 np19py27_2 pytest 2.6.4 py27_0 python 2.7.10 0 python-dateutil 2.4.1 py27_0 pytz 2015.2 py27_0 pyyaml 3.11 py27_0 pyzmq 14.5.0 py27_0 qt 4.8.6 0 readline 6.2 2 redis 2.6.9 0 redis-py 2.10.3 py27_0 requests 2.7.0 py27_0 rope 0.9.4 py27_1 runipy 0.1.3 py27_0 scikit-image 0.11.2 np19py27_0 scikit-learn 0.15.2 np19py27_0 scipy 0.15.1 np19py27_0 setuptools 17.0 py27_0 singledispatch 3.4.0.3 <pip> sip 4.16.5 py27_0 six 1.9.0 py27_0 slumber 0.7.1 <pip> sockjs-tornado 1.0.1 py27_0 sphinx 1.2.3 py27_0 spyder 2.3.4 py27_1 spyder-app 2.3.4 py27_0 sqlalchemy 0.9.9 py27_0 sqlite 3.8.4.1 1 ssl_match_hostname 3.4.0.2 py27_0 statsmodels 0.6.1 np19py27_0 sympy 0.7.6 py27_0 system 5.8 2 tables 3.1.1 <pip> terminado 0.5 py27_0 theano 0.6.0 np19py27_0 thefuck 1.35 <pip> tk 8.5.18 0 toolz 0.7.1 py27_0 tornado 4.1 py27_0 traits 4.4.0 py27_0 traitsui 4.4.0 py27_0 ujson 1.33 py27_0 unicodecsv 0.9.4 py27_0 util-linux 2.21 0 werkzeug 0.10.1 py27_0 xlrd 0.9.3 py27_0 xlsxwriter 0.6.7 py27_0 xlwt 0.7.5 py27_0 yaml 0.1.4 0 zeromq 4.0.4 0 zlib 1.2.8 0 Am I missing any essential requirements that will prevent these visualize tools package from building?
Install also PyQwt5 and PyQtGraph.