35 lines
924 B
XML
35 lines
924 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>netcoreapp2.1</TargetFramework>
|
|
<PreserveCompilationContext>true</PreserveCompilationContext>
|
|
<AssemblyName>HardHat.Example</AssemblyName>
|
|
<OutputType>Exe</OutputType>
|
|
<PackageId>HardHat.Example</PackageId>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="wwwroot\**\*">
|
|
<CopyToPublishDirectory>PreserveNewest</CopyToPublishDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\HardHat\HardHat.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.AspNetCore.App" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
|
<Exec Command="bower install" />
|
|
<Exec Command="dotnet bundle" />
|
|
</Target>
|
|
|
|
<ItemGroup>
|
|
<DotNetCliToolReference Include="BundlerMinifier.Core" Version="2.2.301" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|