2017-11-02 20:40:59 +03:00
<!-- Copyright (c) .NET Foundation and contributors. All rights reserved. Licensed under the MIT license. See License.txt in the project root for full license information. -->
2017-02-11 01:19:24 +03:00
<Project>
2018-09-20 01:11:56 +03:00
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
2017-11-02 20:40:59 +03:00
<PropertyGroup>
2019-11-13 03:40:57 +03:00
<PackageLicenseExpression>MIT</PackageLicenseExpression>
2019-02-22 22:32:39 +03:00
<LangVersion>Latest</LangVersion>
2018-09-20 01:11:56 +03:00
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
<DebugSymbols>true</DebugSymbols>
2021-08-31 19:21:06 +03:00
<!-- Default to all packages generating a corresponding symbol package -->
<IncludeSymbols>true</IncludeSymbols>
2019-03-26 23:42:14 +03:00
<IsShippingPackage>false</IsShippingPackage>
2021-10-05 07:42:54 +03:00
<SdkTargetFramework>net7.0</SdkTargetFramework>
2019-11-06 23:25:57 +03:00
<ToolsetTargetFramework>$(SdkTargetFramework)</ToolsetTargetFramework>
2019-08-23 04:10:18 +03:00
2019-10-23 00:42:18 +03:00
<!-- Disable implict package target fallback, and disable warning for when we explicitly add it (currently needed for
Microsoft.ApplicationInsights) -->
2019-10-21 21:36:22 +03:00
<NoWarn>$(NoWarn);NU1701</NoWarn>
2019-10-23 00:42:18 +03:00
<DisableImplicitPackageTargetFallback>true</DisableImplicitPackageTargetFallback>
<!-- <ArtifactsShippingSymbolsDir>$(ArtifactsDir)symbols\$(Configuration)\Shipping</ArtifactsShippingSymbolsDir> -->
2021-04-02 19:20:05 +03:00
<DefineConstants Condition="'$(ContinuousIntegrationBuild)' == 'true'">$(DefineConstants);CI_BUILD</DefineConstants>
2022-07-13 12:26:10 +03:00
<DefineConstants Condition="'$(OfficialBuilder)' == 'Microsoft'">$(DefineConstants);MICROSOFT_ENABLE_TELEMETRY</DefineConstants>
2022-07-18 22:44:27 +03:00
<DefineConstants Condition="'$(DotNetBuildFromSource)' == 'true'">$(DefineConstants);DOT_NET_BUILD_FROM_SOURCE</DefineConstants>
2018-09-20 01:11:56 +03:00
</PropertyGroup>
2017-11-02 20:40:59 +03:00
<PropertyGroup Condition="'$(IsTestProject)' == 'true'">
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<GenerateProgramFile>false</GenerateProgramFile>
2021-01-05 19:25:08 +03:00
<!-- <TestRunnerAdditionalArguments>-parallel none</TestRunnerAdditionalArguments> -->
2017-11-02 20:40:59 +03:00
</PropertyGroup>
2021-08-20 02:29:54 +03:00
<PropertyGroup>
<AssemblyInformationCachePaths Condition="Exists('$(NetCoreRoot)sdk\$(NetCoreSdkVersion)\SdkPrecomputedAssemblyReferences.cache')">$(AssemblyInformationCachePaths);$(NetCoreRoot)sdk\$(NetCoreSdkVersion)\SDKPrecomputedAssemblyReferences.cache</AssemblyInformationCachePaths>
</PropertyGroup>
2019-10-21 21:36:22 +03:00
<Import Project="build/GenerateResxSource.targets" />
2017-11-02 20:40:59 +03:00
</Project>