-
Notifications
You must be signed in to change notification settings - Fork 0
/
WebEOC.csproj
37 lines (33 loc) · 1.54 KB
/
WebEOC.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
33
34
35
36
37
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.7" />
<PackageReference Include="microsoft.EntityFrameworkCore.SqlServer" Version="6.0.7" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.7">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="6.0.7" />
<PackageReference Include="MySql.Data.EntityFrameworkCore" Version="8.0.22" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Data\" />
<Folder Include="Models\" />
<Folder Include="wwwroot\css\" />
<Folder Include="wwwroot\images\" />
<Folder Include="wwwroot\js\" />
<Folder Include="wwwroot\lib\bootstrap\" />
<Folder Include="wwwroot\lib\bootstrap\dist\css\" />
<Folder Include="wwwroot\lib\bootstrap\dist\js\" />
<Folder Include="wwwroot\lib\jquery-validation-unobtrusive\" />
<Folder Include="wwwroot\lib\jquery-validation\" />
<Folder Include="wwwroot\lib\jquery-validation\dist\" />
<Folder Include="wwwroot\lib\jquery\" />
<Folder Include="wwwroot\lib\jquery\dist\" />
</ItemGroup>
</Project>