-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #114 from nickntg/nuget
Nuget command for Windows
- Loading branch information
Showing
4 changed files
with
25 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd"> | ||
<metadata> | ||
<id>C-Sharp-Algorithms</id> | ||
<version>1.0.0</version> | ||
<title>C-Sharp-Algorithms</title> | ||
<authors>Ahmad Alhour</authors> | ||
<owners>Ahmad Alhour</owners> | ||
<requireLicenseAcceptance>true</requireLicenseAcceptance> | ||
<license type="expression">MIT</license> | ||
<projectUrl>https://github.com/aalhour/C-Sharp-Algorithms</projectUrl> | ||
<icon>images\icon.png</icon> | ||
<description>Plug-and-play class-library project of standard Data Structures and Algorithms in C#.</description> | ||
</metadata> | ||
<files> | ||
<file src="..\Algorithms\bin\Release\**\*.*" target="lib" /> | ||
<file src=".\*.*" exclude="*.cmd" /> | ||
<file src=".\images\icon.png" target="images\" /> | ||
</files> | ||
</package> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
cd .. | ||
dotnet build -c Release | ||
cd Nuget | ||
nuget pack c-sharp-algorithms.nuspec -Exclude .\*.* | ||
nuget push C-Sharp-Algorithms.1.0.0.nupkg -Source https://api.nuget.org/v3/index.json |