How does one use the "Available MSBuild customizations"? #205
-
The readme (and many parts of the code) reference many "MSBuild customizations", such as I am a total MSBuild noob and I'm really struggling with this. I've spent multiple hours searching the internet but I can't figure this out. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Oh my lord, I finally figured it out. The proper name for these is "MSBuild Properties". The reason why I couldn't find any information about it is that they are called "MSBuild customizations" in the readme. The documentation is here: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-properties You can set an MSBuild variable by adding syntax like the following to a .csproj file: <PropertyGroup>
<GitTagRegex>put the regex here</GitTagRegex>
</PropertyGroup> I have opened a PR (#206) to make the readme more clear. |
Beta Was this translation helpful? Give feedback.
Oh my lord, I finally figured it out.
The proper name for these is "MSBuild Properties". The reason why I couldn't find any information about it is that they are called "MSBuild customizations" in the readme.
The documentation is here: https://learn.microsoft.com/en-us/visualstudio/msbuild/msbuild-properties
You can set an MSBuild variable by adding syntax like the following to a .csproj file:
I have opened a PR (#206) to make the readme more clear.