-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathAPI.csproj
More file actions
34 lines (28 loc) · 1.25 KB
/
API.csproj
File metadata and controls
34 lines (28 loc) · 1.25 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<PropertyGroup>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
<NoWarn>$(NoWarn);1591</NoWarn>
<UserSecretsId>0513764e-2a75-4ffe-8922-1687b853e507</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Microsoft.Identity.Web" />
<PackageReference Include="NSwag.AspNetCore" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Aspire\Aspire.ServiceDefaults\Aspire.ServiceDefaults.csproj" />
<ProjectReference Include="..\Libraries\Matching.Core\Matching.Core.csproj" />
<ProjectReference Include="..\Libraries\EnvironmentSetup\EnvironmentSetup.csproj" />
<ProjectReference Include="..\Libraries\Infrastructure\Infrastructure.csproj" />
</ItemGroup>
<ItemGroup>
<Content Include="static\**\*">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>