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>
|
2018-07-11 18:46:24 +00:00
|
|
|
<PackageReference Include="Microsoft.NETCore.App" Version="2.1.0-preview2-26406-04 " />
|
|
|
|
<PackageReference Include="Microsoft.Build" Version="15.7.177" />
|
|
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.7.177" />
|
2017-03-03 03:50:19 +00:00
|
|
|
<PackageReference Include="Microsoft.CSharp" Version="4.0.1" />
|
|
|
|
<PackageReference Include="System.Dynamic.Runtime" Version="4.0.11" />
|
2017-12-12 00:54:35 +00:00
|
|
|
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
|
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" />
|
2018-07-11 18:46:24 +00:00
|
|
|
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" />
|
2017-08-25 21:19:43 +00:00
|
|
|
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.0.0" />
|
2017-12-12 00:54:35 +00:00
|
|
|
|
2017-03-03 17:37:25 +00:00
|
|
|
<PackageReference Include="Microsoft.DotNet.VersionTools" Version="$(VersionToolsVersion)" />
|
2017-11-09 03:42:41 +00:00
|
|
|
<PackageReference Include="Microsoft.DotNet.Build.Tasks.Feed" Version="$(BuildTasksFeedToolVersion)" />
|
2017-09-29 00:49:58 +00:00
|
|
|
<PackageReference Include="Microsoft.Extensions.DependencyModel" Version="2.0.0" />
|
2018-07-11 18:46:24 +00:00
|
|
|
</ItemGroup>
|
2017-03-22 00:34:32 +00:00
|
|
|
</Project>
|