31 lines
1.5 KiB
XML
31 lines
1.5 KiB
XML
<Project>
|
|
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory)..\, Directory.Build.props))\Directory.Build.props" />
|
|
|
|
<PropertyGroup>
|
|
<!-- Override the version settings from the repo root. -->
|
|
<VersionPrefix>1.0.$(AspNetCorePatchVersion)</VersionPrefix>
|
|
<PackageVersion>$(VersionPrefix)</PackageVersion>
|
|
<PackageVersion Condition=" '$(IncludePreReleaseLabelInPackageVersion)' == 'true' ">$(VersionPrefix)-$(VersionSuffix)</PackageVersion>
|
|
<!-- These packages do not align with the repo version. -->
|
|
<VerifyVersions>false</VerifyVersions>
|
|
|
|
<!-- Don't run SignalR tests in parallel with others. This causes OutOfMemoryException on hosted Azure Pipelines agents. -->
|
|
<TestGroupName>SignalR</TestGroupName>
|
|
|
|
<SignalRSharedSourceRoot>$(MSBuildThisFileDirectory)common\Shared\</SignalRSharedSourceRoot>
|
|
<SignalRTestUtilsProject>$(MSBuildThisFileDirectory)common\testassets\Tests.Utils\Microsoft.AspNetCore.SignalR.Tests.Utils.csproj</SignalRTestUtilsProject>
|
|
</PropertyGroup>
|
|
|
|
<PropertyGroup Condition="'$(IsTestProject)' != 'true'">
|
|
<NoWarn>$(NoWarn);CS1591</NoWarn>
|
|
<GenerateDocumentationFile>true</GenerateDocumentationFile>
|
|
<PackageTags>aspnetcore;signalr</PackageTags>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup Condition="'$(IsTestProject)' == 'true'">
|
|
<Content Include="$(MSBuildThisFileDirectory)xunit.runner.json" Link="xunit.runner.json">
|
|
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
|
</Content>
|
|
</ItemGroup>
|
|
</Project>
|