-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathFrontend.csproj
More file actions
21 lines (17 loc) · 837 Bytes
/
Frontend.csproj
File metadata and controls
21 lines (17 loc) · 837 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<AssemblyName>CodelyTv.Apps.Backoffice.Frontend</AssemblyName>
<RootNamespace>CodelyTv.Apps.Backoffice.Frontend</RootNamespace>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation"/>
<PackageReference Include="Microsoft.EntityFrameworkCore.SqlServer" />
<PackageReference Include="Microsoft.Extensions.Diagnostics.HealthChecks.EntityFrameworkCore" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\..\src\Backoffice\Backoffice.csproj" />
<ProjectReference Include="..\..\..\src\Mooc\Mooc.csproj" />
<ProjectReference Include="..\..\..\src\Shared\Shared.csproj" />
</ItemGroup>
</Project>