зеркало из https://github.com/microsoft/testfx.git
82 строки
3.8 KiB
XML
82 строки
3.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project>
|
|
|
|
<Import Project="Sdk.props" Sdk="Microsoft.DotNet.Arcade.Sdk" />
|
|
<Import Project="$(RepositoryEngineeringDir)Analyzers.props" />
|
|
|
|
<PropertyGroup>
|
|
<RepoRoot Condition=" '$(RepoRoot)' == '' ">$([MSBuild]::NormalizeDirectory('$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildProjectDirectory), 'LICENSE'))'))</RepoRoot>
|
|
<IsSourceFile>false</IsSourceFile>
|
|
<IsSourceFile Condition="$([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectFullPath)).StartsWith('src/')) OR $([MSBuild]::MakeRelative($(RepoRoot), $(MSBuildProjectFullPath)).StartsWith('src\'))">true</IsSourceFile>
|
|
</PropertyGroup>
|
|
|
|
<!-- Language configuration -->
|
|
<PropertyGroup>
|
|
<!-- default to allowing all language features -->
|
|
<LangVersion>preview</LangVersion>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<!--
|
|
Make sure any documentation comments which are included in code get checked for syntax during the build, but do
|
|
not report warnings for missing comments.
|
|
|
|
CS1573: Parameter 'parameter' has no matching param tag in the XML comment for 'parameter' (but other parameters do)
|
|
CS1591: Missing XML comment for publicly visible type or member 'Type_or_Member'
|
|
-->
|
|
<NoWarn>$(NoWarn),1573,1591</NoWarn>
|
|
</PropertyGroup>
|
|
|
|
<!-- The TFMs to build and test against. -->
|
|
<PropertyGroup>
|
|
<NetCoreAppCurrentVersion>6.0</NetCoreAppCurrentVersion>
|
|
<NetCoreAppCurrentIdentifier>.NETCoreApp</NetCoreAppCurrentIdentifier>
|
|
<NetCoreAppCurrentTargetFrameworkMoniker>$(NetCoreAppCurrentIdentifier),Version=v$(NetCoreAppCurrentVersion)</NetCoreAppCurrentTargetFrameworkMoniker>
|
|
<MicrosoftNetCoreAppFrameworkName>Microsoft.NETCore.App</MicrosoftNetCoreAppFrameworkName>
|
|
<NetCoreAppCurrentBrandName>.NET $(NetCoreAppCurrentVersion)</NetCoreAppCurrentBrandName>
|
|
<NetCoreAppCurrent>net$(NetCoreAppCurrentVersion)</NetCoreAppCurrent>
|
|
<NetCoreAppMinimum>netcoreapp3.1</NetCoreAppMinimum>
|
|
|
|
<NetCoreAppToolCurrentVersion>6.0</NetCoreAppToolCurrentVersion>
|
|
<NetCoreAppToolCurrent>net$(NetCoreAppToolCurrentVersion)</NetCoreAppToolCurrent>
|
|
<NetCoreAppCurrentToolTargetFrameworkMoniker>$(NetCoreAppCurrentIdentifier),Version=v$(NetCoreAppToolCurrentVersion)</NetCoreAppCurrentToolTargetFrameworkMoniker>
|
|
|
|
<NetCoreAppLatestStableVersion>6.0</NetCoreAppLatestStableVersion>
|
|
<NetCoreAppLatestStablePackageBaselineVersion>$(NetCoreAppLatestStableVersion).0</NetCoreAppLatestStablePackageBaselineVersion>
|
|
<NetCoreAppLatestStable>net$(NetCoreAppLatestStableVersion)</NetCoreAppLatestStable>
|
|
|
|
<UwpMinimum>uap10.0.16299</UwpMinimum>
|
|
<WinUiMinimum>net6.0-windows10.0.18362.0</WinUiMinimum>
|
|
|
|
<NetFrameworkMinimum>net462</NetFrameworkMinimum>
|
|
</PropertyGroup>
|
|
|
|
<!-- Build & pack config -->
|
|
<PropertyGroup>
|
|
<Copyright>$(CopyrightMicrosoft)</Copyright>
|
|
<PackageLicenseExpression>MIT</PackageLicenseExpression>
|
|
<!--
|
|
It appears that AssemblyVersion should always be set to 14.0.0.0 for some backward compatibility cases,
|
|
but we don't have any information about these cases.
|
|
-->
|
|
<AssemblyVersion>14.0.0.0</AssemblyVersion>
|
|
<AssemblyFileVersion>14.0.0.0</AssemblyFileVersion>
|
|
<!-- Prevent warning about deprecated target frameworks -->
|
|
<CheckEolTargetFramework>false</CheckEolTargetFramework>
|
|
<!-- PDB -->
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>embedded</DebugType>
|
|
<!-- Default to all packages generating a corresponding symbol package -->
|
|
<IncludeSymbols>true</IncludeSymbols>
|
|
</PropertyGroup>
|
|
|
|
<!-- Sign config -->
|
|
<PropertyGroup>
|
|
<StrongNameKeyId>Microsoft</StrongNameKeyId>
|
|
</PropertyGroup>
|
|
|
|
<!-- Test config -->
|
|
<PropertyGroup>
|
|
<UseVSTestRunner>true</UseVSTestRunner>
|
|
</PropertyGroup>
|
|
|
|
</Project>
|