2016-11-15 22:12:28 +00:00
|
|
|
|
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
|
|
|
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" />
|
2016-12-02 17:34:03 +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>
|
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Compile Include="**\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
|
|
|
<Compile Include="..\..\..\src\dotnet\CommandLine\*.cs" Exclude="bin\**;obj\**;**\*.xproj;packages\**" />
|
|
|
|
|
<EmbeddedResource Include="**\*.resx" />
|
|
|
|
|
<EmbeddedResource Include="compiler\resources\**\*" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<Content Include="$(OutputPath)\$(AssemblyName).runtimeconfig.json">
|
|
|
|
|
<Pack>true</Pack>
|
|
|
|
|
<PackagePath>lib\$(TargetFramework)</PackagePath>
|
|
|
|
|
</Content>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Microsoft.NET.Sdk">
|
2016-12-02 17:34:03 +00:00
|
|
|
|
<Version>$(CLI_NETSDK_Version)</Version>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<PrivateAssets>All</PrivateAssets>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.NETCore.App">
|
|
|
|
|
<Version>1.0.1</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="NuGet.Frameworks">
|
2016-11-23 17:01:32 +00:00
|
|
|
|
<Version>4.0.0-rc-2048</Version>
|
2016-11-15 22:12:28 +00:00
|
|
|
|
</PackageReference>
|
|
|
|
|
<PackageReference Include="Microsoft.DotNet.Cli.Utils">
|
|
|
|
|
<Version>1.0.0-preview4-*</Version>
|
|
|
|
|
</PackageReference>
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
|
|
|
|
|
<DefineConstants>$(DefineConstants);RELEASE</DefineConstants>
|
|
|
|
|
</PropertyGroup>
|
2016-12-02 17:34:03 +00:00
|
|
|
|
|
2016-11-15 22:12:28 +00:00
|
|
|
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
|
|
|
|
</Project>
|