aspnetcore/samples/dotnet-watch/LaunchAnyCommand/LaunchAnyCommand.csproj

16 lines
376 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
<Watch Include="say-hello.js" />
</ItemGroup>
<Target Name="RunMyNpmCommand">
<Exec Command="npm run custom" />
</Target>
</Project>