Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 585 Bytes

README.md

File metadata and controls

27 lines (20 loc) · 585 Bytes

NuGet Repo

Try this nuget.yaml file:

repo:
  type: nuget
  path: my-nuget
  url: http://localhost:8080/my-nuget
  storage:
    type: fs
    path: /tmp/artipie/data/my-nuget

To publish your NuGet package use the following command:

$ nuget push my.lib.1.0.0.nupkg -Source=http://localhost:8080/my-nuget/index.json

To install the package into a project use the following command:

$ nuget install MyLib -Version 1.0.0 -Source=http://localhost:8080/my-nuget/index.json