2018-05-22 10:11:50 +02:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk.Web">
|
2018-05-31 19:53:48 +02:00
|
|
|
<PropertyGroup>
|
2019-12-10 00:21:27 +01:00
|
|
|
<TargetFramework>netcoreapp3.1</TargetFramework>
|
2018-05-22 10:11:50 +02:00
|
|
|
<!--<PublishWithAspNetCoreTargetManifest>false</PublishWithAspNetCoreTargetManifest>-->
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<Compile Remove="wwwroot\assets\**" />
|
|
|
|
<Content Remove="wwwroot\assets\**" />
|
|
|
|
<EmbeddedResource Remove="wwwroot\assets\**" />
|
|
|
|
<None Remove="wwwroot\assets\**" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
2020-03-31 01:20:40 +02:00
|
|
|
<Content Include="wwwroot\assets\img\**" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\css\**" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\fonts\**" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\pages\**" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\plugins\**" CopyToOutputDirectory="Always" />
|
|
|
|
<Content Include="wwwroot\assets\js\**" CopyToOutputDirectory="Always" />
|
2019-11-12 00:36:18 +01:00
|
|
|
<None Include="nlog.config" CopyToOutputDirectory="Always" />
|
2018-05-22 10:11:50 +02:00
|
|
|
</ItemGroup>
|
2018-05-31 19:53:48 +02:00
|
|
|
<ItemGroup>
|
2019-12-10 00:21:27 +01:00
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
|
|
|
|
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.2.0" />
|
2018-05-22 10:11:50 +02:00
|
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\Core\Core.csproj" />
|
|
|
|
</ItemGroup>
|
|
|
|
<ProjectExtensions><VisualStudio><UserProperties Properties_4launchSettings_1json__JSONSchema="http://json.schemastore.org/composer" /></VisualStudio></ProjectExtensions>
|
|
|
|
</Project>
|