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!

  • Avira Anti-Virus doesn't like the ProGet 3.5.7 install

    proget
    2
    0 Votes
    2 Posts
    3 Views
    ?
    All of our installers are signed, our build process is isolated, and we do frequent network scans -- so it's definitely not a virus. If you want to verify it yourself, you're welcome to use a tool like .NET Reflector; it's just managed code and is not obfuscated in any way. It's just a self-contained SQL change script distribution package generated by our BuildMaster product. Still, every once in a while we get some part of the installer flagged by an AntiVirus scanner. Usually it's bmdbupdate.exe, since that does some "questionable-looking" things to an antivirus engine, such as embedding its dependency assemblies as resources. Please let them know about the false positive; the more people who do, the greater the chance they won't flag these in the future. Thanks for letting us know!
  • 0 Votes
    2 Posts
    63 Views
    ?
    It's not recommended to check-in the modified assemblyinfo.cs file. For a few reasons, including the one you identified: it causes issues with source control related to the build. But moreover, attributes in AssemblyInfo.cs are metadata more than code; in other platforms (like Java) these are always added as part of the build process.
  • Registering a bower package on ProGet using the curl command

    proget
    4
    0 Votes
    4 Posts
    11 Views
    ?
    Hi Dean, Sorry I continued trying and found out the problem was caused because I had to include the -k flag (for HTTPS) and to include the username and password in the URL. Problem solved. Thanks. Kevin
  • Upgrade from v3.3.3 to v4.6.4

    update buildmaster
    2
    0 Votes
    2 Posts
    4 Views
    ?
    As per email response: Try upgrading to 3.6.5 first, then to 4.6.4.
  • What are the limitations of ProGet FREE?

    proget
    2
    0 Votes
    2 Posts
    44 Views
    ?
    As of 3.5, these are the features not available in the free edition: Active Directory / LDAP Integration Filter Packages by Name & License Load Balancing & High Availability Granular Privileges & Security (scoping by individual feeds) MyGet Feed Sync
  • 0 Votes
    3 Posts
    5 Views
    ?
    Thank you for the cache tip. I've included -NoCache modifier to a command, and ProGet asked me about credentials.
  • Reconfigure ProGet with another SQL instance

    sql-server proget
    2
    0 Votes
    2 Posts
    5 Views
    ?
    You can just back-up the database, restore it on the new server, and edit the connection strings in the appSettings config files for the web and service.
  • Unable to run wsimport on wsdl

    buildmaster
    2
    0 Votes
    2 Posts
    313 Views
    ?
    I'm not sure what the tool is validating exactly, but after uploading the WSDL file to https://www.wsdl-analyzer.com, it said the document was valid. I am not super familiar with Java or any Java tools, but the same problem looks like it has occurred here: http://stackoverflow.com/questions/13499860/jax-ws-error-on-wsdl-file-error-resolving-component-sschema
  • Change variables in manual action

    buildmaster variables
    2
    0 Votes
    2 Posts
    0 Views
    ?
    Off the top of my head, that seems like the best/easiest way. I think what we need to add is the ability to mark a manual action "incomplete" instead of forcing the user to cancel the deployment... that should make it easy then to create a Predicate that checks whether all manual actions were marked complete. I'll add these as feature requests for the time being, but am not sure when they will be shipped since your scenario should work fine for now.
  • Can't create ProGet Deploy feed

    proget
    2
    0 Votes
    2 Posts
    3 Views
    ?
    This should be fixed in v4.5.7 (select NuGet or Chocolatey feed as the first option, and you can change the dropdown afterward). Note, we are considering deprecating the Deploy functionality in the next major version, so if you're looking to get started with deployment you should use BuildMaster instead.
  • Upgrade path from v3.3.3 to v4.6.5

    buildmaster
    2
    0 Votes
    2 Posts
    1 Views
    ?
    There is no export functionality in that version, the recommended path is to just use the installer. What do you mean when you say it’s “too risky” to upgrade? Traditionally, only a few upgrades that we’re aware of have failed when upgrading from any version, and those were mostly due to unsupported database changes made by DBAs, which we can usually help resolved based on the error messages. Have you tested an upgrade by backing up and restoring the database, then running the installer against it?
  • 0 Votes
    5 Posts
    28 Views
    ?
    Hi Dean, I ruled out the proxy since I know I'm getting to the server; I can see it in my IIS logs. What I did notice, is that when I tried to load the package from FeedB into FeedA again, the user the ProGet web app was using to authenticate was DOMAIN\MACHINENAME$ (e.g., NETWORK SERVICE). This account didn't have any rights to access ProGet, so the attempt was failing. My ProGet instance is hosted in IIS and the app pool was running using the application pool ID, so I first tried allowing DOMAIN\MACHINENAME$ access to the feed, but ProGet ignored that principal (I'm guessing you don't allow computer accounts to be added from AD). Next, since I have multiple service accounts lying around, I made the following configuration changes: Granted access to the service account to view FeedB in ProGet's Privileges & Roles Granted the service account access to the ProGet database, and put the user in the ProGetUser_Role role Changed the app pool of the site that the ProGet web app runs under to use the service account credentials Added my service account to the IIS_IUSRS group When I tried loading the package again, it worked correctly. So, the root cause here was that when ProGet is hosted in IIS using a built-in account that translates to DOMAIN\MACHINENAME$, you have to do some additional configuration to grant ProGet access to itself. Although this solved the problem, it would be handy to allow the specification of built-in accounts like BUILTIN\NETWORK SERVICE, or use the computer principal from AD such as DOMAIN\MACHINENAME$ when assigning privileges. Thanks!
  • Variables in Create New Release Action

    buildmaster releases variables actions
    6
    0 Votes
    6 Posts
    4 Views
    ?
    FYI- 4.6.4 has been released, and this fix was included.
  • HTML in HTTP POST action form parameter?

    http buildmaster
    4
    0 Votes
    4 Posts
    18 Views
    ?
    This action has been updated in 4.6.4, which is now available. We've added a more friendly editor for form data and some better documentation in the action. The UI will probably still be refined in a future release, but it should be more intuitive now.
  • Purge Artifact API does not see to work

    buildmaster
    3
    0 Votes
    3 Posts
    1 Views
    ?
    I'll have to check with the dev team, but I think that was never intended to be part of the public API, since as you discovered, it takes a little application logic to clean up the actual artifact files as well. We originally had plans to add something to the service that would occasionally scan for orphaned artifacts on disk, but those were postponed. Your workaround should be safe enough, but it's not something we can add, as we can't rely on the database being on a server that can access the artifact library, or even that it's running as a user account with sufficient privileges. At some point, we'll likely reevaluate/extend our SOAP/JSON API's and allow them to do higher-level tasks like this, but there's no immediate plans for this.
  • ODataAdapterBase

    proget sdk
    2
    0 Votes
    2 Posts
    5 Views
    ?
    Unfortunately not, but this would be a great place to post it if you are able to get it working! :) But before you do that, check under Advanced Settings to see if modifying the Base Odata URL field will solve the problem you're looking for.
  • Corrupt Packages when restoring

    proget teamcity
    2
    0 Votes
    2 Posts
    11 Views
    ?
    I don't think you're doing anything wrong, but based on this, and your previous error... it sounds like you've got some server/network oddities. That could be any one of a THOUSAND things, but it's definitely not ProGet nor the NuGet clients. So, I'd suggest to put some wireshark or fiddler monitoring in between to see exactly what's happening, where they are coming from, and what the actual responses are.
  • 404 during restore

    teamcity proget nuget
    6
    0 Votes
    6 Posts
    21 Views
    ?
    Thanks Alana. I upgraded to Proget v3.5.6 and updated the timeout period for the nuget feed source to 30s. Now I am no longer getting that issue but I am getting a different one. I logged it as a separate question: http://inedo.com/support/questions/2969
  • 0 Votes
    24 Posts
    188 Views
    ?
    Ah, I see; please note that we do not support v1 feeds (they were already obsolete when we build ProGet in 2012) and we have no intention to. Suggest you push packages from TeamCity to ProGet instead.
  • 0 Votes
    6 Posts
    116 Views
    ?
    So upon doing a fiddler trace and seeing nothing coming through when I used nuget.exe against our internal repo, I tried it against nuget.org and lo and behold that failed too. It turns out for prior things I had HTTP_PROXY and HTTPS_PROXY environment variables set and nuget.exe didn't like it. This carried over to Visual Studio as well. After removing those variables everything started working again. So, sorry this wasn't ProGet at all (thankfully).
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation