2016-12-20 13:29:45 -08:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-11-15 12:12:28 -10: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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-12-09 00:30:02 -08:00
|
|
|
|
<PropertyGroup>
|
2017-01-09 13:59:03 -08:00
|
|
|
|
<SdkNugetVersion Condition=" '$(SdkNugetVersion)' == ''">1.0.0-rc3-*</SdkNugetVersion>
|
2016-12-09 00:30:02 -08:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
2016-11-15 12:12:28 -10:00
|
|
|
|
<ItemGroup>
|
2016-12-16 10:23:26 -08:00
|
|
|
|
<Compile Include="..\..\..\src\dotnet\CommandLine\*.cs;..\..\..\src\dotnet\CommonLocalizableStrings.cs;" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
2017-01-05 19:44:52 -08:00
|
|
|
|
<BuiltProjectOutputGroupOutput Include="$(ProjectRuntimeConfigFilePath)">
|
|
|
|
|
<FinalOutputPath>$(ProjectRuntimeConfigFilePath)</FinalOutputPath>
|
|
|
|
|
</BuiltProjectOutputGroupOutput>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
2017-01-04 18:17:25 -06:00
|
|
|
|
<Version>1.0.3</Version>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NuGet.Frameworks">
|
2017-01-17 11:08:17 -08:00
|
|
|
|
<Version>4.0.0-rc3-2215</Version>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils">
|
2016-12-09 00:30:02 -08:00
|
|
|
|
<Version>$(SdkNugetVersion)</Version>
|
2016-11-15 12:12:28 -10:00
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
</Project>
|