Skip to content

Commit

Permalink
Avoid skipping build of specification test projects in VMR official b…
Browse files Browse the repository at this point in the history
…uilds (#35627)

VMR official builds do not build tests (left to CI/PR). These projects produce packages that go to customers, so they should not be skipped.
  • Loading branch information
mmitche authored Feb 12, 2025
1 parent 3b5648d commit 540b7c1
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,9 @@
<IsShipping>true</IsShipping>
<IncludeSymbols>true</IncludeSymbols>
<ImplicitUsings>true</ImplicitUsings>
<!-- This is a test project, but we ship the package to customers. Avoid skipping in VMR builds
that do not build tests -->
<ExcludeFromDotNetBuild>false</ExcludeFromDotNetBuild>
</PropertyGroup>

<ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@
<NoWarn>$(NoWarn);NETSDK1023</NoWarn>
<!-- Avoid referencing EFCore.Relational -->
<DisableTransitiveProjectReferences>true</DisableTransitiveProjectReferences>
<!-- This is a test project, but we ship the package to customers. Avoid skipping in VMR builds
that do not build tests -->
<ExcludeFromDotNetBuild>false</ExcludeFromDotNetBuild>
</PropertyGroup>

<ItemGroup>
Expand Down

0 comments on commit 540b7c1

Please sign in to comment.