Issues with the version number as 3.1.1

nuspec suggests that this is greater than or equal to
VS code reports error, changing this to 3.1.12 resolves this error?
This commit is contained in:
David Barker
2021-03-04 00:35:20 +08:00
parent 21082165d6
commit 7566643369
2 changed files with 8 additions and 6 deletions
@@ -2,6 +2,8 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netstandard2.1</TargetFrameworks>
<Version>3.1.0</Version>
<FileVersion>3.1.0</FileVersion>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
+6 -6
View File
@@ -15,16 +15,16 @@
<tags>aspnetcore mongo mongodb identity membership</tags>
<dependencies>
<group targetFramework="netstandard2.1">
<dependency id="Microsoft.Extensions.Identity.Core" version="3.1.1" />
<dependency id="Microsoft.Extensions.Identity.Stores" version="3.1.1" />
<dependency id="Microsoft.Extensions.Identity.Core" version="3.1.12" />
<dependency id="Microsoft.Extensions.Identity.Stores" version="3.1.12" />
<dependency id="MongoDB.Driver" version="2.9.3" />
<dependency id="MongoDbGenericRepository" version="1.4.1" />
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="Microsoft.Extensions.Identity.Core" version="3.1.1" />
<dependency id="Microsoft.Extensions.Identity.Stores" version="3.1.1" />
<dependency id="MongoDB.Driver" version="2.9.3" />
<dependency id="MongoDbGenericRepository" version="1.4.3" />
<dependency id="Microsoft.Extensions.Identity.Core" version="3.1.12" />
<dependency id="Microsoft.Extensions.Identity.Stores" version="3.1.12" />
<dependency id="MongoDB.Driver" version="2.*" />
<dependency id="MongoDbGenericRepository" version="1.*" />
</group>
</dependencies>
</metadata>