mark-j / dapper-identity

ASP.NET Core Identity with Dapper instead of Entity Framework
https://markjohnson.io/articles/asp-net-core-identity-without-entity-framework/
MIT License
192 stars 56 forks source link

Upgrade to ASP.NET Core 2.1 #2

Open armaandh opened 6 years ago

armaandh commented 6 years ago

Would anyone be able to update the project to the latest asp.net core 2.1?

bafsar commented 6 years ago

Hi, I just upgraded the project to core 2.1 and it's working fine. Probably there is a mistake in the project you have.

This is the code in my WebApp.csproj file now:

<Project Sdk="Microsoft.NET.Sdk.Web">

  <PropertyGroup>
    <TargetFramework>netcoreapp2.1</TargetFramework>
    <UserSecretsId>aspnet-WebApp-E915E545-5E49-4C6B-8C37-5E506C0B4697</UserSecretsId>
  </PropertyGroup>

  <ItemGroup>
    <PackageReference Include="Dapper" Version="1.50.5" />
    <PackageReference Include="Microsoft.AspNetCore.All" Version="2.1.5" />
    <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="2.1.5" PrivateAssets="All" />
  </ItemGroup>

  <ItemGroup>
    <DotNetCliToolReference Include="Microsoft.EntityFrameworkCore.Tools.DotNet" Version="2.0.0" />
    <DotNetCliToolReference Include="Microsoft.Extensions.SecretManager.Tools" Version="2.0.0" />
    <DotNetCliToolReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Tools" Version="2.0.0" />
  </ItemGroup>

</Project>