-
-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conflict with Microsoft.AspNetCore.All 2.1.2 #1
Comments
@laoshancun Can your povide your .csproj ? <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Description>Identity sample MVC application on ASP.NET Core</Description>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UserSecretsId>Aguacongas.Identity.Redis.Sample</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" />
<PackageReference Include="Aguacongas.Identity.Redis" Version="1.1.0" />
</ItemGroup>
</Project> |
Maybe you need to specify the version number of <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<MvcRazorCompileOnPublish>true</MvcRazorCompileOnPublish>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.4.1" />
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.1.1" />
<PackageReference Include="Pomelo.EntityFrameworkCore.MySql" Version="2.1.1" />
<PackageReference Include="protobuf-net" Version="2.3.17" />
<PackageReference Include="Aguacongas.Identity.Redis" Version="1.1.0" />
</ItemGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.1.0-preview1-final" />
</ItemGroup>
</Project> |
This comment has been minimized.
This comment has been minimized.
I'm not able to reproduce, even by specifying a version for <Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Description>Identity sample MVC application on ASP.NET Core</Description>
<TargetFramework>netcoreapp2.1</TargetFramework>
<UserSecretsId>Aguacongas.Identity.Redis.Sample</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.2" />
<PackageReference Include="Microsoft.AspNetCore.DataProtection.Redis" Version="0.4.1" />
<PackageReference Include="Aguacongas.Identity.Redis" Version="1.1.0" />
</ItemGroup>
</Project> So, I closed it. |
you should use |
Ok, I got it. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Aguacongas.Identity.Redis
requireStackExchange.Redis >= 1.2.6
, andStackExchange.Redis.StrongName (1.2.4)
is required byMicrosoft.AspNetCore.All
.this could cause an error.
The text was updated successfully, but these errors were encountered: