2018-10-21 22:07:26 -07:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
|
|
|
2019-02-22 11:40:39 -08:00
|
|
|
<PropertyGroup Condition="'$(CopyrightNetFoundation)' != ''">
|
|
|
|
<Copyright>$(CopyrightNetFoundation)</Copyright>
|
|
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
|
|
</PropertyGroup>
|
|
|
|
|
2019-11-07 11:33:59 -05:00
|
|
|
<PropertyGroup>
|
|
|
|
<BuildArchitecture>$([System.Runtime.InteropServices.RuntimeInformation]::ProcessArchitecture.ToString().ToLowerInvariant())</BuildArchitecture>
|
2022-09-11 07:33:51 -04:00
|
|
|
<Architecture Condition="'$(Architecture)' == '' AND ('$(BuildArchitecture)' == 'arm64' OR '$(BuildArchitecture)' == 'arm')">$(BuildArchitecture)</Architecture>
|
2021-09-03 19:37:57 +02:00
|
|
|
<Architecture Condition="'$(Architecture)' == '' AND '$(BuildArchitecture)' == 's390x'">$(BuildArchitecture)</Architecture>
|
2022-10-12 00:27:05 +05:30
|
|
|
<Architecture Condition="'$(Architecture)' == '' AND '$(BuildArchitecture)' == 'ppc64le'">$(BuildArchitecture)</Architecture>
|
2019-11-07 11:33:59 -05:00
|
|
|
<Architecture Condition="'$(Architecture)' == ''">x64</Architecture>
|
|
|
|
</PropertyGroup>
|
2021-03-24 01:02:14 -07:00
|
|
|
<PropertyGroup Condition="'$(PgoInstrument)' == 'true'">
|
|
|
|
<SkipBuildingInstallers>true</SkipBuildingInstallers>
|
|
|
|
<PgoTerm>-pgo</PgoTerm>
|
|
|
|
</PropertyGroup>
|
2019-11-07 11:33:59 -05:00
|
|
|
|
2018-10-21 22:07:26 -07:00
|
|
|
<PropertyGroup>
|
|
|
|
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
|
|
|
|
<DebugType>embedded</DebugType>
|
|
|
|
<DebugSymbols>true</DebugSymbols>
|
|
|
|
|
2018-10-21 22:22:58 -07:00
|
|
|
<IsShipping>true</IsShipping>
|
2023-01-30 20:53:16 -06:00
|
|
|
<CoreSdkTargetFramework>net8.0</CoreSdkTargetFramework>
|
2018-12-03 18:15:31 -08:00
|
|
|
|
2021-04-28 17:25:39 -07:00
|
|
|
<!-- MSB3243 and MSB3247 fire when attempting to resolve references to the same assembly from different cultures.
|
|
|
|
This is a prevalent problem in building the precomputed assembly reference cache. Limiting the assemblies resolved
|
|
|
|
to those outside the culture folders would work, but that is a nontrivial problem. -->
|
|
|
|
<NoWarn>NU5125;NU5105;NU1701;MSB3243;MSB3247</NoWarn>
|
2018-10-21 22:07:26 -07:00
|
|
|
</PropertyGroup>
|
2018-11-09 14:15:41 -08:00
|
|
|
|
|
|
|
<PropertyGroup Condition="'$(DisableSourceLink)' == 'true'">
|
|
|
|
<EnableSourceLink>false</EnableSourceLink>
|
|
|
|
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
|
|
|
|
<DeterministicSourcePaths>false</DeterministicSourcePaths>
|
2018-11-23 09:23:38 -08:00
|
|
|
<!-- Normally set by sourcelink, and needed by the Pack targets -->
|
|
|
|
<RepositoryUrl>https://github.com/dotnet/core-sdk</RepositoryUrl>
|
2018-11-09 14:15:41 -08:00
|
|
|
</PropertyGroup>
|
2018-10-21 22:07:26 -07:00
|
|
|
</Project>
|