We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently if I want to set the MSBuild FileVersion and InformationalVersion properties this is the code I have to write:
MSBuild
FileVersion
InformationalVersion
new DotNetCoreMSBuildSettings() .SetVersion(assemblyVersion) .WithProperty("FileVersion", packageVersion) .WithProperty("InformationalVersion", packageVersion) .WithProperty("nowarn", "7035");
There is no helper for setting FileVersion and InformationalVersion and as I use semantic versioning I get a compilation warning:
What I would like to be able to write is:
new DotNetCoreMSBuildSettings() .SetVersion(assemblyVersion) .SetFileVersion(packageVersion) .SetInformationalVersion(packageVersion) .SuppressVersionRecommendedFormatWarning();
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently if I want to set the
MSBuild
FileVersion
andInformationalVersion
properties this is the code I have to write:There is no helper for setting
FileVersion
andInformationalVersion
and as I use semantic versioning I get a compilation warning:What I would like to be able to write is:
The text was updated successfully, but these errors were encountered: