-
Notifications
You must be signed in to change notification settings - Fork 266
New issue
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
Add AssemblyVersion attribute #629
base: master
Are you sure you want to change the base?
Add AssemblyVersion attribute #629
Conversation
@baronfel and @DalekBaldwin, if you have some free time, please take a look at this PR. I think this must be enough to close the issue #521, and later we can revisit this process, to automate it using https://github.com/ionide/KeepAChangelog. |
375bb27
to
94e310d
Compare
@@ -2,6 +2,7 @@ | |||
<PropertyGroup> | |||
<!-- General --> | |||
<AssemblyName>Giraffe</AssemblyName> | |||
<AssemblyVersion>7.0.2</AssemblyVersion> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Another potential fix would be to define this property at the dotnet pack
command on CI here https://github.com/giraffe-fsharp/Giraffe/blob/master/.github/workflows/publish.yml#L69
Description
With this PR, I'm adding the AssemblyVersion attribute to Giraffe.fsproj, and updating the DEVGUIDE document, adding a new step to update this attribute whenever a new release is intended.
Related issues