Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions eng/Versions.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,14 +10,14 @@
<!--
When StabilizePackageVersion is set to 'true', this branch will produce stable outputs for 'Shipping' packages
-->
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">false</StabilizePackageVersion>
<StabilizePackageVersion Condition="'$(StabilizePackageVersion)' == ''">true</StabilizePackageVersion>
<!--
When DotNetFinalVersionKind is set to 'release' (only for the release branches),
the build will produce stable outputs for 'Shipping' packages.

This is used by the Arcade SDK (Publish.proj) to determine if the build is a release build or not.
-->
<DotNetFinalVersionKind />
<DotNetFinalVersionKind>release</DotNetFinalVersionKind>
<!-- Enabling this rule will cause build failures on undocumented public APIs. -->
<SkipArcadeNoWarnCS1591>true</SkipArcadeNoWarnCS1591>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,16 @@
<IsIntegrationTestProject>true</IsIntegrationTestProject>
</PropertyGroup>

<PropertyGroup>
<!--
Skip these tests pending backport of #7561 to release/10.7. The generated
AppHost projects fail 'dotnet restore' with NU1903 because the transitive
MessagePack 2.5.192 has a known high severity vulnerability
(https://github.com/advisories/GHSA-hv8m-jj95-wg3x). See #7562.
-->
<SkipTests>true</SkipTests>
</PropertyGroup>

<PropertyGroup>
<NoWarn>$(NoWarn);CA1063;CA1716;CA1861;CA2201;VSTHRD003;S104;S125;S2699</NoWarn>
</PropertyGroup>
Expand Down