From 70477015a9dbe89edf9992df7d512e307bc05607 Mon Sep 17 00:00:00 2001 From: nulltoken Date: Tue, 10 May 2011 21:51:40 +0200 Subject: [PATCH] Prepare NuGet packaging --- LICENSE => LICENSE.md | 2 +- LibGit2Sharp.nuspec | 22 ++++++++++++++++++++++ LibGit2Sharp/Properties/AssemblyInfo.cs | 23 +++++++++++++---------- README.md | 8 ++++++-- 4 files changed, 42 insertions(+), 13 deletions(-) rename LICENSE => LICENSE.md (95%) create mode 100644 LibGit2Sharp.nuspec diff --git a/LICENSE b/LICENSE.md similarity index 95% rename from LICENSE rename to LICENSE.md index 08faef3f..88461cc3 100644 --- a/LICENSE +++ b/LICENSE.md @@ -1,6 +1,6 @@ The MIT License -Copyright (c) 2011 LibGit2Sharp committers +Copyright (c) 2011 LibGit2Sharp contributors Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/LibGit2Sharp.nuspec b/LibGit2Sharp.nuspec new file mode 100644 index 00000000..4d252c1e --- /dev/null +++ b/LibGit2Sharp.nuspec @@ -0,0 +1,22 @@ + + + + LibGit2Sharp + 0.1.0 + LibGit2Sharp contributors + nulltoken + https://github.com/libgit2/libgit2sharp/raw/master/LICENSE.md + https://github.com/libgit2/libgit2sharp/ + false + .Net bindings for libgit2 + libgit2 git wrapper bindings API + + + + + + + + + + \ No newline at end of file diff --git a/LibGit2Sharp/Properties/AssemblyInfo.cs b/LibGit2Sharp/Properties/AssemblyInfo.cs index 73446280..efdc8538 100644 --- a/LibGit2Sharp/Properties/AssemblyInfo.cs +++ b/LibGit2Sharp/Properties/AssemblyInfo.cs @@ -6,14 +6,17 @@ // set of attributes. Change these attribute values to modify the information // associated with an assembly. -[assembly: AssemblyTitle("libgit2sharp")] -[assembly: AssemblyDescription("")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyCompany("")] -[assembly: AssemblyProduct("libgit2sharp")] -[assembly: AssemblyCopyright("Copyright © 2011")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] +[assembly: AssemblyTitle("LibGit2Sharp")] +[assembly: AssemblyDescription(".Net bindings for libgit2")] + +#if DEBUG +[assembly: AssemblyConfiguration("Debug")] +#else +[assembly: AssemblyConfiguration("Release")] +#endif + +[assembly: AssemblyProduct("LibGit2Sharp")] +[assembly: AssemblyCopyright("Copyright © 2011 LibGit2Sharp contributors")] [assembly: CLSCompliant(true)] @@ -38,5 +41,5 @@ // by using the '*' as shown below: // [assembly: AssemblyVersion("1.0.*")] -[assembly: AssemblyVersion("0.1.0.0")] -[assembly: AssemblyFileVersion("0.1.0.0")] \ No newline at end of file +[assembly: AssemblyVersion("0.1.0")] +[assembly: AssemblyFileVersion("0.1.0")] \ No newline at end of file diff --git a/README.md b/README.md index 6cf55b3e..85e76182 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,10 @@ LibGit2Sharp is an thin .Net layer (well.. we _try_ to keep it as thin as possib It provides a very opiniated API which should be very easy to use and discover. +## Download binaries + + - NuGet [package](http://nuget.org/List/Packages/LibGit2Sharp) + ## Quick contributing guide - Fork and clone locally @@ -15,8 +19,8 @@ More thorough information available in the [wiki](https://github.com/libgit2/lib ## Authors -The LibGit2Sharp [committers](https://github.com/libgit2/libgit2sharp/contributors) +The LibGit2Sharp [contributors](https://github.com/libgit2/libgit2sharp/contributors) ## License -The MIT license (Refer to the [LICENSE](https://github.com/libgit2/libgit2sharp/blob/master/LICENSE) file) \ No newline at end of file +The MIT license (Refer to the [LICENSE.md](https://github.com/libgit2/libgit2sharp/blob/master/LICENSE.md) file) \ No newline at end of file -- GitLab