2017-01-07 00:28:04 +00:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2016-10-14 01:09:30 +00:00
|
|
|
<PropertyGroup>
|
|
|
|
<Description>Build scripts for dotnet-cli</Description>
|
|
|
|
<VersionPrefix>1.0.0</VersionPrefix>
|
2017-03-20 19:41:47 +00:00
|
|
|
<TargetFramework>$(CliTargetFramework)</TargetFramework>
|
2016-10-14 01:09:30 +00:00
|
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
2016-10-17 23:50:22 +00:00
|
|
|
<OutputPath>bin\$(Configuration)</OutputPath>
|
2017-06-14 07:27:26 +00:00
|
|
|
<AssetTargetFallback>$(AssetTargetFallback);portable-net45+win8+wp8+wpa81</AssetTargetFallback>
|
2016-10-14 01:09:30 +00:00
|
|
|
</PropertyGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
2016-12-29 23:59:49 +00:00
|
|
|
<ItemGroup>
|
|
|
|
<ProjectReference Include="..\shared-build-targets-utils\shared-build-targets-utils.csproj" />
|
|
|
|
<ProjectReference Include="..\Microsoft.DotNet.Cli.Build.Framework\Microsoft.DotNet.Cli.Build.Framework.csproj" />
|
|
|
|
</ItemGroup>
|
2017-03-03 04:38:56 +00:00
|
|
|
|
2016-10-14 01:09:30 +00:00
|
|
|
<ItemGroup>
|
2017-03-03 03:50:19 +00:00
|
|
|
<PackageReference Include="Microsoft.Build" Version="$(CLI_MSBuild_Version)" />
|
2017-10-17 17:43:50 +00:00
|
|
|
<PackageReference Include="System.Reflection.Metadata" Version="1.4.1" />
|
2017-03-03 03:50:19 +00:00
|
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.1.1" />
|
|
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.0.11" />
|
2017-10-17 15:27:37 +00:00
|
|
|
<PackageReference Include="NuGet.Protocol" Version="$(CLI_NuGet_Version)" />
|
2017-03-03 03:50:19 +00:00
|
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(CLI_MSBuild_Version)" />
|
2017-08-25 21:19:43 +00:00
|
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.0.0" />
|
2017-10-17 17:47:27 +00:00
|
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="$(VersionToolsVersion)" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
2017-03-03 17:37:25 +00:00
|
|
|
</ItemGroup>
|
2017-03-22 00:34:32 +00:00
|
|
|
</Project>
|