gitextensions / gitextensions.pluginmanager

Package manager for downloading and installing Git Extensions plugins.
MIT License
13 stars 10 forks source link

Fix regression introduced in PR #36 #39

Closed mast-eu closed 5 years ago

mast-eu commented 5 years ago

In PR #36 I've overseen that 2 different targets in GitExtensions.PluginManager.csproj were copying the file PackageManager.UI.exe to different locations: 1) $(TargetDir)\PackageManager\PackageManager.UI.exe for building the NuGet package 2) $(GitExtensionsPluginsPath)\$(ProjectName)\PackageManager\PackageManager.UI.exe for local testing and debugging.

As a result, the second copy was erroneously removed.

The original targets (previous to #36) were: https://github.com/gitextensions/gitextensions.pluginmanager/blob/4d9433e95f5d954d24fdb0317420fb54bf07e61f/src/GitExtensions.PluginManager/GitExtensions.PluginManager.csproj#L59-L65

This PR now restores the second copy, in order to use the correct PackageManager.UI.exe locally for debugging and testing.