-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathminimal-api.csproj
42 lines (40 loc) · 1.66 KB
/
minimal-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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net7.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<RootNamespace>minimal_api</RootNamespace>
</PropertyGroup>
<PropertyGroup Condition=" '$(RunConfiguration)' == 'https' " />
<PropertyGroup Condition=" '$(RunConfiguration)' == 'http' " />
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Caching.StackExchangeRedis" Version="8.0.0" />
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="7.0.7" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.5.0" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="7.0.14" />
<PackageReference Include="Microsoft.EntityFrameworkCore.Design" Version="7.0.14">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Npgsql.EntityFrameworkCore.PostgreSQL" Version="7.0.11" />
<PackageReference Include="Faker.Net" Version="2.0.154" />
</ItemGroup>
<ItemGroup>
<None Remove="Services\" />
<None Remove="Interfaces\" />
<None Remove="Models\" />
<None Remove="Endpoints\" />
<None Remove="Data\" />
<None Remove="Migrations\" />
<None Remove="Decorators\" />
</ItemGroup>
<ItemGroup>
<Folder Include="Services\" />
<Folder Include="Interfaces\" />
<Folder Include="Models\" />
<Folder Include="Endpoints\" />
<Folder Include="Data\" />
<Folder Include="Migrations\" />
<Folder Include="Decorators\" />
</ItemGroup>
</Project>