How to set environment variables in Visual Studio 2012?

How to set environment variables in Visual Studio 2012?

For example, I need to install this:

$(MyDir) = "c:\my_dir" 
+6
source share
1 answer

Open the project in a text editor and add to the top existing tag

 <PropertyGroup> <MyDir>c:\my_dir</MyDir> ...(leave existing ones here)... </PropertyGroup> 

There is probably some way to do this in the user interface, but I am only now editing the files manually. And its different user interface for each language (!)

+7
source

Source: https://habr.com/ru/post/945695/


All Articles