25 lines
931 B
XML
25 lines
931 B
XML
<Project Sdk="Microsoft.NET.Sdk.Web">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>$(DefaultNetCoreTargetFramework)</TargetFrameworks>
|
|
<TypeScriptCompileBlocked>true</TypeScriptCompileBlocked>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<Reference Include="Microsoft.AspNetCore.Mvc" />
|
|
<Reference Include="Microsoft.AspNetCore.Diagnostics" />
|
|
<Reference Include="Microsoft.AspNetCore.Hosting" />
|
|
<Reference Include="Microsoft.AspNetCore.NodeServices" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.IISIntegration" />
|
|
<Reference Include="Microsoft.AspNetCore.Server.Kestrel" />
|
|
<Reference Include="Microsoft.AspNetCore.StaticFiles" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Debug" />
|
|
<Reference Include="Microsoft.Extensions.Logging.Console" />
|
|
</ItemGroup>
|
|
|
|
<Target Name="PrepublishScript" BeforeTargets="PrepareForPublish">
|
|
<Exec Command="npm install" />
|
|
</Target>
|
|
|
|
</Project>
|