3,156 questions
0
votes
1
answer
60
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 ...
2
votes
1
answer
45
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 ...
1
vote
1
answer
76
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
33
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
2
answers
133
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
2
answers
338
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 ...
0
votes
1
answer
178
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 ...
0
votes
1
answer
128
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 ...
-1
votes
1
answer
38
views
AWS S3 bucket versioning
Scenario
1/ writer would produce a new version of a csv file every few hours
2/ reader, in another application, would read the contents of csv file
We want to ensure that reader won't be affected when ...
0
votes
1
answer
93
views
How does Nuget obtain a valid version of a referenced library?
I have two libraries that I use in several projects. They are MCData.vA.B.C.dll and MCConfig.vA.B.C.dll. The vA.B.C values reflect the assembly version of the released build. The nuspec unique package ...
0
votes
0
answers
55
views
How can I use the version information from appsettings.json in client-side JavaScript within a .NET Web API application?
In my .NET Web API project, I store the version number of my JavaScript file in appsettings.json like this:
{
"JSSettings": {
"Version": "1.0.0"
}
}
The version ...
0
votes
1
answer
432
views
GitVersion doesn't use the "label" string when on master
I've recently upgraded to GitVersion 6.0.x (due to various other issues) and now I can't seem to get my master builds to get versioned correctly. I want the master builds to be named "-alpha"...
1
vote
1
answer
181
views
Encore.ts doesn't allow to choose from other templates than Uptime monitor
I am trying to create an empty app with encore.ts but when I run the command encore app create itonly gives me the Uptime Monitor template option to choose.
I am on the latest encore version - v1.42.1....
1
vote
1
answer
76
views
Incremental add with DVC tracked directories
While I know that the main use case of DVC comes after the "data engineering" parts, I have written something that works quite nice for me but is missing one feature.
So nightly i run a ...
1
vote
1
answer
1k
views
Increment Azure Pipelines version number with commits
I have an Azure DevOps pipeline that references two repos:
The code repo, which contains my application code
The config repo, which contains my environment variable config files.
The idea is that I ...
-1
votes
1
answer
88
views
change from 4 digit version in play store to 3
I am currently creating a new app in react native with Expo to replace an existing app in app- and play store.
The issue im having is that the current version of the app published to play store has ...
0
votes
0
answers
49
views
How to package and maintain helm charts for both open and closed beta?
I manage some Kubernetes CRDs and package them in Helm Charts for managing the different versions. Currently we only have one Helm Chart version that we deploy to production which is v1.0.0 and any ...
0
votes
1
answer
37
views
For an ASP.NET WEB FORMS web application, check if the web server has the latest version for any specific aspx/ascx pages on any redundant web server
Our team works in a project where the customer manually deploys (copy/paste) the updated release we provide (ascx, aspx, dll, etc.) for the ASP.NET WEB FORMS web application we are developing.
...
1
vote
2
answers
570
views
Azure DevOps automatic versioning when it comes to feature branches
This is the way I'm doing my versioning right now
variables:
major: '1'
minor: '1'
revision: $[counter(variables['minor'], 1)] # This will get reset every time minor gets bumped.
${{ if eq( ...
1
vote
0
answers
54
views
Git error message There is no -F option ("less --help" for help)
git version 2.45.0.windows.1
Windows 10 Enterprise
I have recently experienced a weird behaviour with my git installation.
Suddenly i got git not recognised as external or internal command when keying ...
2
votes
1
answer
407
views
How to get my application to update when a new version is detected within my repository on github?
Background
For my job, I have made a windows .exe which is a python pyqt5 application that my analysts can use for their work. What I am trying to do is set up a workflow with the help of git that ...
2
votes
1
answer
259
views
Invalid Nuget Package Version in CI/CD
We are getting the following error when trying to publish our package after successfully building it.
/usr/share/dotnet/sdk/8.0.204/Sdks/Microsoft.NET.Sdk/targets/Microsoft.NET.GenerateAssemblyInfo....
0
votes
1
answer
272
views
How to compare Word docs versions directly inside Azure Devops without having to download both versions locally?
For my internship, I need to find an efficient way to compare docs like you would with code versions, directly inside azure devops if possible. Converting Word to Markdown could also be a solution but ...
1
vote
1
answer
196
views
Flutter - How to get the build number of the app?
I understand the usage of package_info_plus package and I am able to get the version number correctly.
The issue here is that the Build number of our application is decided by Github Runner on release ...
1
vote
1
answer
337
views
Sharing dependency version with NPM workspaces in monorepo
We switched to NPM workspaces to share source code. Works fine.
We want to go further and utilize NPM workspaces to share dependencies. Like every WEB app in monorepo should be built with Next.js v14....