diff --git a/.gitignore b/.gitignore index 748683d0..b18e58bb 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ diff --git a/NGitLab.nuspec b/NGitLab.nuspec new file mode 100644 index 00000000..7992006c --- /dev/null +++ b/NGitLab.nuspec @@ -0,0 +1,18 @@ + + + + NGitLab + 1.0.0.0 + Scooletz + Scooletz + Provides a .NET REST client implementation of GitLab API. + Provides a .NET REST client implementation of GitLab API with no external dependencies. Uses the private token authentication + https://github.com/Scooletz/NGitLab + https://github.com/Scooletz/NGitLab/LICENSE + GitLab API NGitlab + en-US + + * 1.0.0.0 - initial, majority of methods work, tests based on the locally run VM + + + \ No newline at end of file diff --git a/NGitLab/NGitLab/Impl/RepositoryClient.cs b/NGitLab/NGitLab/Impl/RepositoryClient.cs index 269f9c9c..77ea961b 100644 --- a/NGitLab/NGitLab/Impl/RepositoryClient.cs +++ b/NGitLab/NGitLab/Impl/RepositoryClient.cs @@ -54,7 +54,6 @@ public IFilesClient Files get { return new FileClient(_api, _repoPath); } } - public IBranchClient Branches { get { return new BranchClient(_api, _repoPath); } diff --git a/NGitLab/NGitLab/Properties/AssemblyInfo.cs b/NGitLab/NGitLab/Properties/AssemblyInfo.cs index 5b3d6d10..0fd51b8d 100644 --- a/NGitLab/NGitLab/Properties/AssemblyInfo.cs +++ b/NGitLab/NGitLab/Properties/AssemblyInfo.cs @@ -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")]