I have a special use case. I have a Visual Studio project that is a plugin. When I right-click on the project and publish, all the files are deployed to the folder I wanted, but nested inside a bin directory. However, the application I am using wants the plugin files to not be in a bin file.
Site: Default Website\Plugin\MyPlugin
Default Website\PluginMyPlugin\Bin\my.dll
Default Website\PluginMyPlugin\Bin\dependency.dll
I need the files deployed like this.
Default Website\PluginMyPlugin\my.dll
Default Website\PluginMyPlugin\dependency.dll
I have been searching the web for some time trying to figure out how to deploy all the files in the bin directory but not put them in the bin directory.
Any ideas?