Skip to content

Commit

Permalink
Disable audit via build props
Browse files Browse the repository at this point in the history
  • Loading branch information
glopesdev committed Dec 3, 2024
1 parent e19c23d commit 6e2456a
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,9 @@ jobs:
with:
dotnet-version: 8.x

- name: Disable Audit
run: ./prebuild.ps1

- name: Setup DocFX
run: dotnet tool restore

Expand Down
7 changes: 7 additions & 0 deletions Bonsai.build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<Project>
<Import Project="tooling/Common.props" />
<Import Project="tooling/Common$(MSBuildProjectExtension).props" Condition="Exists('tooling/Common$(MSBuildProjectExtension).props')"/>
<PropertyGroup>
<NuGetAudit>false</NuGetAudit>
</PropertyGroup>
</Project>
1 change: 1 addition & 0 deletions prebuild.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Copy-Item -Path .\Bonsai.build.props -Destination .\src\bonsai\Directory.Build.props -Force

0 comments on commit 6e2456a

Please sign in to comment.