We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1704827 commit c31ccd5Copy full SHA for c31ccd5
1 file changed
.github/workflows/canary-release.yml
@@ -117,11 +117,13 @@ jobs:
117
command: |
118
# Only build for linux-x64 since cross-OS native compilation is not supported
119
# Use framework-dependent single-file to avoid AOT compilation version mismatch
120
+ # Disable AOT compilation to prevent ILCompiler version mismatch
121
dotnet publish samples/PleasantUI.Example.Desktop/PleasantUI.Example.Desktop.csproj \
122
--configuration Release \
123
--runtime linux-x64 \
124
-p:PublishSingleFile=true \
125
-p:IncludeNativeLibrariesForSelfExtract=true \
126
+ -p:PublishAot=false \
127
-p:TreatWarningsAsErrors=false \
128
-o /tmp/example-app-linux-x64 || exit 1
129
0 commit comments