Change product output path
-
Hi I would like to change the output of my project that include exe,DLL and obj I see that I can change the exe path at project->propoerties->build How can I change also the obj outout such as *.csproj.GenerateResource.Cache,*.frmMain.resources, *.frmTemplate.resources All the files above create at obj->debug and I wish to change it Thanks Ronen
-
Hi I would like to change the output of my project that include exe,DLL and obj I see that I can change the exe path at project->propoerties->build How can I change also the obj outout such as *.csproj.GenerateResource.Cache,*.frmMain.resources, *.frmTemplate.resources All the files above create at obj->debug and I wish to change it Thanks Ronen
In the csproj file, add a tag for BaseIntermediateOutputPath under root property group tag. Put the desired path there.
C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void "Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live." - Martin Golding
-
In the csproj file, add a tag for BaseIntermediateOutputPath under root property group tag. Put the desired path there.
C isn't that hard: void (*(*f[])())() defines f as an array of unspecified size, of pointers to functions that return pointers to functions that return void "Always program as if the person who will be maintaining your program is a violent psychopath that knows where you live." - Martin Golding