2018-10-29 11:37:13 -07:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="14.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
2018-10-22 19:59:58 -07:00
|
|
|
|
<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>
|
2018-12-20 10:03:12 -08:00
|
|
|
|
<CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
|
2018-12-30 00:14:44 -08:00
|
|
|
|
<RootNamespace>Microsoft.DotNet.Cli.Build</RootNamespace>
|
2019-03-27 12:59:21 -07:00
|
|
|
|
<DefineConstants Condition="'$(DotNetBuildFromSource)' == 'true'">$(DefineConstants);SOURCE_BUILD</DefineConstants>
|
2018-10-22 19:59:58 -07:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
2019-06-20 17:24:02 -05:00
|
|
|
|
<PackageReference Include="Microsoft.Build" Version="15.7.179" />
|
|
|
|
|
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="15.7.179" />
|
2018-11-05 13:38:10 -08:00
|
|
|
|
<PackageReference Include="Newtonsoft.Json" Version="9.0.1" />
|
2021-02-04 21:27:04 +00:00
|
|
|
|
<PackageReference Include="NuGet.Versioning" Version="$(NuGetVersioningPackageVersion)" />
|
|
|
|
|
<PackageReference Include="NuGet.Packaging" Version="$(NuGetVersioningPackageVersion)" />
|
2018-12-03 18:15:31 -08:00
|
|
|
|
<PackageReference Include="System.Reflection.Metadata" Version="1.4.2" />
|
2019-03-27 12:59:21 -07:00
|
|
|
|
<PackageReference Include="WindowsAzure.Storage" Version="8.4.0" Condition="'$(DotNetBuildFromSource)' != 'true'" />
|
2018-10-22 19:59:58 -07:00
|
|
|
|
</ItemGroup>
|
2018-10-29 11:37:13 -07:00
|
|
|
|
|
|
|
|
|
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETFramework'">
|
|
|
|
|
<Reference Include="System.Net.Http" />
|
|
|
|
|
</ItemGroup>
|
2018-10-22 19:59:58 -07:00
|
|
|
|
</Project>
|