messaging
Tudor Stanciu 2019-10-11 00:53:12 +03:00
parent 98af4d52b3
commit e192c04767
2 changed files with 10 additions and 0 deletions

View File

@ -10,6 +10,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
.gitattributes = .gitattributes
.gitignore = .gitignore
Directory.Build.props = Directory.Build.props
Notes.txt = Notes.txt
EndProjectSection
EndProject
Global

9
Notes.txt Normal file
View File

@ -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