3,154 questions
Score of 0
0 answers
42 views
Build/patch autoincrement for C# library nuget package
I have this C# .csproj project file:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8.0;net48</TargetFrameworks>
<...
Best practices
1
vote
5
replies
144
views
Semantic versioning for internal npm package
We have:
Main project X (Angular app)
Helper package P (pure JavaScript internal package)
Package P is hosted on our private npm registry and consumed by project X through package.json.
Our releases ...
Best practices
0
votes
0
replies
55
views
How to organize Android gradle project with build-Variants based on libs.versions.toml
I just discovered the new gradle version_catalogs
Is it possible to create build-Variants based on libs.versions.toml ?
build-Variant ANDROID5 that should be compatible with android-5 (api-21)
...
Best practices
0
votes
4
replies
70
views
What types of changes call for project version change?
Under what circumstances should one increment the artifact version — and what changes do not require that?
Here are three scenarios.
They could move the DB to another server. Now, there's a "fix&...
Score of 0
1 answer
81 views
Modifying files during an Azure DevOps Build Validation pipeline keeps triggering re-runs
I have a repository that implements automatic versioning using commitizen. Handling version bumps after merging to main is trivial, I have a simple pipeline to perform the cz bump and then push that ...
Best practices
1
vote
3
replies
126
views
Is Semantic Versioning (SemVer) actually useful for an internal, single-instance backend API?
I am debating whether to adopt SemVer (Major.Minor.Patch) for our internal backend API. While it is the industry standard for libraries and public APIs, I have doubts about its practicality in a ...
Score of 0
1 answer
79 views
Per user installation: get software version per user
I have a Visual Studio setup project together with a C# bootstrapper. The app usually was installed system-wide and requires admin permissions to be started. The new version uninstalls the old version ...
Score of 0
0 answers
123 views
How to show a single version dropdown per product in Docusaurus multi-product documentation?
I’m building documentation for multiple products on a single Docusaurus 3 website. Each product has its own versions, and I want users to be able to select a product first, then optionally select a ...
Score of 2
1 answer
79 views
Switching to semantic versioning causes MSVC linker to throw an LNK1117 error
An open-source project I contribute to recently decided to switch to the semantic versioning scheme. However, changing the version number from 0.16 to 0.16.0 under Configuration Properties > Linker ...
Score of 2
1 answer
186 views
Why am I unable to load XAML resources in WPF application if they are placed in a versioned dll
I am using Visual Studio 2022 and .NET 6, WPF.
I have an application where I separated out all of my controls, styles, colors (all XAML resources) into a separate dll for sharing named Presentation....
Score of 1
1 answer
132 views
How do I specify the correct record dependency version for my Flutter app in VSCode?
I want the app to record the user's voice and send it to a CSV file (Google Sheets). I have it working for user input so far. In my "pubspec.yaml" file, I've defined the record, ...
Score of 0
0 answers
74 views
How to handle version information in branches with gitlab to always take the parent information?
So we have been using TFS and are converting over to gitlab. The codebase version information is stored in a version.cs
[assembly: AssemblyInformationalVersion("15.0.0.3 development")]
If ...
Score of 0
2 answers
157 views
How to retrieve the latest version of records for each time period in SQL when there are multiple versions of the same period?
Community!
I have a table with periods (from_date and to_date columns) and associated values, and I need to retrieve the latest records. The complication is that there are multiple versions of the ...
Score of 0
1 answer
66 views
Centralize maven project version to ease branching strategy
I have a maven based multi-module project. Also we manage multiple parallel releases for different clients for which we obviously need long lived branches. To all these branches, we give assign unique ...
Score of 0
2 answers
501 views
How to set the version of my code only in the pom.xml
I am updating an old code and I need to set the version in the pom.xml using the version tag and then from there set different files with the version:
Manifest file when building the jar
I need to ...