-
Notifications
You must be signed in to change notification settings - Fork 123
Expand file tree
/
Copy pathAPIJSON.NET.csproj
More file actions
29 lines (22 loc) · 993 Bytes
/
APIJSON.NET.csproj
File metadata and controls
29 lines (22 loc) · 993 Bytes
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<UserSecretsId>7f2f6cea-01ae-4b0d-bee0-e48b642e22fe</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
</PropertyGroup>
<ItemGroup>
<Compile Remove="Controllers\JsonController - 副本.cs" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Serilog.AspNetCore" Version="8.0.1" />
<PackageReference Include="Serilog.Sinks.Async" Version="1.5.0" />
<PackageReference Include="Volo.Abp.AspNetCore.Serilog" Version="8.0.2" />
<PackageReference Include="Volo.Abp.Autofac" Version="8.0.2" />
<PackageReference Include="Volo.Abp.AspNetCore.Mvc" Version="8.0.2" />
<PackageReference Include="Volo.Abp.Swashbuckle" Version="8.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="8.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\APIJSON.Data\APIJSON.Data.csproj" />
</ItemGroup>
</Project>