Skip to content

Commit 64c3065

Browse files
committed
Fix a condition and some formatting
1 parent 0ea7b43 commit 64c3065

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Components/WebAssembly/BlazorManifest/src/WorkloadManifest.targets

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<Project>
22
<PropertyGroup Condition="'$(RuntimeIdentifier)' == 'browser-wasm'">
3-
<UsingBrowserRuntimeWorkload Condition="'$(RunAOTCompilation)' == 'true' or '$(UsingMicrosoftNETSdkBlazorWebAssembly)'=='false'" >true</UsingBrowserRuntimeWorkload>
3+
<UsingBrowserRuntimeWorkload Condition="'$(RunAOTCompilation)' == 'true' or '$(UsingMicrosoftNETSdkBlazorWebAssembly)' != 'true'" >true</UsingBrowserRuntimeWorkload>
44
<UsingBrowserRuntimeWorkload Condition="'$(UsingBrowserRuntimeWorkload)' == ''" >$(WasmNativeWorkload)</UsingBrowserRuntimeWorkload>
55
</PropertyGroup>
6-
<PropertyGroup Condition="'$(UsingMicrosoftNETSdkBlazorWebAssembly)'=='true' and '$(UsingBrowserRuntimeWorkload)' == 'true'">
6+
<PropertyGroup Condition="'$(UsingMicrosoftNETSdkBlazorWebAssembly)' == 'true' and '$(UsingBrowserRuntimeWorkload)' == 'true'" >
77
<WasmGenerateAppBundle>false</WasmGenerateAppBundle>
88
<UsingBlazorAOTWorkloadManifest>true</UsingBlazorAOTWorkloadManifest>
99
</PropertyGroup>

0 commit comments

Comments
 (0)