Skip to content

Latest commit

 

History

History
 
 

nuget

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

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