Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Visual Studio: Using external files (without copying them)

I want to import an enum class (.cs) into my project that is generated by another service. So if that service will update this file, it should be automatically updated in my project. It has to be text-only (so I can't use an assembly) because we can't compile code in php.

And here is why I want this: We are using global language strings in multiple applications and I would like to use them as enumerations for some reasons. When new texts are added I want to be able to use them without copying or changing anything. Maybe there is another way to achieve this.

Thank you.

like image 379
K. D. Avatar asked Nov 08 '13 15:11

K. D.


People also ask

What is the use of copy to output directory Visual Studio?

"Copy to Output Directory" is the property of the files within a Visual Studio project, which defines if the file will be copied to the project's built path as it is. Coping the file as it is allows us to use relative path to files within the project.


2 Answers

You can add a source code file to a project as a link.

To do so:

  1. Right-click project and select "Add -> Existing Item"
  2. Navigate to the file you want to add as a link, and select it.
  3. Look at the "Add" button at lower right of the "Add Existing Item" dialog. It has a little drop arrow. Click that drop arrow.
  4. Select "Add as link".
like image 176
Matthew Watson Avatar answered Oct 08 '22 19:10

Matthew Watson


Follow the setps:

  • Right click on the project go to Add
  • Select Existing Item
  • Select the file
  • On the Add button click the drop down button and select "Add as a Link"

enter image description here

like image 41
Habib Avatar answered Oct 08 '22 17:10

Habib