Project settings
-
Hello all. I have decided to change the output directory of my managed c++ application and also the intermediate directory. I had as output and intermediate directories de defaultvalues: OutputDirectory="$(SolutionDir)$(ConfigurationName)" IntermediateDirectory="$(ConfigurationName) which in fact were the same directory. I have changed this right now to: OutputDirectory="o:/$(ConfigurationName)" IntermediateDirectory="o:/$(ConfigurationName)/Intermediate/$(ProjectName) This changes the output of the project and the project is build correctly but when I try to execute the application I get a System.Resources.MissingManifestException. If I don't modify the original value for the intermediate directory it works fine Please can anyone explain something to me ??? Thanks in advace.