clowd / Clowd.Squirrel

Quick and easy installer and automatic updates for cross-platform dotnet applications
427 stars 39 forks source link

Possible to sync AssemblyInfo? #191

Closed mikebm closed 9 months ago

mikebm commented 9 months ago

This is more of a question than an issue.

I'd like to be-able to have the AssemblyInfo.cs file synced with the packVersion. Specifically, [assembly: AssemblyVersion("1.0")]

Is this possible? Or is there a recommended approach to keep these synced together?

thanks.

remco1271 commented 9 months ago

This is what I have done to get it published. The powershell script gets the file version and publish it. Publish is canceled if version already exists. remco1271/Clowd.Squirrel.Release

mikebm commented 9 months ago

This is what I have done to get it published. The powershell script gets the file version and publish it. Publish is canceled if version already exists. remco1271/Clowd.Squirrel.Release

Ah that's a great idea. Thank you for sharing!