2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2017-01-10 16:43:14 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
|
|
|
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<VersionPrefix>1.0.0-rc</VersionPrefix>
|
|
|
|
|
<TargetFramework>netcoreapp1.0</TargetFramework>
|
|
|
|
|
<AssemblyName>dotnet-dependency-tool-invoker</AssemblyName>
|
|
|
|
|
<OutputType>Exe</OutputType>
|
|
|
|
|
<PackageTargetFallback Condition=" '$(TargetFramework)' == 'netcoreapp1.0' ">$(PackageTargetFallback);portable-net45+win8;dnxcore50</PackageTargetFallback>
|
2017-02-19 06:03:36 +00:00
|
|
|
|
<VersionSuffix></VersionSuffix>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-12-09 08:30:02 +00:00
|
|
|
|
<PropertyGroup>
|
2017-01-12 21:14:57 +00:00
|
|
|
|
<SdkNugetVersion Condition=" '$(SdkNugetVersion)' == ''">$(CliVersionPrefix)-*</SdkNugetVersion>
|
2016-12-09 08:30:02 +00:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<ItemGroup>
|
2016-12-16 18:23:26 +00:00
|
|
|
|
<Compile Include="..\..\..\src\dotnet\CommandLine\*.cs;..\..\..\src\dotnet\CommonLocalizableStrings.cs;" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-01-06 03:44:52 +00:00
|
|
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
|
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
|
|
|
</BuiltProjectOutputGroupOutput>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-03-03 03:52:26 +00:00
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="1.0.4" />
|
|
|
|
|
<PackageReference Include="NuGet.Frameworks" Version="$(CLI_NuGet_Version)" />
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils" Version="$(SdkNugetVersion)" />
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|