34 lines
No EOL
2.2 KiB
XML
34 lines
No EOL
2.2 KiB
XML
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))\dir.props" />
|
|
<PropertyGroup>
|
|
<Description>Build scripts for dotnet-cli</Description>
|
|
<VersionPrefix>1.0.0</VersionPrefix>
|
|
<TargetFrameworks>netcoreapp1.0</TargetFrameworks>
|
|
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
|
|
<OutputPath>bin\$(Configuration)</OutputPath>
|
|
<PackageTargetFallback>$(PackageTargetFallback);portable-net45+win8+wp8+wpa81</PackageTargetFallback>
|
|
</PropertyGroup>
|
|
|
|
<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>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="NETStandard.Library" Version="1.6.0" />
|
|
<PackageReference Include="Microsoft.NETCore.Runtime.CoreCLR" Version="1.0.4" />
|
|
<PackageReference Include="Microsoft.Build" Version="$(CLI_MSBuild_Version)" />
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.0.1" />
|
|
<PackageReference Include="System.Dynamic.Runtime" Version="4.0.11" />
|
|
<PackageReference Include="System.Reflection.Metadata" Version="1.4.1-beta-24410-02" />
|
|
<PackageReference Include="System.Runtime.Serialization.Primitives" Version="4.1.1" />
|
|
<PackageReference Include="System.Xml.XmlSerializer" Version="4.0.11" />
|
|
<PackageReference Include="WindowsAzure.Storage" Version="7.2.1" />
|
|
<PackageReference Include="NuGet.CommandLine.XPlat" Version="$(CLI_NuGet_Version)" />
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(CLI_MSBuild_Version)" />
|
|
<!-- This dependency was added due to an issue in restore where a lower version of this package coming from nuget.commandline.xplat
|
|
led to an error. This is tracked as NuGet issue : https://github.com/NuGet/Home/issues/4213 -->
|
|
<PackageReference Include="Microsoft.Build.Framework" Version="$(CLI_MSBuild_Version)" />
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="1.0.1-beta-000933" />
|
|
</ItemGroup>
|
|
</Project> |