Skip to content

Commit

Permalink
Fix path to generated winmd (#671)
Browse files Browse the repository at this point in the history
* Update path to generated winmd
  • Loading branch information
j0shuams committed Jan 16, 2021
1 parent 15942b3 commit 0f83d07
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions nuget/Microsoft.Windows.CsWinRT.targets
Expand Up @@ -143,10 +143,7 @@ $(CsWinRTFilters)
<Target Name="CsWinRTPlaceWinMDInOutputFolder"
Condition="'$(CsWinRTComponent)' == 'true'"
BeforeTargets="AfterBuild">
<Copy SourceFiles="Generated Files\$(AssemblyName).winmd"
DestinationFolder="$(TargetDir)"
UseHardlinksIfPossible="false"
SkipUnchangedFiles="true" />
<Copy SourceFiles="$(GeneratedFilesDir)\$(AssemblyName).winmd" DestinationFolder="$(TargetDir)" UseHardlinksIfPossible="false" SkipUnchangedFiles="true" />
</Target>

<!-- When an authored component packs (nuget), add the necessary hosting assets to the package -->
Expand Down

0 comments on commit 0f83d07

Please sign in to comment.