How to use version: 10.1.3.10-1545tr103f5d format in chocolatey nuspec version. I want to include git commit id with chocolatey package version.
How to use this version: 10.1.3.10-1545tr103f5d format in chocolatey nuspec version
102 views Asked by Avinash Jaiswal At
1
There are 1 answers
Related Questions in NUGET-PACKAGE
- Getting error "The located assembly's manifest definition does not match the assembly reference"
- How can I copy plug-in DLLs from a sub folder using NuGet
- How to add nuget package for offline tfs build task
- How to resolve NuGet Transitive Packages with vulnerabilities
- How install MathNet.Symbolics in ASP.NET 4.8
- NuGet package doesn't copy file to destination project
- Azure Devops pipeline to build .NET Framework Artifact multiple projects
- An error occurred while trying to restore packages. Unable to find version 'x.x.xxxx.xxx' of Moq
- Fail to load package dependency at runtime
- Compatibility Problem after Update from Xamarin.Forms to .Net MAUI
- Increasing the Lifespan of OTP Codes in C# Using PureOtp Library
- Project with referenced nuget package is not able to find files
- .net Unit Test Discovery through nuget package
- Could not load file or assembly 'System.Runtime, when creating nuget spec based on the assembly
- Install local NuGet package in Rider
Related Questions in CHOCOLATEY
- Catch 22 installing Windows nuget packages, using Choco, from J-frog repo, requiring credentials from Vault
- Ansible VS BuiltTools 2022 With workloads
- Install multiple MSI Installer in with a single chocolatey package
- Install dotnet sdk latest release of a specific major Version
- PowerShell, How to check for an installed Chocolatey package
- DNEG xStudio Build unable to install packages
- What is the purpose of the .json file with version numbers that is included in chocolatey packages?
- Chocolatey package will not install rabbitmq and erlang as dependencies
- Installing Visual Studio through ansible with the win_chocolatey module ignores version and package parameters
- Chocolatey upgrade dbeaver to latest version
- How do I properly set up a Makefile for NASM x86 for GNU make on Windows? (Solved - file files were not in the directory I though they were)
- I am trying to install Haskell using Chocolatey and had an 'error while running C:\ProgramData\chocolatey\lib\cabal\tools\chocolateyInstall.ps1'
- Conditional dependencies best practice
- Using nginx with chocolatey simple server on IIS doesnt install/download package from choco.example.com/chocolatey
- How to use Visual Studio 2022 build tools for NODE JS chocolatey
Related Questions in CHOCO
- Ansible VS BuiltTools 2022 With workloads
- How can I install snappy by choco?
- How do I model an interval variable with an intensity function on Choco Solver?
- Using nginx with chocolatey simple server on IIS doesnt install/download package from choco.example.com/chocolatey
- Unable to install ASP.NET MVC 3 using chocolatey
- How do I remove a choco version constraint that I previously added?
- Nextjs Bug after downgrading node and then reinstalling back to the original version of node
- Minimize error in average of priced resource assignments
- Installation unsuccessful: Chocolatey installation on VS Code via CMD / Power Shell
- Creating chocolatey packages for plug-ins of "large" applications
- Unable to retrieve Flare VM packages from myget via Chocolatey on Windows 10
- How to tell Manim to write LaTeX using MikTeX instead TinyTeX?
- How to use this version: 10.1.3.10-1545tr103f5d format in chocolatey nuspec version
- Installing FreeRDP using chocolatey gives me no executable to run?
- How to create local cache for choco package manager
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Popular Tags
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Simply put, you can't.
Chocolatey uses a non-strict semantic version numbering strategy, meaning that it will support 4 part version numbers, but you can't have a structure that is
major.minor.build.build-numberWhat you could do is something like the following:
Notice the introduction of the
gafter the-. As long as you have a non-digit character here, you should be able to complete thechoco packcommand.