Skip to content

Commit caeb3b4

Browse files
authored
Fix Compile items with whitespace for ilprojs (#120146)
1 parent 457c6b7 commit caeb3b4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/coreclr/.nuget/Microsoft.NET.Sdk.IL/Microsoft.NET.Sdk.IL.targets.template

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Copyright (c) .NET Foundation. All rights reserved.
136136
<_IlasmSwitches Condition="'$(IlasmResourceFile)' != ''">$(_IlasmSwitches) -RESOURCES="$(IlasmResourceFile)"</_IlasmSwitches>
137137
</PropertyGroup>
138138

139-
<Exec Command="&quot;$(_IlasmDir)ilasm&quot; $(_IlasmSwitches) $(_OutputTypeArgument) $(IlasmFlags) -OUTPUT=&quot;@(IntermediateAssembly)&quot; $(_KeyFileArgument) @(Compile, ' ')">
139+
<Exec Command="&quot;$(_IlasmDir)ilasm&quot; $(_IlasmSwitches) $(_OutputTypeArgument) $(IlasmFlags) -OUTPUT=&quot;@(IntermediateAssembly)&quot; $(_KeyFileArgument) @(Compile->'&quot;%(Identity)&quot;', ' ')">
140140
<Output TaskParameter="ExitCode" PropertyName="_ILAsmExitCode" />
141141
</Exec>
142142

0 commit comments

Comments
 (0)