-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlapora-ktm-api.csproj
50 lines (47 loc) · 2.18 KB
/
lapora-ktm-api.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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>lapora_ktm_api</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.19" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.18" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.20">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Tools" Version="7.0.20">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.AspNetCore.Identity" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="7.0.20" />
<PackageReference Include="System.Security.Claims" Version="4.3.0" />
<PackageReference Include="Microsoft.AspNetCore.Authentication.JwtBearer" Version="7.0.20" />
</ItemGroup>
<ItemGroup>
<None Remove="Config\" />
<None Remove="Entities\" />
<None Remove="Services\" />
<None Remove="Services\AuthService\" />
<None Remove="Dtos\" />
<None Remove="Dtos\Response\" />
<None Remove="Migrations\" />
<None Remove="Services\ReportService\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Config\" />
<Folder Include="Entities\" />
<Folder Include="Services\" />
<Folder Include="Services\AuthService\" />
<Folder Include="Dtos\" />
<Folder Include="Dtos\Response\" />
<Folder Include="Migrations\" />
<Folder Include="Services\ReportService\" />
</ItemGroup>
</Project>