blob: b350c64e90581a978a9b57b3ddcf779e65ac9dcb (
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
26
27
28
|
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp2.2</TargetFramework>
<StartupObject>DSACore.Program</StartupObject>
</PropertyGroup>
<ItemGroup>
<Compile Remove="wwwroot\**" />
<Content Remove="wwwroot\**" />
<EmbeddedResource Remove="wwwroot\**" />
<None Remove="wwwroot\**" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.App" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\dsa\DSALib\DSALib.csproj" />
<ProjectReference Include="..\dsa\FireBase\FireBase.csproj" />
</ItemGroup>
<ItemGroup>
<Compile Remove="Controllers\ValuesController.cs" />
</ItemGroup>
</Project>
|