Navigation

    Inedo Community Forums

    Forums

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

    • ?

      Jenkins integration
      Support • proget jenkins • • Hugot Benjamin  

      6
      0
      Votes
      6
      Posts
      26
      Views

      ?

      The Jenkins / ProGet Plugin has been updated to Version 0.3 with the following changes: Expand variable correctly Some basic validation on the version number If you update, then it should work!
    • ?

      Authentication and Publish Powershell Modules to Powershell Feed
      Support • proget authentication powershell • • Hugot Benjamin  

      4
      0
      Votes
      4
      Posts
      122
      Views

      ?

      i updated to PowerShellGet 1.1.1.0 and it solved my issues. Release Notes PowerShellCore support Security enhancements including the enforcement of catalog-signed modules during installation - Authenticated Repository support Proxy Authentication support Responses to a number of user requests and issues
    • ?

      Enable Symbol/Source Server setting is missing
      Support • proget nuget symbols • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      This was a regression in 4.1.2, but it is fixed now in 4.1.3.
    • S

      NPM feed and dependencies
      Support • proget npm packages • • stijn.peeters.external_8202  

      3
      0
      Votes
      3
      Posts
      24
      Views

      ?

      angular-cli gave me problems. It tries to retrieve dependent packages from https://registry.npmjs.org. ( https urls don't works on our dev pc's) At the moment I also configured the server with the feed as my proxy server, so at least that traffic passes over this server for all package handling. (I also have github and such) Tnx for any info you can provide Stijn
    • ?

      ProGet & Nuget 3.4 Breaking Changes - Error 500
      Support • proget • • Hugot Benjamin  

      1
      0
      Votes
      1
      Posts
      2
      Views

      No one has replied

    • ?

      No results returned from querying feed from a dotnet core project
      Support • proget feeds • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      10
      Views

      ?

      Can you share both the .nuspec and packages.config file? That would help quite a bit.
    • J

      What happened to the Deployment feed type?
      Support • proget feeds deployment • • jstarbird_7831  

      7
      0
      Votes
      7
      Posts
      11
      Views

      J

      Sorry for a late follow up on this. So one place where this solution falls apart is that your Jenkins add-on for BuildMaster does not support the meta-tags in the version field.
    • ?

      DevOps
      Support • proget • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      It's hard to say where the issue lies, but I would suggest to attach ProGet to a proxy server like Fiddler, so you can watch the requests that are made to npm vs MyGet. Ideally, a request to ProGet or MyGet should look and behave the same as a request to npmjs.org. But npm is an undocumented protocol, and there are a lot of quirks, so oftentimes it doesn't.
    • ?

      Proget PowerShell feed: How to publish?
      Support • proget powershell • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      60
      Views

      ?

      With regards to my question above, I have found this blog article that has helped me: https://richardspowershellblog.wordpress.com/2015/01/04/creating-a-powershellget-repository/ It talks about Proget and using a Nuget feed type, but the same methodology applies using the Powershell feed type.
    • ?

      Expectations of npm server package availability
      Support • proget • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      0
      Views

      ?

      It's hard to say, there's also the possibility that it's a bug; please keep in mind the npm "protocol" is undocumented, and lot of odd quirks that vary from client version to version, so it's possible this particular package is constructed in a way that we didn't account for. In this situation, the best way to see what the problem is, use a tool like Fiddler or Wireshark, and see which specific query ProGet is responding differently to.
    • ?

      Proget Errors - NPM (scoped packages?)
      Support • proget • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      1
      Views

      ?

      Can you provide more information on how to reproduce this? Ideally, if you could attach Fiddler or similar to capture the specific query that is causing the error, that will help us repro.
    • ?

      Otter ProGe::ensure- package throws error
      Support • proget otter • • Hugot Benjamin  

      3
      0
      Votes
      3
      Posts
      6
      Views

      ?

      Thank you Alana, this makes sense. I was trying to use a NuGet feed type. This answers my question.
    • ?

      Active Directory Authentication
      Support • proget authentication • • Hugot Benjamin  

      4
      0
      Votes
      4
      Posts
      44
      Views

      ?

      Sorry on the slow reply; this is extremely difficult to debug, because it involves a very complex set-up and expertise in undocumented LDAP/AD/NETBIOS conventions, as you might imagine… The problem is that the underlying libraries are returning that useless “server not available” error when trying to lookup the NETBIOS doman name. Here is how that query is constructed. private string GetNetbiosDomainName(string dnsDomainName) { string netbiosDomainName = string.Empty; DirectoryEntry rootDSE = new DirectoryEntry(string.Format("LDAP://{0}/RootDSE", dnsDomainName)); string configurationNamingContext = rootDSE.Properties["configurationNamingContext"][0].ToString(); DirectoryEntry searchRoot = new DirectoryEntry("LDAP://cn=Partitions," + configurationNamingContext); DirectorySearcher searcher = new DirectorySearcher(searchRoot); searcher.SearchScope = SearchScope.OneLevel; searcher.PropertiesToLoad.Add("netbiosname"); searcher.Filter = string.Format("(&(objectcategory=Crossref)(dnsRoot={0})(netBIOSName=*))", dnsDomainName); SearchResult result = searcher.FindOne(); if (result != null) { netbiosDomainName = result.Properties["netbiosname"][0].ToString(); } return netbiosDomainName; } Basically, it’s trying to enumerate all partitions and try to locate the netbiosname property. This is important to do because sometimes a credential will be sent to ProGet in a NETBIOSNAME\username or username@NETBIOSNAME format. The failure could be happening in one of two places (where the Properties collection is accessed), but shouldn’t be happening in either. Any assistance in identifying this would be helpful. We could just ignore this error, and assume that that a failed NETBIOSNAME resolution means the domain name is always the same, but we'd prefer not to just ignore errors like this...
    • ?

      NuGet packages not being indexed when published during feedCleanup
      Support • proget nuget • • Hugot Benjamin  

      5
      0
      Votes
      5
      Posts
      34
      Views

      ?

      The feedCleanup makes sure the files on disk and metadata files in sync. It'd be fine to run weekly or disable. There are no additional settings available, but we may add something to mitigate this in the future; it's extremely rare, and it's quite complex to handle properly.
    • ?

      Not able to push packages
      Support • proget nuget • • Hugot Benjamin  

      1
      0
      Votes
      1
      Posts
      1
      Views

      No one has replied

    • ?

      Cannot restore package using ProGet feed with FindPackagesById()
      Support • proget nuget feeds • • Hugot Benjamin  

      3
      0
      Votes
      3
      Posts
      127
      Views

      ?

      Aha! Thank you! I didn't realize the feed wasn't at the root, since normal 'nuget push' and 'nuget install' commands worked with just the root URL as the '-Source' parameter. Only the 'nuget restore' failed.
    • ?

      Link universal package dependencies within feed
      Support • proget • • Hugot Benjamin  

      2
      0
      Votes
      2
      Posts
      2
      Views

      ?

      Thanks- we'll have both of these added in the next release, 4.1.1.
    • ?

      Universal package dependencies not showing
      Support • proget packages • • Hugot Benjamin  

      3
      0
      Votes
      3
      Posts
      10
      Views

      ?

      Awesome! I downloaded and verified this is fixed in 4.1 beta.
    • L

      Problems with minor upgrade from v3.6.1 to v3.8.6
      Support • proget proget-installation • • luke.duddridge_1525  

      3
      0
      Votes
      3
      Posts
      13
      Views

      L

      I have renamed the roles just incase, but as soon as I upgrade to 4 it appears I get knocked out of the necessary task groups. Your user account does not have the Admin_ConfigureProGet task. I also get the same message if I don't change the role names.
    • ?

      *.symbols.nupkg
      Support • proget • • Hugot Benjamin  

      1
      0
      Votes
      1
      Posts
      0
      Views

      No one has replied

    • 1
    • 2
    • 45
    • 46
    • 47
    • 48
    • 49
    • 79
    • 80
    • 47 / 80