Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. Tags
    3. proget
    Log in to post

    • ?

      FR: Add Manual and Automatic Tags to Imported (and all) Packages
      Support • proget • • Kristofer Linnestjerna  

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • ?

      Document /Log parameter
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      3
      Views

      ?

      Yes, good catch; I noticed that it was missing too when writing the same exact docs for the Otter Silent Installation Guide.
    • ?

      Nuget path on network share
      Support • proget network • • Kristofer Linnestjerna  

      6
      0
      Votes
      6
      Posts
      58
      Views

      ?

      Note that you will need to specify the "Urls" argument when running the service, to indicate which url you intend to bind to.
    • ?

      Visual Studio Source Server with Async/Await method debugging
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      There's absolutely nothing on ProGet's end that would cause symbols/source to sometimes work, and sometimes not in this manner. Async implementation in C# is very complicated and brand new, whereas source/symbols, OTOH are a 20+ year-old technology, and extremely fragile. So, this is just a bug in VS2015, where it's not loading a remote symbol. You can verify this using something like Fiddler or Wireshark, and then see that it's not even attempting to load symbols with the async debug. Please do send this to Microsoft, so they can fix it in a future update.
    • ?

      Pull From GitHub Repository
      Support • proget • • Kristofer Linnestjerna  

      3
      0
      Votes
      3
      Posts
      6
      Views

      ?

      I kept saying it couldn't find the package. Would you provide me the solution how I can go by getting this to work in Proget env? Thanks!
    • ?

      OData feeds
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      18
      Views

      ?

      That particular endpoint is not listed in the metadata for the NuGet API (https://www.nuget.org/api/v2/$metadata) so it is not implemented in ProGet. We may be able to add that at some point, but the best bet for paket would be to query the versions using the standard Packages endpoint, i.e.: /Packages()?$filter=Id eq 'packageName'&$select=Version
    • ?

      RPM Support
      Support • proget linux • • Kristofer Linnestjerna  

      21
      0
      Votes
      21
      Posts
      175
      Views

      atripp

      FYI; this has been released already as a main feed type, no longer a pre-release :) I'm going to lock the thread from here to make it easier to submit new issues if anyone has them
    • ?

      Packages() vs FindPackagesById() behavior on forwarded streams (Remote Repository)
      Support • proget nuget packages • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      49
      Views

      ?

      I was only able to reproduce the difference in packages returned when the casing of the id was different than the actual ID of the package, i.e. for jQuery: http://proget/nuget/Default/Packages?$filter=Id eq 'jquery' and http://proget/nuget/Default/FindPackagesById()?id='jquery' The Packages endpoint does not return remote packages because searching in this manner is case-sensitive, while it is not for FindPackagesById. The solution seems to be always use FindPackagesById, or use /Packages?$filter=tolower(Id) eq 'jquery'.
    • ?

      Packages stored on network share
      Support • proget nuget network • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      17
      Views

      ?

      ProGet's remote connectors only apply to NuGet endpoints, and will not connect to UNC paths like Visual Studio does. You can however simply create another feed, import all the packages in the UNC path into it, then set the feed storage path to that UNC path.
    • ?

      Authentication using dnx rc1-16231
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      This is a known issue in the NuGet client v3.2; it does not support integrated authentication (i.e. 401 challenges). This is supposed to be resolved in NuGet v3.3.
    • ?

      Project.json support
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      Yes, but that's because project.json is used client-side; ProGet is really only sent the package id and version, not the project file.
    • ?

      After update proget asking for username and password
      Support • proget security • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      5
      Views

      ?

      I would suggest to reset your admin password using the ProGet.Service.Exe, there is an option in there. And then try to set-up LDAP again.
    • ?

      Source Server not working when "Strip symbol files" option is turned off
      Support • proget symbols visual-studio source • • Kristofer Linnestjerna  

      7
      0
      Votes
      7
      Posts
      45
      Views

      ?

      I see, while that works for some projects, not all of our projects uses a build server which complicates the process of deployment. Thanks
    • J

      Connect ProGet to openLDAP
      Support • proget ldap • • jneuharth_9094  

      4
      0
      Votes
      4
      Posts
      15
      Views

      ?

      We don't have a tutorial or guide on creating one, but it basically just involves making a UserDirectory class, and then implementing the methods. Note that in BuildMaster 4.9, we changed the interfaces a bit to be more inline with ProGet. You can use a disassembly tool to see how the current ones work, or request the source.
    • ?

      Can we transfer a license from one server to another?
      Support • proget proget-installation licensing • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      9
      Views

      ?

      Yes, but note ProGet is licensed for each server it's installed on, so if you keep both servers active, then you'll need an additional license.
    • ?

      Debugging the Package with PDB
      Support • proget • • Kristofer Linnestjerna  

      4
      0
      Votes
      4
      Posts
      0
      Views

      ?

      It's only a UI issue that's preventing the checkbox from being displayed. Here is the workaround click on the Configure Symbol Server link check "Enable symbol and source server for this feed" uncheck "Strip symbol files from packages downloaded from this feed" uncheck "Enable symbol and source server for this feed" Save
    • ?

      Restricting access for anon user
      Support • proget security • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      12
      Views

      ?

      You can either: not grant Anonymous any privileges (Anonymous does not belong to any groups so it doesn't have any by default) specifically add a Restriction to the Administrator role for Anonymous (this actually means Anonymous is restricted from performing any tasks that an Administrator could do, which is all of them)
    • ?

      How can I programatically detect that a new nuget package has been pushed
      Support • proget • • Kristofer Linnestjerna  

      3
      0
      Votes
      3
      Posts
      0
      Views

      ?

      Maybe you want to write an Extension for ProGet that is invoked whenever a apackage is pushed to a certain feed. Once triggered, you cando whatever you need to do in your extension.
    • ?

      Unable to access nuget feed from Visual Studio
      Support • proget net • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      23
      Views

      ?

      Hi Matt, I would suggest to attach fiddler, and see what's going on. That XML you pasted is what a NuGet endpoint looks like; from there you can append /Packages to the URL, and see more of the exposed API.
    • ?

      Do you offer ProGet as "Software as a Service" or is it strictly on-premiss install?
      Support • proget • • Kristofer Linnestjerna  

      2
      0
      Votes
      2
      Posts
      6
      Views

      ?

      ProGet is currently on-prem only, though you could install an instance in the cloud quite easily (a lot of people do that). We will likely have a SaaS/hosted version in middle of next year.
    • 1
    • 2
    • 54
    • 55
    • 56
    • 57
    • 58
    • 79
    • 80
    • 56 / 80