2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-04-26 14:57:46 -07:00
|
|
|
|
|
|
|
|
|
<!-- This test asset needs to import the general dir.props in order to get the SdkNugetVersion property.
|
|
|
|
|
This is why it also needs to explicitly set DisableImplicitFrameworkReferences to false. -->
|
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
2017-01-10 10:43:14 -06:00
|
|
|
|
|
2016-11-15 12:12:28 -10:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
2017-04-25 11:20:37 -07:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
<OutputType>Exe</OutputType>
|
2017-02-18 22:03:36 -08:00
|
|
|
|
<VersionSuffix></VersionSuffix>
|
2017-04-26 14:57:46 -07:00
|
|
|
|
<DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-12-09 00:30:02 -08:00
|
|
|
|
<PropertyGroup>
|
2017-01-12 13:14:57 -08:00
|
|
|
|
<SdkNugetVersion Condition=" '$(SdkNugetVersion)' == ''">$(CliVersionPrefix)-*</SdkNugetVersion>
|
2016-12-09 00:30:02 -08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-11-15 12:12:28 -10:00
|
|
|
|
<ItemGroup>
|
2017-03-02 19:52:26 -08:00
|
|
|
|
<PackageReference Include="NuGet.Frameworks" Version="$(CLI_NuGet_Version)" />
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="$(SdkNugetVersion)" />
|
2017-05-09 16:09:38 -07:00
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.CommandLine" Version="$(CliCommandLineParserVersion)" />
|
2017-03-09 21:17:10 -08:00
|
|
|
|
<PackageReference Include="System.Linq" Version="4.3.0" />
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
</Project>
|