-
-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathHackSystem.Web.ProgramSchedule.csproj
More file actions
31 lines (27 loc) · 1.53 KB
/
HackSystem.Web.ProgramSchedule.csproj
File metadata and controls
31 lines (27 loc) · 1.53 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Components" Version="6.0.25" />
<PackageReference Include="Microsoft.AspNetCore.Components.WebAssembly" Version="6.0.7" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.1" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\HackSystem.Intermediary.Abstractions\HackSystem.Intermediary.Abstractions.csproj" />
<ProjectReference Include="..\HackSystem.Web.Application\HackSystem.Web.Application.csproj" />
<ProjectReference Include="..\HackSystem.Web.ProgramSchedule.Abstractions\HackSystem.Web.ProgramSchedule.Abstractions.csproj" />
<ProjectReference Include="..\HackSystem.Web.ProgramSchedule.Infrastructure\HackSystem.Web.ProgramSchedule.Infrastructure.csproj" />
<ProjectReference Include="..\HackSystem.Web.ProgramPlatform\HackSystem.Web.ProgramPlatform.csproj" />
<ProjectReference Include="..\HackSystem.DataTransferObjects\HackSystem.DataTransferObjects.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>