https://github.com/chrdek/nuspecexec
Command line utility that generates .nuspec project files via linq to xml
https://github.com/chrdek/nuspecexec
csharp linq-to-xml linq2nuspec linq2xml nuget nuspec xml
Last synced: 2 months ago
JSON representation
Command line utility that generates .nuspec project files via linq to xml
- Host: GitHub
- URL: https://github.com/chrdek/nuspecexec
- Owner: chrdek
- Created: 2020-06-25T15:31:13.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2020-07-05T17:33:56.000Z (almost 6 years ago)
- Last Synced: 2025-03-24T10:49:42.726Z (over 1 year ago)
- Topics: csharp, linq-to-xml, linq2nuspec, linq2xml, nuget, nuspec, xml
- Language: C#
- Homepage:
- Size: 89.8 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
### Nuspec manifest generator via linq to xml for nuget v5.* (.NET 4+)
- Adds default content and unlicense with nuspec namespaces.
- Includes all \bin\ *.dlls in project file and project name by default.
- Runs from *.*proj folder and adds an image.
- Executable available.
CommandLine usage (Creates .nuspec file for nuget):
```
C:\Users\>Nuspec.exe
C:\Users\>nuget.exe setApikey %GENGUID% -NonInteractive
C:\Users\>nuget.exe pack .nuspec -IncludeReferencedProjects -properties Configuration=Release -Force
C:\Users\>nuget.exe push *.nupkg -Source https://www.nuget.org/api/v2/package
```