Notes
parent
98af4d52b3
commit
e192c04767
1
NDB.sln
1
NDB.sln
|
@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
|
||||||
.gitattributes = .gitattributes
|
.gitattributes = .gitattributes
|
||||||
.gitignore = .gitignore
|
.gitignore = .gitignore
|
||||||
Directory.Build.props = Directory.Build.props
|
Directory.Build.props = Directory.Build.props
|
||||||
|
Notes.txt = Notes.txt
|
||||||
EndProjectSection
|
EndProjectSection
|
||||||
EndProject
|
EndProject
|
||||||
Global
|
Global
|
||||||
|
|
|
@ -0,0 +1,9 @@
|
||||||
|
How to create nuget package from project:
|
||||||
|
1. Check properties from Directory.Build.props. Increase version
|
||||||
|
2. Check properties from project. Right click on project -> Properties -> Package
|
||||||
|
3. Select Release for build
|
||||||
|
4. Right click on project -> Pack
|
||||||
|
5. Search for package in bin/Release folder. Ex: NDB.Hosting.WindowsService.1.0.0.nupkg
|
||||||
|
6. Push the package
|
||||||
|
6.1 Open a console in package folder and run "dotnet nuget push <package_name> -k <key> -s <nuget_server_url>"
|
||||||
|
6.2 Ex: dotnet nuget push NDB.Hosting.WindowsService.1.0.0.nupkg -k key -s http://stawebsrv/NuGetServer/nuget
|
Loading…
Reference in New Issue