ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

Visual Studio 项目中常用的Properties

Visual Studio 项目中常用的Properties
PropertyExpands ToExample (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
返回列表