dotnet-installer/src/core-sdk-tasks/core-sdk-tasks.csproj

24 lines
1.3 KiB
XML
Raw Normal View History

2018-10-29 11:37:13 -07:00
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
2018-10-29 11:37:13 -07:00
<TargetFrameworks>$(CoreSdkTargetFramework);net472</TargetFrameworks>
2018-11-01 23:15:59 -07:00
<TargetFrameworks Condition="'$(OS)' != 'Windows_NT'">$(CoreSdkTargetFramework)</TargetFrameworks>
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
<RootNamespace>Microsoft.DotNet.Cli.Build</RootNamespace>
<DefineConstants Condition="'$(DotNetBuildFromSource)' == 'true'">$(DefineConstants);SOURCE_BUILD</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build" Version="15.7.177" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.7.177" />
<PackageReference Include="Microsoft.DotNet.PlatformAbstractions" Version="2.0.0" />
2018-11-05 13:38:10 -08:00
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
2018-11-12 11:52:19 -08:00
<PackageReference Include="NuGet.Versioning" Version="4.3.0" />
2018-12-03 18:15:31 -08:00
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" Condition="'$(DotNetBuildFromSource)' != 'true'" />
</ItemGroup>
2018-10-29 11:37:13 -07:00
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
<Reference Include="System.Net.Http" />
</ItemGroup>
</Project>