-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathHackSystem.WebAPI.TaskServer.csproj
More file actions
29 lines (24 loc) · 1.17 KB
/
HackSystem.WebAPI.TaskServer.csproj
File metadata and controls
29 lines (24 loc) · 1.17 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="6.0.0" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HackSystem.WebAPI.TaskServer.Application\HackSystem.WebAPI.TaskServer.Application.csproj" />
<ProjectReference Include="..\HackSystem.WebAPI.TaskServer.Domain\HackSystem.WebAPI.TaskServer.Domain.csproj" />
<ProjectReference Include="..\HackSystem.WebAPI.TaskServer.Infrastructure\HackSystem.WebAPI.TaskServer.Infrastructure.csproj" />
<ProjectReference Include="..\HackSystem.WebAPI.Tasks\HackSystem.WebAPI.Tasks.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Linq" />
<Using Include="Microsoft.Extensions.Configuration" />
<Using Include="Microsoft.Extensions.DependencyInjection" />
<Using Include="Microsoft.Extensions.Logging" />
<Using Include="Microsoft.Extensions.Options" />
</ItemGroup>
</Project>