Target update-dependencies to netstandard2.0
Previously, this was 1.0 app. Since stage0 no longer contains a 1.0.X shared framework, it would not run. Move to 2.0.0 (instead of 1.1.X since the 1.1.X shared framework will stop being in stage0 soon as well).
This commit is contained in:
parent
960b3808ee
commit
8b7d1c6e2a
1 changed files with 2 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
<PropertyGroup>
|
||||
<Description>Updates the repos dependencies</Description>
|
||||
<OutputType>Exe</OutputType>
|
||||
<TargetFramework>netcoreapp1.0</TargetFramework>
|
||||
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
@ -12,7 +12,7 @@
|
|||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.0" />
|
||||
<PackageReference Include="Microsoft.NETCore.App" Version="$(CLI_SharedFrameworkVersion)" />
|
||||
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="$(VersionToolsVersion)" />
|
||||
</ItemGroup>
|
||||
|
||||
|
|
Loading…
Reference in a new issue