blob: 488c2a452bd0d638c3efde5b905314bc162109fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Microsoft.AspNetCore.Razor.Design" Version="2.1.2" PrivateAssets="All" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Classes\Classes.csproj" />
<ProjectReference Include="..\Aggregator\Parser\Parser.csproj" />
<ProjectReference Include="..\Database\Database.csproj" />
</ItemGroup>
</Project>
|