We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
AllowUnsafeBlocks
1 parent 76f6d87 commit b4bae93Copy full SHA for b4bae93
.github/workflows/build.yml
@@ -25,7 +25,7 @@ jobs:
25
working-directory: sources
26
run: |
27
msbuild /t:Restore
28
- msbuild -property:Configuration=Debug -unsafe
+ msbuild -property:Configuration=Debug
29
Write-Output "commit=$("${{ github.sha }}".Substring(0,7))"| Out-File -FilePath $Env:GITHUB_ENV -Encoding UTF8 -Append
30
31
- name: Upload
sources/gff.csproj
@@ -6,6 +6,7 @@
6
<AssemblyName>gff</AssemblyName>
7
<ApplicationIcon>..\icons\icon.ico</ApplicationIcon>
8
<LangVersion>latest</LangVersion>
9
+ <AllowUnsafeBlocks>true</AllowUnsafeBlocks>
10
</PropertyGroup>
11
12
<ItemGroup>
0 commit comments