Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login
    1. Home
    2. thoven
    3. Posts

    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!

    T Offline
    • Profile
    • Following 0
    • Followers 0
    • Topics 0
    • Posts 124
    • Groups 2

    Posts

    Recent Best Controversial
    • RE: False and True as string

      Thanks Philipe; all operation documentation is automatically updated within the software once the latest version of the relevant extension is installed (i.e. the Windows extension in this case). The documentation on the website will also get updated with any minor version of the software is released, or the Inedo.SDK is updated.

      Hope this helps,
      -Tod

      posted in Support
      T
      thoven
    • RE: Symbol server not working with netstandard packages

      As a followup, support for the Portable PDB format in the symbol/source server has since been added to ProGet.

      posted in Support
      T
      thoven
    • RE: SAML / federation support

      The Active Directory user directory has since been open-sourced here: https://github.com/Inedo/inedox-inedocore/blob/master/InedoCore/InedoExtension/UserDirectories/ADUserDirectory.cs

      posted in Support
      T
      thoven
    • RE: 401 (anonymous user not authorized to add packages to this feed)

      This appears to be an issue with the TFS credentials provider - the 401 status code means credentials were not supplied (and the error message confirms that as well); but typically clients should followup with a 2nd request that includes credentials when the 401 is received.

      If credentials are actually sent and are invalid/forbidden, then a 403 would be returned by ProGet.

      posted in Support
      T
      thoven
    • RE: Assets and Plans pages : "too many redirects or authentication replays"

      This can occur if the username/password credentials for Git are invalid, or more commonly, if a Git raft is configured as read-only (which probably doesn't require authentication e.g. GitHub) then is reconfigured to support write operations.

      posted in Support
      T
      thoven
    • RE: API keys not working after upgrade

      As a followup, it's worth mentioning that this occurs specifically when directory providers are switched. The "Active Directory (New)" user directory requires the user@domain.tld format, so switching from the previous "LDAP & Active Directory" user directory (which supported netBIOSdomain\user) no longer can impersonate.

      posted in Support
      T
      thoven
    • RE: Error message when map no correctly formated and big mess !!!!

      Thank you for the report; this will be resolved by the following issue: BM-3364

      posted in Support
      T
      thoven
    • RE: How does BuildMaster integrate with Apache Web Server

      Hi Bret,

      A tutorial for TeamCity is here: https://inedo.com/support/tutorials/buildmaster/teamcity/choosing-specific-artifact-from-teamcity

      Future note, the TeamCity tutorial may be moved to https://github.com/inedo/inedox-teamcity/wiki as part of a docs re-organization.

      As for controlling Apache, this is done through the httpd command, which can be executed with an Exec operation in your deployment plans, e.g.:

      # Deploy to Apache
      {
          Exec httpd -k stop;
      
          # deploy artifacts...
      
          Exec httpd -k start;
      }
      
      posted in Support
      T
      thoven
    • RE: Package protection

      Are you granting "Anonymous" the permission to view/download packages? If you remove that from the User Tasks page, then authentication would be required.

      posted in Support
      T
      thoven
    • RE: Adding functions in Otter

      To use script assets, use the CollectScript and/or ConfigureScript properties, for example:

      # ensures the BuildMaster Agent service exists on the remote server, using a
      # PowerShell script asset to perform the configuration
      PSEnsure(
          Key: BuildMasterAgentInstalled,
          # returns the count of INEDOBMAGT services installed
          Collect: @(Get-Service | Where-Object {$_.Name -eq "INEDOBMAGT"}).Count,
          # expected value is 1
          Value: 1,
          # use script stored in InstallBmAgent asset
          ConfigureScript: InstallBmAgent,
          ConfigureScriptParams: %(
              AgentType: TCP,
              Port: 1000),
          Debug: true,
          Verbose: true
      );
      
      posted in Support
      T
      thoven
    • RE: How can you let the TFS-Deploy-Task fail if a packet is rejected? (Overwrite off)

      If the ProGet version you listed (5.1.23) is accurate, it should already just work. ProGet will send a 403 if the user performing the push does not have overwrite permission, which I would assume fail the task.

      Is it possible you are authenticating with a different user, or that Anonymous has overwrite privileges?

      posted in Support
      T
      thoven
    • RE: Owner has unlisted the package on nuget.org, but Proget still shows it in the list of availible versions

      I believe this issue was resolved in ProGet v5.1.23 as part of PG-1462

      posted in Support
      T
      thoven
    • RE: Changing package stores

      The steps are outlined here: https://inedo.com/support/documentation/proget/advanced/cloud-storage

      posted in Support
      T
      thoven
    • RE: If proget license key was expired proget didn't work Immediately?

      You can safely do all of those things :)

      posted in Support
      T
      thoven
    • RE: Searching Nuget.Org Connector fails to find some Packages

      I don't know what else to say, I can't reproduce this anywhere.

      Here's a feed that simply has a connector to the same NuGet URL: https://proget.inedo.com/feeds/ExternalBuild and when I search it, the first result is System.Text.Encoding.CodePages 4.6.0-preview3.19128.7 with the other results just below it.

      posted in Support
      T
      thoven
    • RE: If proget license key was expired proget didn't work Immediately?

      ProGet will display warnings within the software 2 weeks before the expiration date, then it will stop working upon expiration.

      You are permitted to request a stopgap key in the meantime to avoid service interruption as per: https://inedo.com/support/documentation/various/licensing/management#stopgap

      posted in Support
      T
      thoven
    • RE: Searching Nuget.Org Connector fails to find some Packages

      ProGet only returns the package IDs, once you click on that, the Versions tab will have all the versions.

      posted in Support
      T
      thoven
    • RE: Can't find ProGet's database connection string

      Please refer to: https://inedo.com/support/documentation/proget/installation/config-files

      posted in Support
      T
      thoven
    • RE: Searching Nuget.Org Connector fails to find some Packages

      How are you searching for them? If I searchCodePages in the ProGet UI, it's the first result (albeit the pre-release version is returned).

      If you are using some other means to search (i.e. Visual Studio) that is also dependent on the .NET Framework version of the project you're searching against.

      posted in Support
      T
      thoven
    • RE: Install NuGet package failed

      What is the actual error? ProGet returns extra status information with any errors. Also, can you download it from the ProGet UI? The download link button there should be the same as the one used by Visual Studio.

      posted in Support
      T
      thoven
    • 1 / 1