blob: 3d928e1f24f703183c9124e9bab0ecc850d33185 (
plain)
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
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.1</TargetFramework>
<StartupObject>DSACore.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Folder Include="wwwroot\" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\DSALib\DSALib.csproj" />
<ProjectReference Include="..\FireBase\FireBase.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Controllers\ValuesController.cs" />
</ItemGroup>
</Project>
|