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
  • Loading branch information
jkoritzinsky authored Mar 14, 2024
1 parent 4707b43 commit fef9a5f
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 fef9a5f

Please sign in to comment.