8b7d1c6e2a
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).
19 lines
799 B
XML
19 lines
799 B
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
<PropertyGroup>
|
|
<Description>Updates the repos dependencies</Description>
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="$(CLI_SharedFrameworkVersion)" />
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="$(VersionToolsVersion)" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|