Update the dotnet-watch samples to 2.0.0

[ci skip]
This commit is contained in:
Nate McMaster 2017-11-13 08:49:25 -08:00
parent 1836201bee
commit 1cc289cf1d
5 changed files with 10 additions and 6 deletions

View File

@ -0,0 +1,2 @@
<!-- Intentionally empty to isolate the samples. -->
<Project />

View File

@ -0,0 +1,2 @@
<!-- Intentionally empty to isolate the samples. -->
<Project />

View File

@ -4,7 +4,7 @@
</PropertyGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
<Watch Include="say-hello.js" />
</ItemGroup>

View File

@ -10,8 +10,8 @@
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore" Version="1.1.1" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
<PackageReference Include="Microsoft.AspNetCore" Version="2.0.0" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
</ItemGroup>
</Project>

View File

@ -1,10 +1,11 @@
<Project>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp2.0</TargetFramework>
<EnableDefaultItems>false</EnableDefaultItems>
</PropertyGroup>
<ItemGroup>
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="1.0.0" />
<DotNetCliToolReference Include="Microsoft.DotNet.Watcher.Tools" Version="2.0.0" />
<ProjectReference Include="Web\Web.csproj" />
<ProjectReference Include="Test\Test.csproj" />
@ -15,5 +16,4 @@
<Exec Command="dotnet run" WorkingDirectory="Web/" />
</Target>
<Import Project="$(MSBuildToolsPath)\Microsoft.Common.targets"/>
</Project>