27 lines
888 B
XML
27 lines
888 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFramework>$(DefaultNetCoreTargetFramework)</TargetFramework>
|
|
<TestDependsOnNode>true</TestDependsOnNode>
|
|
<!-- Depends on npm which is not picked up on helix -->
|
|
<!-- https://github.com/dotnet/aspnetcore/issues/18672 -->
|
|
<BuildHelixPayload>false</BuildHelixPayload>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.SpaServices.Extensions" />
|
|
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
|
<Reference Include="Microsoft.AspNetCore.TestHost" />
|
|
<Reference Include="Microsoft.Extensions.DiagnosticAdapter" />
|
|
<Reference Include="Microsoft.Extensions.Hosting" />
|
|
<Content Include="js\**\*" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<None Update="package.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</None>
|
|
</ItemGroup>
|
|
|
|
</Project>
|