| 123456789101112131415161718192021222324252627282930313233343536 |
- <Project Sdk="Microsoft.NET.Sdk.Web">
-
- <PropertyGroup>
- <TargetFramework>net5.0</TargetFramework>
- <CopyRefAssembliesToPublishDirectory>false</CopyRefAssembliesToPublishDirectory>
- </PropertyGroup>
-
- <ItemGroup>
- <PackageReference Include="AutoMapper" Version="11.0.1" />
- <PackageReference Include="Microsoft.AspNet.Identity.Core" Version="2.2.3" />
- <PackageReference Include="Microsoft.AspNetCore.Authentication.Google" Version="5.0.7" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.UI" Version="5.0.6" />
- <PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="5.0.6" />
- <PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="5.0.7" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="5.0.7" />
- <PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="5.0.6">
- <PrivateAssets>all</PrivateAssets>
- <IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
- </PackageReference>
- <PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="5.0.2" />
- <PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
- <PackageReference Include="Quartz" Version="3.4.0" />
- <PackageReference Include="Serilog" Version="2.10.0" />
- <PackageReference Include="Serilog.AspNetCore" Version="4.1.0" />
- </ItemGroup>
-
- <ItemGroup>
- <ProjectReference Include="..\MVCTemplate.Business\MVCTemplate.Business.csproj" />
- <ProjectReference Include="..\MVCTemplate.Data\MVCTemplate.Data.csproj" />
- </ItemGroup>
-
- <ItemGroup>
- <Folder Include="AppData\Errors\" />
- </ItemGroup>
-
- </Project>
|