2020-05-11 15:34:47 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Razor">
|
|
|
|
|
|
2020-03-22 14:18:34 +01:00
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2020-05-11 15:34:47 +02:00
|
|
|
<AddRazorSupportForMvc>true</AddRazorSupportForMvc>
|
2020-03-22 14:18:34 +01:00
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2020-03-22 14:29:12 +01:00
|
|
|
<ItemGroup>
|
2020-05-11 15:34:47 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Hosting" Version="2.2.7" />
|
2020-04-08 13:07:15 +02:00
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.NewtonsoftJson" Version="3.1.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.3" />
|
|
|
|
|
<PackageReference Include="Microsoft.AspNetCore.SpaServices" Version="3.1.3" />
|
2020-03-22 14:29:12 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-05-11 15:34:47 +02:00
|
|
|
<!--<ItemGroup>
|
|
|
|
|
<FrameworkReference Include="Microsoft.AspNetCore.App" />
|
|
|
|
|
</ItemGroup>-->
|
|
|
|
|
|
2020-03-22 14:29:12 +01:00
|
|
|
<ItemGroup>
|
2020-03-24 23:09:29 +01:00
|
|
|
<ProjectReference Include="..\zero.Core\zero.Core.csproj" />
|
2020-03-22 14:29:12 +01:00
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-05-13 16:27:20 +02:00
|
|
|
<ItemGroup>
|
|
|
|
|
<Folder Include="Settings\" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
2020-05-11 15:34:47 +02:00
|
|
|
</Project>
|