Skip to content

Commit

Permalink
Merge pull request #970 from microsoft/fixRelativeWinMdPaths
Browse files Browse the repository at this point in the history
Use MSBuild computed full paths for input metadata
  • Loading branch information
AArnott committed Jun 20, 2023
2 parents e473b85 + 22a8dca commit 370b297
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
<Target Name="AssembleCsWin32InputPaths" BeforeTargets="GenerateMSBuildEditorConfigFileCore">
<!-- Roslyn only allows source generators to see msbuild properties, to lift msbuild items into semicolon-delimited properties. -->
<PropertyGroup>
<CsWin32InputMetadataPaths>@(ProjectionMetadataWinmd,'|')</CsWin32InputMetadataPaths>
<CsWin32InputDocPaths>@(ProjectionDocs,'|')</CsWin32InputDocPaths>
<CsWin32InputMetadataPaths>@(ProjectionMetadataWinmd->'%(FullPath)','|')</CsWin32InputMetadataPaths>
<CsWin32InputDocPaths>@(ProjectionDocs->'%(FullPath)','|')</CsWin32InputDocPaths>
</PropertyGroup>
</Target>
</Project>

0 comments on commit 370b297

Please sign in to comment.