Skip to content

Visual Studio 2015 stuff

BorjaFG edited this page Apr 20, 2017 · 5 revisions

Output directories

  • Executable files and DLLs should be compiled inside /bin or /Debug depending on the configuration. x64 versions should be appended with x64.
  • Intermediate files should all be within its own project folder to avoid messing with other projects' intermediate files: "$(ProjectDir)$(Configuration)$(Platform)".
  • Static libraries should be compiled in either _$(SolutionDir)bin$(Platform)_ or _$(SolutionDir)Debug$(Platform)_, depending on the configuration (release or debug).

Tests

  • If a file needs to be loaded to run the test, set the working directory to $(SolutionDir)/experiments and use relative paths

Clone this wiki locally