1e20550f5d
- Take the latest VersionTools, so we can take advantage of new features. - Update what files need to be updated - DependencyVersions.props. - Clean up the powershell script.
19 lines
771 B
XML
19 lines
771 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>netcoreapp1.0</TargetFramework>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\..\src\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.0" />
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="1.0.27-prerelease-01308-02" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|