-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRandomAPIApp.csproj
More file actions
81 lines (75 loc) · 3.43 KB
/
RandomAPIApp.csproj
File metadata and controls
81 lines (75 loc) · 3.43 KB
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
72
73
74
75
76
77
78
79
80
81
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>55873aaa-1fe4-44be-9d80-101348a5fdb6</UserSecretsId>
<DockerDefaultTargetOS>Windows</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<Compile Remove="my-app\**" />
<Compile Remove="RandomAPIApp.AppHost\**" />
<Compile Remove="RandomAPIApp.ServiceDefaults\**" />
<Compile Remove="RandomAPIApp.一袋米要扛二楼\**" />
<Compile Remove="RandomAPIApp.一袋米要扛几楼\**" />
<Compile Remove="RandomAPIApp.神罗天征\**" />
<Compile Remove="ui-app\**" />
<Content Remove="my-app\**" />
<Content Remove="RandomAPIApp.AppHost\**" />
<Content Remove="RandomAPIApp.ServiceDefaults\**" />
<Content Remove="RandomAPIApp.一袋米要扛二楼\**" />
<Content Remove="RandomAPIApp.一袋米要扛几楼\**" />
<Content Remove="RandomAPIApp.神罗天征\**" />
<Content Remove="ui-app\**" />
<EmbeddedResource Remove="my-app\**" />
<EmbeddedResource Remove="RandomAPIApp.AppHost\**" />
<EmbeddedResource Remove="RandomAPIApp.ServiceDefaults\**" />
<EmbeddedResource Remove="RandomAPIApp.一袋米要扛二楼\**" />
<EmbeddedResource Remove="RandomAPIApp.一袋米要扛几楼\**" />
<EmbeddedResource Remove="RandomAPIApp.神罗天征\**" />
<EmbeddedResource Remove="ui-app\**" />
<None Remove="my-app\**" />
<None Remove="RandomAPIApp.AppHost\**" />
<None Remove="RandomAPIApp.ServiceDefaults\**" />
<None Remove="RandomAPIApp.一袋米要扛二楼\**" />
<None Remove="RandomAPIApp.一袋米要扛几楼\**" />
<None Remove="RandomAPIApp.神罗天征\**" />
<None Remove="ui-app\**" />
</ItemGroup>
<ItemGroup>
<None Remove=".gitignore" />
<None Remove="LICENSE" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.15" />
<PackageReference Include="Microsoft.AspNetCore.JsonPatch" Version="8.0.22" />
<PackageReference Include="Microsoft.AspNetCore.OData" Version="8.0.12" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="8.0.15" />
<PackageReference Include="Microsoft.IdentityModel.JsonWebTokens" Version="7.7.1" />
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.17.0" />
<PackageReference Include="OneOf" Version="3.0.271" />
<PackageReference Include="Stanford.NLP.CoreNLP" Version="4.5.0" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="8.1.4" />
</ItemGroup>
<ItemGroup>
<None Update="defs.sutime.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="english-left3words-distsim.tagger">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="english.all.3class.distsim.crf.ser.gz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
<None Update="english.holidays.sutime.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="english.sutime.txt">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="englishPCFG.ser.gz">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>