3,155 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
65
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 ...
0
votes
0
answers
69
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 ...
2
votes
1
answer
56
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 ...
2
votes
1
answer
133
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....
1
vote
1
answer
93
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, ...
0
votes
0
answers
60
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 ...
0
votes
0
answers
34
views
How to handle semantic versioning when cloud and on-prem branches diverge?
I'm working on a project that maintains two active release branches:
10.0.x → for on-prem deployments
10.1.x → for cloud deployments
We have an automated system that merges changes from the on-prem ...
0
votes
0
answers
53
views
.NET multi-targeted NuGet package: only .NET 4.5 DLL gets correct version from pipeline, .NET Standard 2.0 keeps default
I'm creating a NuGet package in an Azure DevOps pipeline from a multi-targeted .NET library that targets .NET Standard 2.0 and .NET 4.5. The pipeline sets the version dynamically using a variable (...
0
votes
2
answers
139
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 ...
0
votes
1
answer
47
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 ...
0
votes
2
answers
362
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 ...
-2
votes
1
answer
91
views
Doesn't package-lock.json lose its purpose if we all use package-lock.json?
This is a follow-up question to an answer of a similar question asking whether package-lock.json is redundant if we only specify exact versions in package.json.
The answer states that package-lock....
0
votes
1
answer
190
views
How do I get unpinned major and minor version tags for my repo using release-please?
I am using release please to generate releases and it's making tags like v3.2.1
However, I am finding it tedious to have to manually update the versions with every bugfix. Is it possible to get ...
1
vote
1
answer
317
views
How do I create major and minor tags for components using release-please?
I have a monorepo with multiple components that I would like to version separately with unpinned major and minor versions.
My directory is like
packages/
package1/
package2/
and each package is ...
1
vote
1
answer
151
views
Getting unexpected ApplicationVersion and ProductVersion in Visual Studio project
A project I'm currently working on in Visual Studio 2022 was originally written for .NET 6 and I have upgraded it to .NET 8.0. Previously the result from Application.ProductVersion gave the expected ...