Skip to content

Commit

Permalink
Fix path in authoring targets (#1178)
Browse files Browse the repository at this point in the history
  • Loading branch information
j0shuams authored Apr 28, 2022
1 parent 6fd1d37 commit e515454
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions nuget/Microsoft.Windows.CsWinRT.Authoring.targets
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ Copyright (C) Microsoft Corporation. All rights reserved.
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

<None Condition="Exists('$(CsWinRTPath)hosting\win-$(CsWinRTAuthoring_Platform)\native\WinRT.Host.dll')"
Include="$(CsWinRTPath)hosting\win-$(CsWinRTAuthoring_Platform)\native\WinRT.Host.dll">
<None Condition="Exists('$(CsWinRTPath)hosting\$(CsWinRTAuthoring_Platform)\native\WinRT.Host.dll')"
Include="$(CsWinRTPath)hosting\$(CsWinRTAuthoring_Platform)\native\WinRT.Host.dll">
<TargetPath>WinRT.Host.dll</TargetPath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>

<None Condition="Exists('$(CsWinRTPath)hosting\win-$(CsWinRTAuthoring_Platform)\native\en-us\WinRT.Host.dll.mui')"
Include="$(CsWinRTPath)hosting\win-$(CsWinRTAuthoring_Platform)\native\en-us\WinRT.Host.dll.mui">
<None Condition="Exists('$(CsWinRTPath)hosting\$(CsWinRTAuthoring_Platform)\native\en-us\WinRT.Host.dll.mui')"
Include="$(CsWinRTPath)hosting\$(CsWinRTAuthoring_Platform)\native\en-us\WinRT.Host.dll.mui">
<TargetPath>WinRT.Host.dll.mui</TargetPath>
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
Expand Down

0 comments on commit e515454

Please sign in to comment.