Skip to content

Commit

Permalink
nuspec and assembly info
Browse files Browse the repository at this point in the history
  • Loading branch information
Scooletz committed May 16, 2014
1 parent 067a633 commit 5585be9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Expand Up @@ -127,6 +127,8 @@ packages/
## TODO: If the tool you use requires repositories.config uncomment the next line
#!packages/repositories.config

nuget.exe

# Enable "build/" folder in the NuGet Packages folder since NuGet packages use it for MSBuild targets
# This line needs to be after the ignore of the build folder (and the packages folder if the line above has been uncommented)
!packages/build/
Expand Down
18 changes: 18 additions & 0 deletions NGitLab.nuspec
@@ -0,0 +1,18 @@
<?xml version="1.0" encoding="utf-8"?>
<package>
<metadata>
<id>NGitLab</id>
<version>1.0.0.0</version>
<authors>Scooletz</authors>
<owners>Scooletz</owners>
<summary>Provides a .NET REST client implementation of GitLab API.</summary>
<description>Provides a .NET REST client implementation of GitLab API with no external dependencies. Uses the private token authentication</description>
<projectUrl>https://github.com/Scooletz/NGitLab</projectUrl>
<licenseUrl>https://github.com/Scooletz/NGitLab/LICENSE</licenseUrl>
<tags>GitLab API NGitlab</tags>
<language>en-US</language>
<releaseNotes>
* 1.0.0.0 - initial, majority of methods work, tests based on the locally run VM
</releaseNotes>
</metadata>
</package>
1 change: 0 additions & 1 deletion NGitLab/NGitLab/Impl/RepositoryClient.cs
Expand Up @@ -54,7 +54,6 @@ public IFilesClient Files
get { return new FileClient(_api, _repoPath); }
}


public IBranchClient Branches
{
get { return new BranchClient(_api, _repoPath); }
Expand Down
2 changes: 1 addition & 1 deletion NGitLab/NGitLab/Properties/AssemblyInfo.cs
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("NGitLab")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("Provides a .NET REST client implementation of GitLab API.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("NGitLab")]
Expand Down

0 comments on commit 5585be9

Please sign in to comment.