39 lines
1.5 KiB
XML
39 lines
1.5 KiB
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<AspNetCoreHostingModel>InProcess</AspNetCoreHostingModel>
|
|
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Content Remove="compilerconfig.json" />
|
|
<Content Remove="bundleconfig.json" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Include="compilerconfig.json" CopyToOutputDirectory="Always" />
|
|
<None Include="bundleconfig.json" CopyToOutputDirectory="Always" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="BuildBundlerMinifier" Version="2.8.391" />
|
|
<PackageReference Include="Markdig" Version="0.15.7" />
|
|
<PackageReference Include="Schema.NET" Version="11.0.1" />
|
|
<PackageReference Include="UriBuilder.Fluent" Version="1.5.2" />
|
|
<PackageReference Include="WebMarkupMin.AspNetCore6" Version="2.11.0" />
|
|
<PackageReference Include="YamlDotNet" Version="5.3.0" />
|
|
<PackageReference Include="HardHat" Version="2.1.1" />
|
|
<PackageReference Include="Microsoft.SyndicationFeed.ReaderWriter" Version="1.0.2" />
|
|
<PackageReference Include="WebEssentials.AspNetCore.OutputCaching" Version="1.0.16" />
|
|
<PackageReference Include="Microsoft.AspNetCore.Mvc.Razor.RuntimeCompilation" Version="6.0.1" Condition="'$(Configuration)' == 'Debug'" />
|
|
</ItemGroup>
|
|
|
|
|
|
<ItemGroup>
|
|
<Content Include="Posts\*.md" CopyToOutputDirectory="Always" />
|
|
<Watch Include="Posts\*.md" />
|
|
</ItemGroup>
|
|
</Project>
|