2016-12-20 21:29:45 +00:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-12-02 04:10:42 +00:00
|
|
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
2016-12-07 21:49:15 +00:00
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<PropertyGroup>
|
2017-01-09 21:59:03 +00:00
|
|
|
|
<VersionPrefix>$(CliVersionPrefix)</VersionPrefix>
|
2017-01-26 03:19:44 +00:00
|
|
|
|
<TargetFramework>netcoreapp2.0</TargetFramework>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<WarningsAsErrors>true</WarningsAsErrors>
|
|
|
|
|
<AssemblyOriginatorKeyFile>../../tools/Key.snk</AssemblyOriginatorKeyFile>
|
|
|
|
|
<SignAssembly>true</SignAssembly>
|
|
|
|
|
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
|
|
|
|
|
</PropertyGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ItemGroup>
|
|
|
|
|
<EmbeddedResource Include="sdkdefaults.json" />
|
2017-01-12 19:36:55 +00:00
|
|
|
|
<Content Include="dotnet-supported-package-versions.csv">
|
|
|
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
|
|
|
</Content>
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</ItemGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ItemGroup>
|
2016-12-07 21:49:15 +00:00
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Sln.Internal\Microsoft.DotNet.Cli.Sln.Internal.csproj" />
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Utils\Microsoft.DotNet.Cli.Utils.csproj" />
|
|
|
|
|
</ItemGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
|
2016-10-29 08:04:20 +00:00
|
|
|
|
<ItemGroup>
|
2017-01-05 22:56:11 +00:00
|
|
|
|
<PackageReference Include="Microsoft.Build" Version="$(CLI_MSBuild_Version)" />
|
2017-03-09 22:35:08 +00:00
|
|
|
|
<PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="$(CLI_Roslyn_Version)" />
|
2016-10-29 08:04:20 +00:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|