| **Navigation:**  [[advanced topics 1.htm|Advanced Topics]] > Clarion Project System >====== Common MSBuild Properties ====== | [[msbuild tasks.htm|{{btn_prev_n.gif|Previous page}}]][[advanced topics 1.htm|{{btn_home_n.gif|Return to chapter overview}}]][[customizing the ide menu text.htm|{{btn_next_n.gif|Next page}}]] | | || Listed here are common properties used in the MSBuild project system to extract important path and configuration information: | **$(TargetPath)** | The full path of the resulting binary.Example: //c:\my project\debug\mydll.dll// | | **$(TargetDir)** | The path of the resulting binary.Example: //c:\my project\debug\// | | **$(SolutionDir)** | The path where the solution (.sln) file exists.Example: //c:\my project\// | | **$(MSBuildProjectDirectory)** | The path where the project file exists.Example: //c:\my project\// | | **$(Configuration)** | The configuration being built.Example: //Debug// |