Inedo Community Forums Forums
    • Recent
    • Tags
    • Popular
    • Login

    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!

    Symbol Server for portable pdb

    Scheduled Pinned Locked Moved Support
    19 Posts 4 Posters 77 Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • C Offline
      christian_panten @rhessinger
      last edited by

      @rhessinger

      here is a screen shot of my push.
      bac64072-167e-446b-8c7f-98f1b83becc7-image.png

      as you can see:

      • pushing nupkg to packages feed works fine
      • pushing snupkg to packages feed failed
      • pushing snupkg to symbols feed failed too

      c4517843-1938-4e0d-b31f-72e1b9cfc61e-image.png

      496e6ddf-0f2a-4d6f-ba82-efc68c0ad8f8-image.png

      Best regards
      Christian

      1 Reply Last reply Reply Quote 0
      • rhessingerR Offline
        rhessinger inedo-engineer
        last edited by

        Hi @christian_panten,

        Are there any errors showing in the Diagnostics center?

        Thanks,
        Rich

        Products Engineer, Inedo

        C 1 Reply Last reply Reply Quote 0
        • C Offline
          christian_panten @rhessinger
          last edited by

          @rhessinger,

          No there are no messages.

          Best regards
          Christian

          1 Reply Last reply Reply Quote 0
          • atrippA Offline
            atripp inedo-engineer
            last edited by

            First off, if you want to have separate library and symbols packages (which we don't recommend), then you'll need to make a separate symbols feed. ProGet supports a "combined package" and will strip out symbols/source unless explicitly requested, so you don't have to bother.

            But if you want to separate, please note that nuget is a "little" funny. If the file extension ends in .snupkg then it ignores the source argument, and attempts to push the file to Microsoft's server (symbols.nuget.org).

            This is because symbol packages and regular packages must be pushed to a different feed. If you want to specify a custom symbols feed, then please use the --symbol-source when using a .snupkg file.

            @christian_panten I have a favor.... can you suggest (or do a pull request) on how we can update our documentation to make this more clear? Thanks 😄

            C 1 Reply Last reply Reply Quote 0
            • C Offline
              christian_panten @atripp
              last edited by

              Hi @atripp,

              your proposal to use --symbol-source does not work with .snupkg. As you can see there is an
              exception pushing only the snupkg file.

              ee0fb95a-a38a-4103-8379-9bbe87960ed6-image.png

              Also pushing both files at the same time is pushing only the nupkg.
              5e097763-23f4-4869-8168-f5f02affe2f7-image.png

              I don't have any idea how to continue. Do you have further steps to try?

              Were you able to run the same tests on your machines?

              Best regards
              Christian

              atrippA 1 Reply Last reply Reply Quote 0
              • atrippA Offline
                atripp inedo-engineer @christian_panten
                last edited by

                @christian_panten as I mentioned, we recommend making a single symbol package to avoid this kind of headache (it changes between versions of nuget CLI 😦 ), and I don't use nuget.exe to push packages in this manner so I can't say it

                If you were to just upload or PUT the package to ProGet, then it would work fine. So we are just trying to figure out nuget.exe's quirks, and why he refuses to push to a custom symbol source...

                The screenshot you showed seems to be fine. I also read the nuget.exe push documentation.

                I don't think you're supposed to specify the snupkg file. I believe he will search for a .snupkg and then push it? It's hard for a guess.

                I also remember this was broken for a while in nuget.exe (not using of SymbolApi at all), but it works in dotnet push.

                C 1 Reply Last reply Reply Quote 0
                • C Offline
                  christian_panten @atripp
                  last edited by

                  @atripp

                  We are not using proget as default nuget package source.
                  Our company decided to use artifactory as nuget repository.
                  So, we don't want to create nuget packages including the pdb files.

                  I would like to find out if the symbol server of proget is able to
                  provide us the portable pdb files.

                  Currently, including the pdbs in the original nuget package seams to
                  work. But it's not an option for us.

                  There is no command: dotnet push

                  a25cfd73-fe70-4b79-8f34-2df4428ff9d9-image.png

                  And dotnet nuget push does also not work. Same issue as nuget.exe.

                  How can we proceed?

                  Best regards
                  Christian

                  1 Reply Last reply Reply Quote 0
                  • atrippA Offline
                    atripp inedo-engineer
                    last edited by

                    I think dot net publish, but remember these are really meant to work with nuget.org. This might be an issue to take up with the NuGet team; it's very possible their tool doesn't support this use case and is buggy.

                    It's just an HTTP PUT, so you could do it in a line of PowerShell as well using the Invoke-RestMethod CmdLet: Invoke-RestMethod -Uri $uri -Method Post -InFile $uploadPath

                    Here is some more information from NuGet's docs: https://docs.microsoft.com/en-us/nuget/api/package-publish-resource#push-a-package

                    C 2 Replies Last reply Reply Quote 0
                    • C Offline
                      christian_panten @atripp
                      last edited by

                      @atripp

                      I will try to use the API directly to test if it works.

                      dotnet publish is not the command to publish a nuget package. It is use
                      to restore nuget dependencies, to build a project and to copy all required
                      files to a separate folder.

                      Next to your provided link there is a documentation how to push snupkg files. c0d139ca-30ab-4cfe-b20a-bafc4830b69e-image.png
                      And as you can see here, it depends on SymbolPackagePublish resource found in the service index.
                      But this resource is missing in the service index delivered by our proget installation. Maybe this could be
                      a hint for you which can help solving my issue.

                      I will let you know if the direct usage of the API solves also my issue.

                      Many thanks for you support.

                      Best regards
                      Christian

                      1 Reply Last reply Reply Quote 1
                      • C Offline
                        christian_panten @atripp
                        last edited by

                        @atripp

                        UPDATE:

                        I was able to use curl to upload the snupkg symbols package via:

                        curl -v -i -X PUT -H 'X-NuGet-ApiKey: xxx' -F 'file=@./Trimble.MEP.MyPackage.1.4.0.snupkg;' http://localhost/nuget/symbols/package
                        

                        Best regards
                        Christian

                        1 Reply Last reply Reply Quote 0
                        • C Offline
                          christian_panten
                          last edited by

                          Since there is no further update and no solution for my problem using nuget cli or dotnet cli I am closing this thread.

                          1 Reply Last reply Reply Quote 0
                          • J Offline
                            jonathon.hameier_4326
                            last edited by

                            This post is deleted!
                            1 Reply Last reply Reply Quote 0

                            Hello! It looks like you're interested in this conversation, but you don't have an account yet.

                            Getting fed up of having to scroll through the same posts each visit? When you register for an account, you'll always come back to exactly where you were before, and choose to be notified of new replies (either via email, or push notification). You'll also be able to save bookmarks and upvote posts to show your appreciation to other community members.

                            With your input, this post could be even better 💗

                            Register Login
                            • 1 / 1
                            • First post
                              Last post
                            Inedo Website Home • Support Home • Code of Conduct • Forums Guide • Documentation