Skip to content

Commit

Permalink
Update workloads.csproj (dotnet#106638)
Browse files Browse the repository at this point in the history
* Update workloads.csproj

Fixes the official build break. Regressed with dotnet#106590

* Update workloads.csproj
  • Loading branch information
ViktorHofer authored Aug 19, 2024
1 parent a418138 commit 67631f5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/workloads/workloads.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,9 @@
<MsiPackageProjects Include="%(Msis.PackageProject)" />
</ItemGroup>

<!-- We disable PackageValidation which runs because these projects import the repo's Directory.Build.props and Directory.Build.targets file. -->
<MSBuild Projects="@(MsiPackageProjects)" Properties="OutputPath=$(ArtifactsShippingPackagesDir);IncludeSymbols=false;EnablePackageValidation=false" Targets="restore;pack" />
<!-- Disable PackageValidation which runs because these projects import the repo's Directory.Build.props and Directory.Build.targets file.
Don't validate that the packages have a package readme file. -->
<MSBuild Projects="@(MsiPackageProjects)" Properties="OutputPath=$(ArtifactsShippingPackagesDir);IncludeSymbols=false;EnablePackageValidation=false;EnableDefaultPackageReadmeFile=false" Targets="Restore;Pack" />
</Target>

<!-- Target to create a single wixpack for signing -->
Expand Down

0 comments on commit 67631f5

Please sign in to comment.