uwp-desktop
uwp-desktop copied to clipboard
All winmd files has been added into output directory
Could I remove all of them?
The .targets files in the package need to be updated to have <Private>false</Private> after the <HintPath>... line for each assembly. This will set "Copy Local" to False for all of the references which will prevent them from being copied to the output directory.
<Reference Include="System.Runtime.WindowsRuntime, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>$(MSBuildProgramFiles32)\Reference Assemblies\Microsoft\Framework\.NETCore\v4.5\System.Runtime.WindowsRuntime.dll</HintPath>
<Private>false</Private>
</Reference>