Seenginx/Seenginx/Seenginx.csproj

34 lines
1017 B
XML
Raw Permalink Normal View History

2020-04-12 01:37:24 +02:00
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
</PropertyGroup>
2020-04-12 20:01:46 +02:00
<ItemGroup>
2020-04-13 00:21:36 +02:00
<Content Remove="compilerconfig.json" />
<Content Remove="Settings\settings.json" />
2020-04-13 00:21:36 +02:00
</ItemGroup>
<ItemGroup>
2020-04-12 20:01:46 +02:00
<Folder Include="wwwroot\images\" />
2020-07-01 19:36:22 +02:00
<Folder Include="wwwroot\templates\systemd\" />
2020-04-12 20:01:46 +02:00
</ItemGroup>
2020-04-13 00:21:36 +02:00
<ItemGroup>
<None Include="compilerconfig.json" />
<None Include="Settings\settings.json" />
2020-04-13 00:21:36 +02:00
</ItemGroup>
<ItemGroup>
2020-07-27 21:31:23 +02:00
<PackageReference Include="Blazored.Modal" Version="5.0.2" />
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="3.1.6" />
2020-07-01 19:36:22 +02:00
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.1.3" />
2020-04-19 03:04:46 +02:00
<PackageReference Include="Mono.Posix.NETStandard" Version="1.0.0" />
2020-04-13 00:21:36 +02:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Seenginx.Models\Seenginx.Models.csproj" />
</ItemGroup>
2020-04-12 01:37:24 +02:00
</Project>