-
Notifications
You must be signed in to change notification settings - Fork 0
/
APBD-CAMPAIGN.csproj
33 lines (28 loc) · 1.51 KB
/
APBD-CAMPAIGN.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<RootNamespace>APBD_CAMPAIGN</RootNamespace>
<UserSecretsId>c273d1a0-2291-4e3c-bd63-83f186b08f69</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<Compile Remove="APBD-CAMPAIGN-TESTS\**" />
<Content Remove="APBD-CAMPAIGN-TESTS\**" />
<EmbeddedResource Remove="APBD-CAMPAIGN-TESTS\**" />
<None Remove="APBD-CAMPAIGN-TESTS\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="3.1.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore" Version="3.1.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="3.1.4" />
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" Version="3.1.5" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="3.1.5">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.3" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Swashbuckle.AspNetCore.Swagger" Version="5.4.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="5.4.1" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="5.4.1" />
</ItemGroup>
</Project>