-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnewproject.csproj
32 lines (28 loc) · 1.52 KB
/
newproject.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="iTextSharp.LGPLv2.Core" Version="3.3.3" />
<PackageReference Include="Microsoft.AspNetCore.Authentication" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.Core" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Http.Extensions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="7.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="7.0.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.4">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="7.0.5" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\vendor\choices.js\src\" />
<Folder Include="wwwroot\vendor\choices.js\types\" />
<Folder Include="wwwroot\vendor\swiper\angular\angular\src\" />
<Folder Include="wwwroot\vendor\swiper\angular\esm2015\angular\src\" />
<Folder Include="wwwroot\vendor\swiper\types\modules\" />
</ItemGroup>
</Project>