Navigation

    Inedo Community Forums

    Forums

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    1. Home
    2. atripp
    3. Posts
    • Profile
    • Following
    • Followers
    • Topics
    • Posts
    • Best
    • Groups

    Posts made by atripp

    • RE: Error retrieving packages from source 'https://xxx:8625/nuget/xxx/': Unable to connect to the remote server

      Hello, if the ProGet server is running (and didn't crash), and you don't see any errors on the ProGet server... then the issue is between the server and the client.

      You can try to trace this using a tool like Wireshare or Fiddler, but to be honest the error could be anything including a bad wifi/network connection. It's not PRoGet or chocolatey specific, so you can search broadly for "how to troubleshoot unable to connect to remote server" for lots and lots of tips on how to resolve such an error.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Error retrieving packages from source 'https://xxx:8625/nuget/xxx/': Unable to connect to the remote server

      Hi @jhaas_7815,

      The message "Unable to connect to the remote server" basically means that Chocolatey client can't connect to ProGet at https://xxx:8625/nuget/xxx/'. If you entered the same URL in your browser, I would expect a similar error.

      I would check to make sure that the ProGet web site is running. You may need to restart IIS, etc. There's probably some kind of error on the IIS side, but it's really hard to guess what it is.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Basic arithmetic in OtterScript

      Hi @jimbobmcgee ,

      You're right, you would have to switch to localhost; however, you wouldn't have to "switch back". In other words, this would work fine:

      for server MyLinuxServer
      {
        set $MyResult = "";
        for server localhost 
        {
          $MyResult = $PSEval((5 + 3) * 4 / 3^0.5);
        }
      }
      

      You could wrap it in a Module, so you could do this:

      call MyMaths ( compute: (5 + 3) * 4 / 3^0.5, results => $MyResults);
      

      Otherwise, if you were so inclined, you could create a variable functions in C# that could handle this as you'd expect. But that's quite complex (parsing it, finding a parsing library, etc.), and we're hesitant to explore this any further as a result.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: OT - Credential Property broken ?

      Hi @philippe-camelio_3885 , there's definitely a bug... it was just hard to reproduce.

      The issue was the Otter was looking at the wrong credential to determine if function access was allowed...

      posted in Support
      atripp
      atripp
    • RE: Two possible new bugs in BM

      Hi @ForgotMyUsername ,

      I can't reproduce #1, and I don't have enough details (specific error messages, stack traces, etc) to guess what the issue could be. Same for #2 -- I would need to see specific OtterScript and the errors you're getting to take a guess at where the problem is.

      One thing that would be helpful, if you could create step-by-step reproduction information. For example,

      1. Create application named TOM + JERRY
      2. Create PowerShell Script named XYZ
      3. etc...

      Short of that, stack traces and errors logs are really important. There are a lot of copmontents working together, and hard to guess based on general descriptions :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: OT - Credential Property broken ?

      @philippe-camelio_3885 thanks for confirming that it was broken, I took a closer look and figured it out :)

      It will be shipped in the next maintenance release as OT-492 (and also in BuildMaster via BM-3846)

      posted in Support
      atripp
      atripp
    • RE: Otter and High Memory Usage

      @ForgotMyUsername great news, thanks for letting us know :)

      posted in Support
      atripp
      atripp
    • RE: OtterScript and Isolate.

      Hi @ForgotMyUsername ,

      I'm not sure I'm know where the issue is... can you provide the OtterScript? Or the specific error/logs that triggered that message.

      The with isolation is supported, and is a checkbox on the advanced tab of the General block.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: OT - Credential Property broken ?

      Hi @philippe-camelio_3885 ,

      I can't reproduce this at all....

      1. Admin > Secrure Credentials> Create
      2. test with Username = myuser, PAssword = mypass, check "function usage allowed"
      3. Create script Credtest.otter with contents below
      4. Run as Ad-hoc job on local host <-- works OK
      5. Admin > Secure Credentials, uncheck function allowed
      6. Run as Ad-hoc job on local host <-- failed as expected
      7. Admin > Secure Credentials, check function allowed
      8. Run as Ad-hoc job on local host <-- works OK

      So it seems to be working as expected. And as Rich mentioned, the code seems fine and hasn't been changed.

      Here's the script:

       set $CredentialUser = $SecureCredentialProperty(test, Username);
       set $CredentialPwd = $SecureCredentialProperty(test, Password);
      
       Log-Information User is $CredentialUser, Password is $CredentialPwd;
      
      posted in Support
      atripp
      atripp
    • RE: NuGet Package README Display

      Hi @richard-gagliano_3594 ,

      Actually we reviewed this for ProGet 2023, but ultimately decided not to it.

      The main reasons were,
      (1) it wouldn't work well for remote packages, since we don't have the package file locally
      (2) different behavior for remote and local/cached packages is confusing to explain and adds a support burden
      (3) it was not trivial with the way README was implemented on NuGet and our abstractions
      (4) not in demand - we've had one other request (5 years ago) for this, and it was before the spec was finalized

      I suppose you could say that "demand has doubled", but probably best to wait if we have more requests for this... given that it's not trivial and the behavior may be quirky.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: [ProGet] Frontend resources for Proget GUI are not working

      Hi @k-gosciniak_5741 ,

      We've got no clue what's causing that, but definitely some kind of IIS configuration. Ultimately I don't think the request for that file is being passed into ProGet, but IIS is trying to find the file on disk instead (which it obviously won't be).

      I would guess if you put a file on disk that file would be served via that URL. IT's just a guess.

      Other things to look at ... MIME mappings, I've seen those do strange things. Maybe there's other IIS modules. It's really hard to guess.

      It might just be easiest to switch to the Integrated Web Server; you can just uninstall / reinstall ProGet. That won't use IIS then.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Sync BM from OT

      Hi @philippe-camelio_3885,

      I don't know where the "extra commas" came from, but Otter/BuildMaster wouldn't have generated them that I can tell? It's not like there's a flag we can pass to our JSON library to say "make invalid format" 😉

      But in any case, the API response looks valid to me, and it seems to be importing okay?

      The Property "Value" was not erxpected message is what you would get if you tried to import the "bad" (extra commas) JSON document.

      Maybe try syncing again? The sync is really just an automated version of the manual process, and uses the same code base.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Sync BM from OT

      ... hmm that's really weird. Those commas aren't showing up on my instance.

      Can you go to Admin > Infrastructure > Export; what do you see showing up there?

      That uses the same JSON-serialization code as the API.

      You can also copy/paste that JSON into Admin > Infrastructure > Import, and do a kind of manual sync.

      posted in Support
      atripp
      atripp
    • RE: [ProGet] Frontend resources for Proget GUI are not working

      hI @k-gosciniak_5741 ,

      That's weird; I would try to restart the application pool. Then, try switching from "Classic" to "Integrated" (or vice versa) on the application pool. Both should work... but "Integrated" seems to work best.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: OT/BM Configure linux server connection with implicit sudo

      Hi @philippe-camelio_3885 ,

      Thanks for clarifying!

      I'm not sure why that won't work as a "normal" user, but I'm guessing it has to do with the /etc path or something.

      But in any case... I don't think it's possible, at least with our knowledge of the underlying technologies. We rely on the "subprotocol" of SFTP for most file-based operations, and we rely on libssh2 to handle SFTP communication. How those protocols/libraries work is kind of a black box at that level.

      On the plus side, you should be able to write "ensure" scripts using Bash :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Sync BM from OT

      Hi @philippe-camelio_3885 ,

      I would expect the "could not be loaded as JSON" message if the endpoint was giving some kind of error.

      What happens when you query:
      https://otter-2023.ocapiat.fr/api/infrastructure/all/list?key=*****

      Is there a kind of error there?

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Chocolatey PUT request - The specified network name is no longer available

      Hi @norbert ,

      Based on the error messages, the problems is occurring somewhere between the ProGet and choco.

      • Chocolatey is reporting that the remote connection was forcibly closed.
      • ProGet is reporting that the client unexpectedly disconnected.

      It's the equivalent of someone "cutting the cord" halfway through the communication, and there's no way to know where that happened or why.

      You'll need to investigate intermediate equipment. Typically it's a firewall, ,proxy, or other gateway that is misconfigured.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet Expiration Date

      Hello,

      You can find it under Admin > License Key; here's more information that might be helpful:
      https://docs.inedo.com/docs/myinedo-activating-a-license-key

      Cheers.
      Alana

      posted in Support
      atripp
      atripp
    • RE: OT/BM Configure linux server connection with implicit sudo

      Hi @philippe-camelio_3885 ,

      I don't believe that root is required to SSH into a Linux server.

      What did you mean by implicit sudo? I guess you could run sudo from your shell scripts, but I wasn't sure if that's what you meant.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: vulnerability

      Hello @jonathan-brown_3775 ,

      This is considered a "false positive", so please disregard those results :)

      Those are JavaScript files that run inside your browser to display certain charts about feed disk usage in the Web interface; there is no possibility whatsoever of a security vulnerability or attack coming from these javascript files inside of ProGet.

      Thanks,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Buildmaster - Gitea Tie In

      Hi @pooms_7365 ,

      Thanks, I found where the error is in the code; it was in displaying the "code has not been synced" message. Easy fix (BM-3845) and it will ship in next maintenance release :)

      And wow... 15gb!

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: BuildMaster Bugs

      Hi @ForgotMyUsername ,

      1. Checkout-Code operation using Generic Git repository with recurse submodules...

      I can't reproduce this, but I can see how that issue might occur. Your repository must have a GitLink entry in the target tree (i.e. folder you're checking out), but there's no corresponding reference entry in the .gitmodules file. I've updated that to be a warning., and just pushed the Git 2.2.3 extension.

      It will be included in the next maintenance release of BuildMaster, or you can download/upgrade now.

      1. Every minute an exception appears...

      Nice find; this will be fixed in next maintenance release (2022.10) via BM-3844

      1. Clone application fails when trying to clone application using generic git repository...

      I believe this is related to importing "releaseless-builds", and this may be fixed in 2022.9 via an internal commit (i.e. one we didn't log an issue for). Clone does an export then import. If that doesn't fix it, please export the application and provide it to us, so we can inspect the file for issues.

      Regarding [5], can you send logs? The scenario you describe (existing repo with the same name) is already tested and handled, but there's likely something that's missing.

      posted in Support
      atripp
      atripp
    • RE: Otter - IIS Ensures

      Hi @ForgotMyUsername ,

      Unfortunately this is not going to be possible to debug with the information you've provided.

      Except for the misspelling of Certficiate (which would have no bearing on executing the script), a cursory glance of the code shows that everything is otherwise wired up as expected:

      • IisSiteBindingConfiguration.cs
      • IisSiteConfiguration.cs

      So, I'm hoping you help troubleshoot/debug some more, to show us where the issue is.

      IIS settings are ultimately stored in the applicationHost.config stored under %windir%\System32\inetsrv\config\. We do not directly work this file (as you can see from the code), but it's the easiest way to review the settings in IIS that Otter makes.

      To help us reproduce these issues, can you send:
      (1) Relevant appPool and site elements from the config file
      (2) OtterScript code that should work with those entries
      (3) Actual vs expected results in the config file

      And one note on the bindings... unfortunately this is a difficult problem in general to solve because IIS Sites have multiple bindings, but users often don't want to clear bindings. We used to have a Bindings property (it's still htere) that lets you specify a map, but it was too difficult/confusing to use.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Otter and High Memory Usage

      Hi @ForgotMyUsername,

      Under-the-hood, Otter uses an in-process PowerShell Host (i.e. a runspace) to execute scripts, and does not invoke PowerShell.exe:
      https://github.com/Inedo/inedox-scripting/blob/master/Scripting/InedoExtension/PowerShell/PowerShellScriptRunner.cs#L181

      And as you can see in the code, Otter is properly creating/disposing of those runspaces.

      I'm not sure where the powershell.exe processes are coming from, but it sounds like you have some problematic scripts. These will cause a lot of memory to be consumed and never released. In addition, perhaps they are calling other scripts using powershell.exe? Or something? It's really hard to guess...

      In any case, Otter already has a mechanism called Isolation (with isolated) that can be used to help solve problematic scripts like this.

      When something is run as isolated, then a new Otter.Agent.exe process is created to handle the unit of work (such as a script execution). When the work is done, that process is terminated; if it doesn't terminate, then it is killed within 5 seconds.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Basic arithmetic in OtterScript

      Hi @jimbobmcgee,

      OtterScript is a DSL and doesn't have a lot of "general purpose" things like maths, as you've noticed. This is by design.

      But you can just use PowerShell for that; for example, set $MyResult = $PSEval((5 + 3) * 4 / 3^0.5);

      There isn't any noticeable overhead.

      PowerShell is probably also more suitable for string manipulation as well, especially when you're working with diskpaths and the like.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet -> Helm: Unable to cast object of type 'System.String' to type 'Inedo.ProGet.Feeds.IComparablePackageVersion'.

      Hi @h-morgenthaler_3015, we are currently investigating this. ,It sounds like an issue we fixed in ProGet 2022 already, but maybe it didn't get merged over. Please stay tuned.

      posted in Support
      atripp
      atripp
    • RE: Inedo Proget Plugin in Jenkins Error

      Hello, unfortunately we really don't know what the underlying issue could be. Perhaps it's only an error on the "test" button, and the plug-in will work?

      This is not an Inedo-created plugin, and we're not familiar with Java or Jenkins to know how to to debug it. It should still work (and I know we have some users who got it working), but otherwise we don't really know how to debug it I'm afraid :(

      The source code is here, but I don't know if it's at all helpful:
      https://github.com/jenkinsci/inedo-proget-plugin

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Onboarding duplicated template VMs to Otter

      Hi @jimbobmcgee ,

      The "Secret key" field is just an arbitrary string that needs to match on both the Agent and the Otter Server; it needs to be unique across your servers, as its used to uniquely identify an incoming agent connection. The UI generates a random string, but you can enter whatever you'd like.

      There needs to be a Server record on the Otter server (i.e. on the "Servers" page) before an agent can connect to Otter. This is true for either Incoming or Outgoing communication modes. This is often called "server registration".

      One option is to servers self-register in Incoming mode; you can have the the following script on first boot:

      1. Generate a random string ("secret key"); you could use a GUID
      2. use the Infrastructure API from the server to "register" the server using that key
      3. edit the agent configuration file to have that key
      4. start the Inedo agent service

      Hope that helps,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Buildmaster keeps notifying it needs to be restarted

      Hi @Justinvolved ,

      Oooh - I thought we removed those flags/notices from BuildMaster 2022 😲

      Looks like we only removed the code that clears them, and almost all of the code that sets them (with the exception of the CEIP page).

      Anyway, I've vanquished the code for good via BM-3839.

      In the mean time, please run sql this command to clear the notices:

      DELETE [Configuration] WHERE [Key_Name] IN ('Service.DelayExecutionsWhenRestartRequested','Service.RestartRequested', 'Web.RestartRequested')
      

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: promote PSGallery including all depedencies

      Hi @d-gleissner_8620 ,

      The best way to handle this scenario is with two feeds (unapproved and approved packages); install from the unapproved in your development environment, and then to promote packages (in bulk) from the unapproved to the approved feed.

      Unfortunately, it's not feasible for a tool like ProGet to handle dependency resolution; a dependency is specified as a range (for example, PackageA requires PackageB 3.2 or later), and it's up to the environment (i.e. the client doing the installation, PSGet) to determine which dependencies are currently available and not available.

      For example, if you already had "PackageB 3.3" installed, then PowerShell would not install it, even if "Package B 3.4" is the latest version. It gets even more complicated when it comes to platform dependencies and all that. Ultimately, ProGet can't have such environmental knowledge.

      hoep that helps!

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: upack cli --version and --manifest

      Hello,

      This is by design; looking over the code, it seems the command says "If metadata file is provided, value will be ignored." I can't answer why that's the design/behavior.

      You're welcome to submit a pull request to update the behavior. Here is the relevant code:
      https://github.com/Inedo/upack/blob/master/src/upack/Pack.cs

      My main concern is, what if someone is relying on the value being ignored , either accidently or intentionally. I don't have a great idea for how to address that concern... though my first thought is to deprecate the manifest argument and rename to manifestFile.

      So it's not a trivial change, but you're welcome to give it a shot. It's unlikely we will implement this ourselves anytime soon, as we have a lot of other feature requests on ProGet that take priority, and UPack gets a decent number of pull requests from the community.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: SPDX license expressions

      Thanks @sebastian !! Your RegExFu is impressive 😂

      Definitely more robust - so I replaced it, and now we will match that "silly" test case of ((a) OR (b))

      posted in Support
      atripp
      atripp
    • RE: Rename Asset Subfolder

      Hi @martin-noack_4528 ,

      Nice points :)

      We added this to our ProGet 2023 roadmap as a "Nice to Have"; we're a little behind on the release now so I don't know if it will make it, but we will reevaluate after 2023.0 is released at that point.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: SPDX license expressions

      Hi @sebastian

      Just an update; this was committed to the PG2023 code base, and seems to work on a few packages I tried (but I can't find too many).

      Basically we just will enumerate the code matches in this Regex: ^\(?(( OR )?(?<code>[0-z-_\.]*))+\)?$

      That will catch (a OR b) and a OR b, but if one were to be silly and add ((a) OR (b)) then it would revert back.

      Doesn't seem worth getting any more complex than that :)

      posted in Support
      atripp
      atripp
    • RE: Debian url whitelist

      Hi @js-enthoven_2797,

      Unfortunately I'm not very familiar with debugging apt :(

      The only one I was familiar with was the InRelease-related error, which you worked around.

      Otherwise, I haven't seen these before, but they seem to be warnings, so maybe it's okay and is working? It does say "All packages are up to date".

      I don't really know what they mean, or if it's related to ProGet, apt configuration, or the package I searched for the text of these errors ("No Hash entry in Release file"), and there are a lot of suggestions on what to do... they are all different, and I have no idea what might work.

      The "Connection timed out" is really strange too. Maybe it's related to proxy, or something? A blank page is to be expected if you have no packages in that scope; otherwise you will see a number of "Paragraphs", one for each package.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Debian url whitelist

      Hi @js-enthoven_2797 ,

      This issue is unrelated to internet access or whitelisted URLS.

      This is the error message you will get from apt if a private repository does not support the InRelease API endpoint. ProGet does not support this endoint, so you will get this error.

      Here is some information about how to bypass this warning in apt:
      https://www.linuxfordevices.com/tutorials/linux/fix-updating-from-such-a-repository-cant-be-done-securely-error

      Basically you have to explicitly trust the PRoGet repository.

      Please let us know if that works,

      Alana

      posted in Support
      atripp
      atripp
    • RE: Debian url whitelist

      Hi @js-enthoven_2797,

      I'm not totally certain, but I believe this is the result of the InRelease endpoint (i.e. the clear-signed index) is not being implemented by ProGet.

      You can ignore the "weak security information" message, and configure apt to use this repository. If you're using HTTPS, the clear-signed index adds no additional security; it's a vestigial feature these days, and is was designed for when HTTPS wasn't available. You can ignore/override those warnings.

      We may implement the InRelease endpoint, but there are some problems/bugs with the way BouncyCastle (the encryption library we use) generates "armored output streams". It's a lot of effort for no real value (other than just not having those outdated errors by default).

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Duplicate unassesed vulnerabilities

      Hi @v-makkenze_6348 ,

      I can see that you're using the OSS Index? Did you also add PGVC as a source?

      I didn't review or try to reproduce this particular case yet... but we have seen this "duplicate data" problem happen from time to time with OSS Index. It's a data-quality issue; ProGet maintains an "external ID", and sometimes OSS Index will report duplicate

      ProGet will display the External ID when you click on the vulnerability; that should be unique.

      However, based on the description... I wonder if that's the case here? Does this seem to happen with cached packages only, as they've been removed? Any other insight you could provide would be very helpful, so we can investigate this further.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Question about the ProGet 2023 Symbol Server Preview implementation

      So sorry @msimkin_1572 , I just double checked.. the Endpoint URL should be formatted like v3/index.json not index.json.

      http://my-internal-server/nuget/InternalLibs/v3/index.json

      It "looked" right when I typed it, but I should have double checked. Normally I just copy/paste this from the Endpoint URL in the feed page.

      posted in Support
      atripp
      atripp
    • RE: Encode URI incorrectly cause GCR connector not working

      Hi @PMExtra ,

      Thanks for the details on this, very helpful :)

      We actually recently discovered this too (though a different underlying problem) - it was should be addressed in 2022.27 via PG-2321.

      Can you try that and see if it helps? We can investigate further if not.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Question about the ProGet 2023 Symbol Server Preview implementation

      Hi @msimkin_1572 ,

      Sorry I didn't realize this before... the URL needs to be the Feed Endpoint URL, which would end in /index.json. I also updated the documentation to make this clear.

      The URL you have now is the v2 endpoint url, which doesn't have a feed description document.

      Hopefully it'll work as soon as you add /index.json to the URL :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Proget issue with Pypi feed

      Hi @kichikawa_2913 ,

      PG-2290 was the regression fix, and it was included in ProGet 2022.22

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Inedo Agent does not connect to Inedo Otter Host (Outbound Connection)

      Hi @philipp-cender_3322 ,

      Looks like you're making good progress :)

      I ran the command .\inedoagentservice.exe run but the command only stated that it does: "Starting agent connector to the otter-host-fqdn on port 8630"

      That's okay to see; it means that its working as expected. I there was an error, you would see it.

      But for Source 10.67.0.17 something like a token exception is stated

      In the screenshot, it seems okay and doesn't report an error. So I think it's okay?

      The exception message is some kind of OS-level error, and I'm not sure what it means exactly. But it's a SSL/TLS issue. In this case, if you search for the text of the error ("Die Anmeldeinformationen, die dem Paket übergeben wurden, wurden nicht erkannt" -- but perhaps English is better), you can probably get some details on how to fix it. It could be some obscure operating system configuration.

      If i open otter at Port 8630 (Agent Listener) on Firefox webbrowser i get something like that: PR_CONNECT_RESET_ERROR

      It's not possible to "browse" such a connection; the Inedo Agent uses a proprietary, TCP-based binary protocol. So you will always get errors if you try to browse, telnet, etc.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Question about the ProGet 2023 Symbol Server Preview implementation

      Hi @msimkin_1572 ,

      The blog article was technically incorrect on the arguments, so I changed that.

      However, the documentation is updated and should be accurate:
      https://docs.inedo.com/docs/proget-feeds-nuget-symbol-and-source-server

      Basically, if you have both a nupkg and a snupkg in your folder, then you should only have to use

      dotnet nuget push kramericalib.4.1.2.nupkg  --source https://proget.kramerica.corp/nuget/internal-nuget
      

      The .snupkg file will be stored on the same feed.

      The symbol server url hasn't changed (it's still /symbols/feed).

      hope that helps :)

      posted in Support
      atripp
      atripp
    • RE: Log color output

      Hi @cjchambers_1799 ,

      Thanks for clarifying that; that handler outputs logs in plain text format (content-type is like txt/plain or something like that, not html).

      That url is intended mostly to download/export the log files for APIS and other tools, but we put it in the UI for discoverability. And sometimes it's convenient to CTRL-F everything.

      Since it's plain-text, it's not possible to do any kind of formatting (even a user-style sheet). But I guess you could CTRL-F [Error] or something, and it will "highlight" it in the browser at the least.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Log color output

      Hi @cjchambers_1799 ,

      I'm not entirely sure what screen that is.....I think the execution-in-progress page (with the moving bar)?

      So you're using the built-in Dark Mode then? Can you (temporarily) try switching to Light Mode, just to make sure it's showing up in the proper/expected colors?

      If that's the case, likely just a CSS bug/fix we need to make :)

      I didn't test yet, but just want to be sure I know we're looking at right thing.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Log color output

      Hi @cjchambers_1799 ,

      Log entries are stored with an associated log level (error, warning, info, debug), and when you Log-Error it writes that item to the log with an error level.

      When displaying log entries, error-level entries are displayed in Red, warning are in Yellow, and Debug is in Light-Grey.

      So, I think this already behaves the way you are asking.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: ProGet NuGet upload user tracking

      Hi @jw ,

      In ProGet 2023, we are recording a "publish user" when a package is published. I'm not sure how we will show/expose this (probably history page for now), but that's really easy to change once we collect the data.

      We're really hoping to get to get 2023.0 released later this month :)

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Cannot connect to Git in build

      Hi @Justinvolved ,

      That error message is coming from here:
      https://github.com/Inedo/inedox-git/blob/master/Git/Git.InedoExtension/Operations/CanonicalGitOperation.cs#L73

      Basically, it means that value you've specified for From is not a known Secure Resource. It's not a common error, and is likely the result of deleting/re-adding something.

      I would remove the From argument from your OtterScript altogether (just leave it as Git::Checkout-Code;). I don't think you need it. Your build should already associated with a repository, branch, and commit.

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • RE: Cannot connect to Git in build

      Hi @Justinvolved ,

      Looks like there's a Visual Editor bug with Exec statement; we'll investigate/fix ASAP .

      But as for the Git, you mention it's happening during an execution (i.e. build process)? Anyway, can you share more of the execution log?

      Are you able to browse the Git repository in the Web UI okay?

      If that's the case, the error is on the build agent (or BuildMaster server) in the service process. That uses a different set of local repositories than the Web UI. There may be a troubleshooting step we can take to manually clear the local repository (on the service-side), but Id like to gather more info

      Cheers,
      Alana

      posted in Support
      atripp
      atripp
    • 1
    • 2
    • 14
    • 15
    • 16
    • 17
    • 18
    • 36
    • 37
    • 16 / 37