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
    10 Posts
    71 Views
    ?
    I had the same issue, Resolved by uninstalling sql server 2005 ,restarting the machine and reinstalling buildmaster as admin
  • Document /Log parameter

    proget
    2
    0 Votes
    2 Posts
    3 Views
    ?
    Yes, good catch; I noticed that it was missing too when writing the same exact docs for the Otter Silent Installation Guide.
  • Visual Studio Source Server with Async/Await method debugging

    proget
    2
    0 Votes
    2 Posts
    1 Views
    ?
    There's absolutely nothing on ProGet's end that would cause symbols/source to sometimes work, and sometimes not in this manner. Async implementation in C# is very complicated and brand new, whereas source/symbols, OTOH are a 20+ year-old technology, and extremely fragile. So, this is just a bug in VS2015, where it's not loading a remote symbol. You can verify this using something like Fiddler or Wireshark, and then see that it's not even attempting to load symbols with the async debug. Please do send this to Microsoft, so they can fix it in a future update.
  • Pull From GitHub Repository

    proget
    3
    0 Votes
    3 Posts
    6 Views
    ?
    I kept saying it couldn't find the package. Would you provide me the solution how I can go by getting this to work in Proget env? Thanks!
  • Deployment plans and application level variables

    buildmaster
    4
    0 Votes
    4 Posts
    10 Views
    ?
    Variable values are "cascaded" by the execution engine at runtime. So, yes; if you define it any level (server, environment, deployable, etc)., it will resolve the most specific variable definition (e.g. a "build" variable overrides a "global" variable, etc).
  • Using windows authentication to connect to SQL Server

    buildmaster
    2
    0 Votes
    2 Posts
    5 Views
    ?
    Are you referring to connecting to the BuildMaster database, or connecting to databases you have configured in the Database Connections section within BuildMaster? The former cannot be done as it must use the account that hosts the web application or service. The latter cannot be done through the web application with Integrated authentication because BuildMaster does not impersonate users like that - you must use SQL Authentication and specify the credentials in the connection string if you want to go that route. The other alternative is to create a Change Script Deployment tool, and have the respective users run the tool as their own accounts, though of course this requires manual intervention.
  • Re-open release mistakenly marked as "deployed"

    buildmaster
    2
    0 Votes
    2 Posts
    0 Views
    ?
    This can be done with Administrative Edits on the Admin > Administrative Edits > Change Release Status page
  • OData feeds

    proget
    2
    0 Votes
    2 Posts
    18 Views
    ?
    That particular endpoint is not listed in the metadata for the NuGet API (https://www.nuget.org/api/v2/$metadata) so it is not implemented in ProGet. We may be able to add that at some point, but the best bet for paket would be to query the versions using the standard Packages endpoint, i.e.: /Packages()?$filter=Id eq 'packageName'&$select=Version
  • 0 Votes
    4 Posts
    9 Views
    ?
    Yes, in the new/v5 execution engine, we wrote a variable function called $EnvironmentVariable(name) that returns the machine environment variable. The current/v4 execution engine does not provide agent/server context in a variable function, so there's no way to write a variable function that executes on a remote machine.
  • XUnit Integration

    buildmaster unit-tests
    4
    0 Votes
    4 Posts
    8 Views
    ?
    Great --- worth noting that, while BuildMaster most certainly has some solid build automation sever capabilities , it's primary focus is actually Application Release Automation, which has a broader scope. As such, a lot of organizations will use a dedicated continuous integration server (like Jenkins) and import/trigger builds using BuildMaster, and then securely deploy/deliver to environments.
  • Packages stored on network share

    network nuget proget
    2
    0 Votes
    2 Posts
    17 Views
    ?
    ProGet's remote connectors only apply to NuGet endpoints, and will not connect to UNC paths like Visual Studio does. You can however simply create another feed, import all the packages in the UNC path into it, then set the feed storage path to that UNC path.
  • 0 Votes
    2 Posts
    49 Views
    ?
    I was only able to reproduce the difference in packages returned when the casing of the id was different than the actual ID of the package, i.e. for jQuery: http://proget/nuget/Default/Packages?$filter=Id eq 'jquery' and http://proget/nuget/Default/FindPackagesById()?id='jquery' The Packages endpoint does not return remote packages because searching in this manner is case-sensitive, while it is not for FindPackagesById. The solution seems to be always use FindPackagesById, or use /Packages?$filter=tolower(Id) eq 'jquery'.
  • Install NuGet Packages is missing in the action list

    buildmaster net nuget
    2
    0 Votes
    2 Posts
    3 Views
    ?
    We removed that simply because it was confusing having both actions like that, your best bet is to use the Execute Command Line action, or a PowerShell script in the script library that does what you need.
  • Authentication using dnx rc1-16231

    proget
    2
    0 Votes
    2 Posts
    0 Views
    ?
    This is a known issue in the NuGet client v3.2; it does not support integrated authentication (i.e. 401 challenges). This is supposed to be resolved in NuGet v3.3.
  • After update proget asking for username and password

    security proget
    2
    0 Votes
    2 Posts
    5 Views
    ?
    I would suggest to reset your admin password using the ProGet.Service.Exe, there is an option in there. And then try to set-up LDAP again.
  • Project.json support

    proget
    2
    0 Votes
    2 Posts
    1 Views
    ?
    Yes, but that's because project.json is used client-side; ProGet is really only sent the package id and version, not the project file.
  • 0 Votes
    7 Posts
    45 Views
    ?
    I see, while that works for some projects, not all of our projects uses a build server which complicates the process of deployment. Thanks
  • Debugging the Package with PDB

    proget
    4
    0 Votes
    4 Posts
    0 Views
    ?
    It's only a UI issue that's preventing the checkbox from being displayed. Here is the workaround click on the Configure Symbol Server link check "Enable symbol and source server for this feed" uncheck "Strip symbol files from packages downloaded from this feed" uncheck "Enable symbol and source server for this feed" Save
  • Connect ProGet to openLDAP

    ldap proget
    4
    0 Votes
    4 Posts
    15 Views
    ?
    We don't have a tutorial or guide on creating one, but it basically just involves making a UserDirectory class, and then implementing the methods. Note that in BuildMaster 4.9, we changed the interfaces a bit to be more inline with ProGet. You can use a disassembly tool to see how the current ones work, or request the source.
  • 0 Votes
    2 Posts
    10 Views
    ?
    Yes, but note ProGet is licensed for each server it's installed on, so if you keep both servers active, then you'll need an additional license.
Inedo Website HomeSupport HomeCode of ConductForums GuideDocumentation