-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMyAPI.csproj
More file actions
32 lines (26 loc) · 1.01 KB
/
Copy pathMyAPI.csproj
File metadata and controls
32 lines (26 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>190e5757-3847-4285-9a42-873751c0498a</UserSecretsId>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" Version="10.0.5" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerGen" Version="10.1.7" />
<PackageReference Include="Swashbuckle.AspNetCore.SwaggerUI" Version="10.1.7" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Domain\**\*.cs" />
<Compile Remove="DAL\**\*.cs" />
<Compile Remove="BLL\**\*.cs" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="Domain\Domain.csproj" />
<ProjectReference Include="DAL\DAL.csproj" />
<ProjectReference Include="BLL\BLL.csproj" />
</ItemGroup>
<ItemGroup>
<Folder Include="Middlewares\" />
</ItemGroup>
</Project>