Property | Expands To | Example (Debug build of xxx ) |
---|---|---|
$(ProjectDir) |
Full path to the project folder (with trailing \ ) |
C:\Repos\xxx\ |
$(SolutionDir) |
Full path to the solution folder (with trailing \ ) |
C:\Repos\xxx\ |
$(Configuration) |
Build configuration | Debug |
$(Platform) |
Build platform | AnyCPU |
$(OutDir) |
Output directory relative to project folder | bin\Debug\ |
$(TargetDir) |
Full output directory path | C:\Repos\xxx\bin\Debug\ |
$(TargetPath) |
Full path of the built assembly (DLL or EXE) | C:\Repos\xxx\bin\Debug\xxx.dll |
$(TargetName) |
Assembly name without extension | xxx |
$(TargetExt) |
Assembly extension | .dll |
$(TargetFileName) |
File name with extension | xxx.dll |