We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e19c23d commit 6e2456aCopy full SHA for 6e2456a
.github/workflows/build.yml
@@ -28,6 +28,9 @@ jobs:
28
with:
29
dotnet-version: 8.x
30
31
+ - name: Disable Audit
32
+ run: ./prebuild.ps1
33
+
34
- name: Setup DocFX
35
run: dotnet tool restore
36
Bonsai.build.props
@@ -0,0 +1,7 @@
1
+<Project>
2
+ <Import Project="tooling/Common.props" />
3
+ <Import Project="tooling/Common$(MSBuildProjectExtension).props" Condition="Exists('tooling/Common$(MSBuildProjectExtension).props')"/>
4
+ <PropertyGroup>
5
+ <NuGetAudit>false</NuGetAudit>
6
+ </PropertyGroup>
7
+</Project>
prebuild.ps1
@@ -0,0 +1 @@
+Copy-Item -Path .\Bonsai.build.props -Destination .\src\bonsai\Directory.Build.props -Force
0 commit comments