How to build local nuget package? #2341
-
Context: I'm trying to test running benchmarks in NativeAOT with the |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 1 reply
-
Ah I figured it out. It was just |
Beta Was this translation helpful? Give feedback.
-
There is one tricky thing related to local nuget packages: nuget is caching the packages per version. So if you create a |
Beta Was this translation helpful? Give feedback.
-
@timcassell, the recommended way to pack all the nupkgs is to run |
Beta Was this translation helpful? Give feedback.
@timcassell, the recommended way to pack all the nupkgs is to run
build.[sh/ps1/bat] --target Pack
. This command does the preparatory work and puts the final nupkgs into theartifacts
folder.