• solrize@lemmy.ml
    link
    fedilink
    English
    arrow-up
    26
    ·
    2 days ago

    I had to look it up, NuGet is the package manager for .NET, sort of a counterpart to NPM, I guess. Anyone know if these packages are distributed as source code?

    • e8d79@discuss.tchncs.de
      link
      fedilink
      English
      arrow-up
      3
      ·
      2 days ago

      Source code only NuGet packages exists, but they are not very common. NuGet packages are just zip files that contain a manifest file and usually a couple of .NET assemblies. Since its basically just a versioned zip file with some targeting information you can package whatever you want with it.

      • solrize@lemmy.ml
        link
        fedilink
        English
        arrow-up
        2
        ·
        2 days ago

        Well, do the packages tend to be closed source? .deb packages are also often just binary, but there is usually a separate source package available.

        • e8d79@discuss.tchncs.de
          link
          fedilink
          English
          arrow-up
          2
          ·
          2 days ago

          Many packages are open source, some are not. Source code is usually not distributed via NuGet you can instead use the project URL from the manifest to find the sources if they are available.