Can I set the default-option of "Copy Local" in Visual Studio to False? In most times, when I add a dll as dependency of a project, I want the Copy Local property set to False. Per default, it is True. Is there a way to change the default behaviour of Visual Studio? (2008)
|
No - Visual Studio uses an internal set of rules to determine what to set copy local to: (Taken From MSDN)
|
|||
|
|
|
Actually, you can. You need a couple things:
Now each project with this target has copylocal disabled by default. The drawback is that you need to modify each and every csproj file, including new ones. You can work around the new project issue by modifying the VS project template. Instead of With that approach, there's one more problem - the path itself. If you use hardcoded relative path in newly-generated csproj files, they may be wrong (unless you have flat project structure). You can:
There must be better solution for that, but haven't found it yet. |
|||||||
|
|
Bumping this because it seems there's now a nuget package allowing exactly yhis... https://nuget.org/packages/CopyLocalFalse Haven't tried yet, just hoping it helps.
|
|||
|
|