Skip to content

Commit

Permalink
Allow for unsafe code compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
ryand56 committed Sep 3, 2022
1 parent af1d3c1 commit b969c4b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/netdebug.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: nuget restore ChaosVDotNet.sln

- name: Build
run: msbuild ChaosVDotNet.sln /t:Rebuild -property:Configuration=Debug -p:Platform=x64 -p:VisualStudioVersion=15.0
run: msbuild ChaosVDotNet.sln /t:Rebuild -property:Configuration=Debug -p:Platform=x64 -p:VisualStudioVersion=15.0 -p:AllowUnsafeBlocks=true

- name: Test
run: dotnet test --no-build --verbosity normal
2 changes: 1 addition & 1 deletion .github/workflows/netrelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
run: nuget restore ChaosVDotNet.sln

- name: Build
run: msbuild ChaosVDotNet.sln /t:Rebuild -property:Configuration=Release -p:Platform=x64 -p:VisualStudioVersion=15.0
run: msbuild ChaosVDotNet.sln /t:Rebuild -property:Configuration=Release -p:Platform=x64 -p:VisualStudioVersion=15.0 -p:AllowUnsafeBlocks=true

- name: Test
run: dotnet test --no-build --verbosity normal

0 comments on commit b969c4b

Please sign in to comment.