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!

  • The status of the ProGet Package is always Drifted

    2
    0 Votes
    2 Posts
    3 Views
    ?
    What version of Otter are you using? This was fixed in a newer release, but it's possible it's a different case...
  • Forcing 32 bit powershell

    buildmaster powershell
    2
    0 Votes
    2 Posts
    6 Views
    ?
    BuildMaster runs the PowerShell scripts in-process, so it's not possible. The method you've identified (running a separat eprocess) is the best way to accomplish it I think.
  • How to download a nuget package with SDK api

    proget windows-sdk
    2
    0 Votes
    2 Posts
    16 Views
    ?
    To downlad a package, you'd need to use the feed-specific API (NuGet, npm, etc). The SDK is really only designed for building extensions.
  • License Activation

    proget linux
    3
    0 Votes
    3 Posts
    8 Views
    ?
    I ran into the same issue when trying to run image on docker on windows (in linux container of course). First thing that I tried was to turn off proxy server. After that, instead of seeing an "Activation completed" message, activation request never finished. In the end I restored original proxy settings (same as system), restarted docker image and activation went without any issue automatically after restart.
  • We can not get Integrated Security to work

    proget net
    2
    0 Votes
    2 Posts
    6 Views
    ?
    If you are getting a browser pop-up authentication (as opposed to a ProGet login screen), then it means Windows Integrated Authentication is not working. This is due to configuration of your server or domain. Unfortunately, this is performed by IIS/Windows (not ProGet), which means the request is never reaching our software; this means we can't provide any information about why it's not working. But this also means there are a lot of resources/articles you can find to give debugging on how to get it to work. I would suggest searches like, "Windows Integrated Authentication always authenticates" etc. Please post what you find!
  • Npm / Bower License White List

    proget
    2
    0 Votes
    2 Posts
    0 Views
    ?
    Currently the license filtering is only supported for NuGet-feed types, but we are planning on a license management module coming soon that will handle this much etter for npm and other feeds.
  • Uploading (0%)...

    proget
    10
    0 Votes
    10 Posts
    33 Views
    ?
    SOLVED See the following Stack Overflow question fro the solution. http://stackoverflow.com/questions/3853767/maximum-request-length-exceeded In summary: in the web.config <configuration> <system.web> <httpRuntime maxRequestLength="2147484" /> </system.web> </configuration> and <system.webServer> <security> <requestFiltering> <requestLimits maxAllowedContentLength="2147483648" /> </requestFiltering> </security> </system.webServer> Note: maxAllowedContentLength is measured in bytes while maxRequestLength is measured in kilobytes, which is why the values differ in this config example. (Both are equivalent to 2 GB.)
  • 0 Votes
    2 Posts
    107 Views
    ?
    This is an internal GIt error, and can usually be resolved by just deleting the local repository (under the TMP\SrcRepos folder).
  • Proget setup has stopped working

    proget
    2
    0 Votes
    2 Posts
    2 Views
    ?
    It's likely that the user installing does not have the ability to access the database defined in the configuraiton files on disk. So, make sure to run as a user that has DBO on those databases.
  • Pre-Release packages are not displaying.

    proget
    2
    0 Votes
    2 Posts
    0 Views
    ?
    This regression was fixed in ProGet v4.5.0. I'd recommend upgrading to the latest version.
  • Bundled software releases?

    buildmaster releases
    2
    0 Votes
    2 Posts
    3 Views
    ?
    Yes. We do this ourselves when we release BuildMaster as the installer relies on the BuildMaster software itself, a few independent embedded extensions with differing release numbers, and also handles releasing a source code package to inedo.com so Enterprise users can download it. The way to do this is to create a meta-application of sorts, and then create deployment plans in that application that create packages or deploy packages for specific releases in other applications. Here are some of the operations that would be useful: http://inedo.com/support/documentation/buildmaster/reference/operations#BuildMaster
  • Nuget Extension Update

    buildmaster
    4
    0 Votes
    4 Posts
    0 Views
    ?
    Is this for a legacy plan action or a OtterScript operation? If it's for a Legacy Plan, you can edit the Configuration Profile for the NuGet extension and specify a path to your custom NuGet.exe in there, and actions will use that instead of the default one the extension ships with -- this way you don't need to overwrite anything. If it's for an OtterScript plan, you can override the default location by creating a $NuGetExePath variable at global or server level with the value being the path to your version of nuget.exe on the server. This is the new style of configuration that replaces legacy Configuration Profiles.
  • Cannot uninstal .NET Recipes

    buildmaster
    3
    0 Votes
    3 Posts
    1 Views
    ?
    All set. I was just deleting from the webtmp
  • 0 Votes
    2 Posts
    18 Views
    ?
    When you un/re-install ProGet, it will not delete the database unless you explicitly say to. If you run the service interactively (just run the ProGet.Service.exe), there is an option to reset the admin account permissions.
  • 0 Votes
    5 Posts
    6 Views
    ?
    This does involve a bit of refactoring... but we should be able to get this into 5.6, shipping on the 18th.
  • Package count on dashboard unexpected

    proget
    2
    0 Votes
    2 Posts
    4 Views
    ?
    We'll consider it when revising the UI/homescreen (we don't , but most package managers do seem to report the total (not unique)...
  • 0 Votes
    2 Posts
    6 Views
    ?
    This appears to be a bug - it should work exactly as you have stated. Our internal issue ID for this is BM-2281 and should be released in the next maintenance (or minor) version (whichever comes first).
  • SSL Error in Chocolatey Connector

    ssl proget connectors
    4
    0 Votes
    4 Posts
    860 Views
    ?
    In Chocolatey v0.10.1, we will automatically switch to using better TLS versions when available. This was done in https://github.com/chocolatey/choco/issues/458. If you see this issue when you are attempting to install Chocolatey itself, please see this documentation to understand your options: https://github.com/chocolatey/choco/wiki/Installation#installing-with-restricted-tls
  • Export all version of npm package

    proget npm
    2
    0 Votes
    2 Posts
    4 Views
    ?
    You may have luck grabbing the packages from the internal, disk-based package store, and copying those to the drop path on the new server.
  • Best practices for dealing with executions that to not stop

    otter
    9
    0 Votes
    9 Posts
    42 Views
    ?
    If restarting fixed it, then the "hanging" was in the service, likely the agent never reported back that the "job" (a very small unit of work, not an Otter job) was complete. Once we add cancellation to the UI, you could confirm that to be the case... Note that, as soon as the Otter service stops, the job will stop running, so the service won't be able to start itself back up. So you will need to have an external process running that will handle the restart, like this: $script = " sleep 10 `$svc = (Get-Service -ComputerName 'inedoappsv1' -Name 'INEDOBMSVC') Try { `$svc.Stop() } Catch { } `$svc.WaitForStatus([System.ServiceProcess.ServiceControllerStatus]::Stopped) `$svc.Start() " Start-Process -FilePath 'powershell.exe' -WorkingDirectory 'C:\Projects\BuildMaster' -ArgumentList @('-NoProfile', '-ExecutionPolicy', 'unrestricted', '-Command', $script) Write-Output 'BuildMaster will be deployed in 10 seconds' It is the relevant parts of a PS script we use to have BuildMaster deploy to itself; it seems to work pretty well.
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation