mbrodersen
mbrodersen

Reputation: 787

Adding existing .cs files to VS 2008 without VS 2008 copying the files to project

How do I add existing C# files to a VS 2008 C# project without VS 2008 copying the files to the project folder?

When adding existing C++ files to a C++ project, VS 2008 doesn't copy the files. It simply use the file paths.

Upvotes: 3

Views: 1006

Answers (1)

Richard
Richard

Reputation: 108975

When you add note that the add button on the dialogue has a drop down. This allows you to "add as link": this does not copy the file.

Upvotes: 7

Related Questions