Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
257 views
in Technique[技术] by (71.8m points)

visual studio - Can a file name of a .vxproj be used as a variable within the file itself?

My intention is to use the file-name as Projectname:

So I do have (for example) a vs project-file: "MyAwesomeProject.vxproj"

And I would like to use it (for example) this way: <ProjectName>$(ProjectFileName)</ProjectName>

$(Projectname) now would have the value "MyAwesomeProject"

Now I do know that "ProjectFileName" is a not existing variable, but is there an other variable that I can make this work with?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)

I found the solution! I just had to dig a little bit deeper over here:

https://docs.microsoft.com/nl-nl/previous-versions/visualstudio/visual-studio-2015/msbuild/msbuild-reserved-and-well-known-properties?view=vs-2015

$(MSBuildProjectName) is the variable that I needed. It is the file-name without the extension.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...