File tree Expand file tree Collapse file tree 3 files changed +12
-14
lines changed
src/mono/nuget/Microsoft.NET.Workload.Mono.Toolchain.Current.Manifest Expand file tree Collapse file tree 3 files changed +12
-14
lines changed Original file line number Diff line number Diff line change @@ -900,13 +900,13 @@ extends:
900
900
901
901
# WASI/WASM
902
902
903
- - template : /eng/pipelines/common/templates/simple-wasm-build-tests.yml
904
- parameters :
905
- platforms :
906
- - wasi_wasm
907
- - wasi_wasm_win
908
- extraBuildArgs : /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
909
- alwaysRun : ${{ variables.isRollingBuild }}
903
+ # - template: /eng/pipelines/common/templates/simple-wasm-build-tests.yml
904
+ # parameters:
905
+ # platforms:
906
+ # - wasi_wasm
907
+ # - wasi_wasm_win
908
+ # extraBuildArgs: /p:AotHostArchitecture=x64 /p:AotHostOS=$(_hostedOS)
909
+ # alwaysRun: ${{ variables.isRollingBuild }}
910
910
911
911
#
912
912
# Android devices
Original file line number Diff line number Diff line change 1
- Wasi.Build.Tests.InvariantTests
2
- Wasi.Build.Tests.ILStripTests
3
- Wasi.Build.Tests.SdkMissingTests
4
- Wasi.Build.Tests.RuntimeConfigTests
5
- Wasi.Build.Tests.WasiTemplateTests
6
- Wasi.Build.Tests.PInvokeTableGeneratorTests
7
- Wasi.Build.Tests.WasiLibraryModeTests
1
+
Original file line number Diff line number Diff line change 10
10
<PropertyGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
11
11
<UsingWasiRuntimeWorkload Condition="'$(UsingWasiRuntimeWorkload)' == ''">$(WasiNativeWorkloadAvailable)</UsingWasiRuntimeWorkload>
12
12
</PropertyGroup>
13
+
14
+ <Target Name="FailBuild" BeforeTargets="ProcessFrameworkReferences;Restore;Build;Publish" Condition="'$(RuntimeIdentifier)' == 'wasi-wasm'">
15
+ <Error Text="The 'wasi-experimental' workload is not supported in .NET 10." />
16
+ </Target>
13
17
</Project>
You can’t perform that action at this time.
0 commit comments