Skip to content

Commit

Permalink
Use IntermediateAssembly instead of hard-coding the equivalent path
Browse files Browse the repository at this point in the history
Fixes #99731
  • Loading branch information
jkoritzinsky authored Mar 13, 2024
1 parent e658fdf commit ccdae8e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ The .NET Foundation licenses this file to you under the MIT license.

<Target Name="ComputeIlcCompileInputs" DependsOnTargets="$(IlcDynamicBuildPropertyDependencies)" BeforeTargets="Publish">
<ItemGroup>
<ManagedBinary Condition="$(BuildingFrameworkLibrary) != 'true'" Include="$(IntermediateOutputPath)$(TargetName)$(TargetExt)" />
<ManagedBinary Condition="$(BuildingFrameworkLibrary) != 'true'" Include="@(IntermediateAssembly)" />
<IlcCompileInput Include="@(ManagedBinary)" />
<IlcReference Include="@(DefaultFrameworkAssemblies)" />
</ItemGroup>
Expand Down

0 comments on commit ccdae8e

Please sign in to comment.