Could this work on .NET projects?
See original GitHub issueI know most of this is dependent on your git commits. But where it tracks your version depends on if you have a package.json or composer.json. So what if you wanted to use standard-version on a .NET C#, VB.net, or even SQL project? These projects use a .vbproj
, .csproj
, .sqlproj
, file for tracking version numbers. Is there a possibility of standard-version supporting these types of projects too?
Issue Analytics
- State:
- Created 4 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
How to Boot-strap and Create .NET Projects - Toptal
To create .NET project from scratch, simply using Visual Studio Wizard is good enough most of the time. However, the default project settings...
Read more >Port from .NET Framework to .NET 6 - .NET Core
NET Framework libraries doesn't work for all projects, such as if the library uses WPF APIs, but it does unblock many porting scenarios....
Read more >The Good and the Bad of .NET Framework Programming
Apart from being the final step of the unification, .NET 6 can boast of: Better performance with decreased project execution time, latency time, ......
Read more >Another 5 .NET projects that deserve more attention - YouTube
Check out my courses and use code OPEN15 for a 15% discount: https://nickchapsas.comBecome a Patreon and get source code access: ...
Read more >Modernising .NET projects for .NET Core and beyond!
NET Core does not run on the .NET Framework and vice-versa. To deal with this issue, Microsoft developed the .NET Standard - a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
You could use a custom updater. Here’s what I did for my .net core 3.1 C# projects:
dotnet-version-updater.js
:Version
tag, ex:The
dotnet-version-updater.js
is simply using a regex, so if theVersion
tag doesn’t exist, it won’t be able to bump the file and won’t create the Version tag. One improvment would be to makedotnet-version-updater.js
add theVersion
tag if it doesn’t exist.I hope that helps.
Hey! Thanks for the report. This has been asked for a few times (in slightly different ways), it’s a feature (support for any file/project type) that I’d love to get implemented and have started to work toward in #372