Welcome to the Inedo Forums! Check out the Forums Guide for help getting started.

If you are experiencing any issues with the forum software, please visit the Contact Form on our website and let us know!

  • 0 Votes
    4 Posts
    49 Views
    ?
    After upgrading both the ProGet VM and our (potentially underpowered) Active Directory VM to more cores/more RAM, we seem to have worked around the issue. Thanks for the tips!
  • Git Raft not working after upgrading to 1.2.0 (Build 17)

    git otter
    2
    0 Votes
    2 Posts
    6 Views
    ?
    Looks like there was a packaging issue with the 1.2.0 installer. We'll get a fixed installer posted right away, but you can fix in the meantime by going to the Otter install directory (default is Program Files\Otter) and copying the lib and NativeBinaries directories from the Service directory to the Web\bin directory.
  • No results returned from querying feed from a dotnet core project

    proget feeds
    2
    0 Votes
    2 Posts
    10 Views
    ?
    Can you share both the .nuspec and packages.config file? That would help quite a bit.
  • APIKeys per user

    security proget
    2
    0 Votes
    2 Posts
    3 Views
    ?
    ProGet is designed for enterprise/organizational package management, and this is simply not a requirement or desired at all in those environments. So, it's highly unlikely we will add first-class support for this. Some organizations have created custom user directories for this purpose, which is possible with the SDK. Note: if you are a component company, you may want to contact us to see about partnering. We work with a handful of component vendors who use ProGet as a "back/middle-end" and then have a very simple customer-facing front-end on top of ProGet that integrates with their CRM, authentication, etc.
  • Ability to replace newsfeed with another source

    integrations proget
    2
    0 Votes
    2 Posts
    9 Views
    ?
    This is not currently supported. If you are a component company, you may want to contact us to see about partnering. We work with a handful of component vendors who use ProGet as a "back/middle-end" and then have a very simple customer-facing front-end on top of ProGet that integrates with their CRM, authentication, etc.
  • Symbols for libraries (.lib)

    proget
    4
    0 Votes
    4 Posts
    2 Views
    ?
    Has .lib files been tested as yet? We are experiencing the same problem with the source server. Can we please get confirmation if this is supported?
  • Can't commincate with Windows agent

    agents windows buildmaster
    4
    0 Votes
    4 Posts
    54 Views
    ?
    Hi, Version number for the Windows agent shows 34.0.0.1 in add/remove programs. '#justsaying' David
  • Transfer to Linux failing

    buildmaster
    4
    0 Votes
    4 Posts
    3 Views
    ?
    Well, we are closer at least. Yes, that does appear to be a regression - fortunately all it really does is wrap the "zip" CLI tool, so as you've discovered you can work around with Exec pretty easily. Regardless, we'll be sure to have the zip operations fixed for Linux in the next update.
  • Product price

    buildmaster
    4
    0 Votes
    4 Posts
    2 Views
    ?
    BuildMaster is licensed by users, so you can have as many servers as you'd like.
  • Enable Symbol/Source Server setting is missing

    proget nuget symbols
    2
    0 Votes
    2 Posts
    2 Views
    ?
    This was a regression in 4.1.2, but it is fixed now in 4.1.3.
  • NPM warnings trigger plan failure

    npm deployment-plans buildmaster
    3
    0 Votes
    3 Posts
    13 Views
    ?
    Aha! That's the ticket -- setting ErrorOutputLogLevel to "Warning" is just what I was looking for. For some reason I had thought the option would do the inverse (e.g. elevate warnings to errors). Thanks a ton for the help, -J
  • 5.1.1 plan execution issues

    buildmaster
    12
    0 Votes
    12 Posts
    16 Views
    ?
    Hi, DOH! Yes, thanks, that's it. I'm blaming the person that wrote the original script I copied :-) Thanks again for your help. David
  • NPM feed and dependencies

    packages npm proget
    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
  • Deploy an artifact from another application

    artifacts buildmaster
    3
    0 Votes
    3 Posts
    9 Views
    ?
    Thank you very much! The 'Imported Deployables" functionality worked like a charm :-) Regards, Francesc
  • Using "TFS" extension with TFS 2012

    buildmaster tfs
    4
    0 Votes
    4 Posts
    37 Views
    ?
    i have 2015 team explored installed but not succeeded in same schenario.
  • ProGet & Nuget 3.4 Breaking Changes - Error 500

    proget
    1
    0 Votes
    1 Posts
    2 Views
    No one has replied
  • Active Directory Authentication

    authentication proget
    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...
  • Adding a Server to Server Groups

    buildmaster deployments
    3
    0 Votes
    3 Posts
    7 Views
    ?
    Thanks for your response, Alana. Can you elaborate a little bit on the API commands you would leverage in this instance? I had considered that before, but I'd be curious to know how you'd approach this.
  • Proget Errors - NPM (scoped packages?)

    proget
    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.
  • 0 Votes
    5 Posts
    11 Views
    ?
    Well be releasing BuildMaster 5.1 in just a bit (later today), which will have these operations.
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation