You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

MVCTemplate.csproj 1.7KB

123456789101112131415161718192021222324252627282930313233343536
  1. <Project Sdk="Microsoft.NET.Sdk.Web">
  2. <PropertyGroup>
  3. <TargetFramework>net5.0</TargetFramework>
  4. <CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
  5. </PropertyGroup>
  6. <ItemGroup>
  7. <PackageReference Include="AutoMapper" Version="11.0.1" />
  8. <PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.3" />
  9. <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="5.0.7" />
  10. <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.6" />
  11. <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.6" />
  12. <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.7" />
  13. <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.7" />
  14. <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.6">
  15. <PrivateAssets>all</PrivateAssets>
  16. <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
  17. </PackageReference>
  18. <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
  19. <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
  20. <PackageReference Include="Quartz" Version="3.4.0" />
  21. <PackageReference Include="Serilog" Version="2.10.0" />
  22. <PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
  23. </ItemGroup>
  24. <ItemGroup>
  25. <ProjectReference Include="..\MVCTemplate.Business\MVCTemplate.Business.csproj" />
  26. <ProjectReference Include="..\MVCTemplate.Data\MVCTemplate.Data.csproj" />
  27. </ItemGroup>
  28. <ItemGroup>
  29. <Folder Include="AppData\Errors\" />
  30. </ItemGroup>
  31. </Project>