-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathEmptyTest.csproj
71 lines (65 loc) · 3.69 KB
/
EmptyTest.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="AutoMapper.Extensions.Microsoft.DependencyInjection" Version="11.0.0" />
<PackageReference Include="jQuery" Version="3.6.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="6.0.8" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="6.0.8">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="6.0.6" />
<PackageReference Include="Serilog.AspNetCore" Version="6.0.1" />
<PackageReference Include="Serilog.Enrichers.Environment" Version="2.2.0" />
<PackageReference Include="Serilog.Enrichers.Process" Version="2.0.2" />
<PackageReference Include="Serilog.Enrichers.Thread" Version="3.1.0" />
<PackageReference Include="Serilog.Extensions.Hosting" Version="5.0.1" />
<PackageReference Include="Serilog.Settings.Configuration" Version="3.3.0" />
<PackageReference Include="Serilog.Sinks.Elasticsearch" Version="8.4.1" />
<PackageReference Include="Serilog.Sinks.Seq" Version="5.1.1" />
</ItemGroup>
<ItemGroup>
<Folder Include="wwwroot\usrdata\docs\" />
<Folder Include="wwwroot\usrdata\vids\" />
<Folder Include="wwwroot\usrdata\timgs\" />
</ItemGroup>
<ItemGroup>
<None Include="wwwroot\lib\btstrap\css\bootstrap-grid.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-grid.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-grid.rtl.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-grid.rtl.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-reboot.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-reboot.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-reboot.rtl.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-reboot.rtl.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-utilities.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-utilities.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-utilities.rtl.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap-utilities.rtl.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap.min.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap.rtl.css.map" />
<None Include="wwwroot\lib\btstrap\css\bootstrap.rtl.min.css.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.bundle.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.bundle.js.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.bundle.min.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.bundle.min.js.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.esm.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.esm.js.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.esm.min.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.esm.min.js.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.js.map" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.min.js" />
<None Include="wwwroot\lib\btstrap\js\bootstrap.min.js.map" />
</ItemGroup>
<ItemGroup>
<Content Update="appsettings.json">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>