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 best solutions below
Related Questions in NUGET-PACKAGE
- ASP.NET 5 Class Library - Nuget package Web.Config transform
- How to add Project Reference in asp.net 5 application
- Nexus Nuget Repository List Version Information
- Manage NugetPackage for Solution can't find any online packages
- How to create a powershell script that triggers a NuGet Update-Package –reinstall?
- Regenerate NuGet repositories.config manually
- Xamarin adding NuGet package
- Guarantee same version of nuget packages
- How do I host Nuget Gallery in my own Azure website?
- how to create nuspec file in specific folder?
- How can I clear the NuGet package cache using the command line?
- drag and drop metro control to windows form does not work in visual studio 2013
- What is different between nuget.org and "Microsoft and .NET" in Online Section of Manage Nuget Packages
- pushing nugetGallery to windows azure website getting error: The OutputPath property is not set for project 'NuGetGallery.csproj'
- Visual Studio 2010 NuGet package manager console: Nothing happens on pressing enter
Related Questions in CHOCOLATEY
- Why is PowerShell "not recognized" when installing Chocolatey?
- Error installing Chocolatey via Ansible on Windows
- How do I install Chocolatey packages behind a proxy on Windows 2012 R2 Core?
- Add Custom Argument Completer for Cmdlet?
- How does Chocolatey know which packages are installed locally?
- Why are nose tests leaving orphaned PhantomJS processes on Windows 8?
- Can't run iex in Windows command prompt or git bash
- Run chef block only if chocolatey is installing package
- Chocolatey from where does it find the package
- Redis on windows server: no config file specified
- Program for Chocolatey package not have silent installation mode
- Powershell Item-Property not expanded when stored to an array with Get-ChildItem
- Ruby and RubyDev under Chocolately on Windows
- Proper usage of Chocolatey (package update / version management)
- Choosing destination when installing a chocolatey packages with Puppet
Related Questions in CHOCO
- ExceptionInInitializerError in Choco 3
- Choco 4: Constrain domain of variable to equal a set of values
- How to model special set constraints using Choco solver framework for Java
- Choco Sat Formulation
- Nextjs Bug after downgrading node and then reinstalling back to the original version of node
- How do I remove a choco version constraint that I previously added?
- Unable to install ASP.NET MVC 3 using chocolatey
- 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
- " choco install visualstudio2017-workload-vctools " Fails Error: The install of visualstudio2017-workload-vctools was NOT successful
- Choco-solver IntVar declaration : How to declare an IntVar with two(or more) boundedDomain?
- conda create environment command gives 'Found conflicts! Looking for incompatible packages.'
- How can i call cpprofiler in choco-solver for contrainst programming profiling
- installation problem - nodejs-lts (exited 1603) - Error while running 'C:\ProgramData\chocolatey\lib\nodejs-lts\tools\chocolateyinstall.ps1'
- What are all the duplicate .install packages in chocolatey package manager?
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)
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?
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.