Navigation

    Inedo Community Forums

    Forums

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

    • ?

      Publishing from Nuget Package Explorer
      Support • proget • • Jens Brejner  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      NPE has several bugs that prevent it from being used in many environments and seemingly basic scenarios, including this bug. Unfortunately the NPE is no longer maintained, and hasn't been changed in years, so it's unlikely this will ever be fixed. There is absolutely nothing we can do about it, as it's a client bug.
    • ?

      FR: Be Able to Configure Individual Package Meta Data Display
      Support • proget • • Jens Brejner  

      4
      0
      Votes
      4
      Posts
      1
      Views

      ?

      If you look at any package detail page on nuget.org or chocolatey.org they show "Authors" and "Owners" (packager) and in the sidebar they show links for "Software Site", "Software License". If there is an icon link in the package, that icon is actually displayed (in gallery as well as detail page). Their "tags" are also clickable to search by tag. It would be nice for Proget to be on parity with the Nuget Gallery as that is the defacto user experience. A bit more value add would be to allow me to create custom elements in .nuspec and somewhere on ProGet indicate if they display as either a main body item or a link on the left hand bar. These items would improve the browsing experience to help make it more useful as a package catalog.
    • ?

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

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • ?

      Document /Log parameter
      Support • proget • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      2
      0
      Votes
      2
      Posts
      10
      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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 • • Jens Brejner  

      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.
    • 1
    • 2
    • 54
    • 55
    • 56
    • 57
    • 58
    • 79
    • 80
    • 56 / 80