diff --git a/LICENSE b/LICENSE.md similarity index 95% rename from LICENSE rename to LICENSE.md index 08faef3f502cf65868ee17c1e721eea97631ab6f..88461cc3110558eaf045e658592b70870df9ab9f 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 0000000000000000000000000000000000000000..4d252c1ead1c25e4d8ad8e738b54dd2131439682 --- /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 734462808d823bec3d24dbf60b60e4160f949e37..efdc8538e8e17dcdc86bb3ea76d1fa2fd9218058 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 6cf55b3e6738bf779b9ff7a870e580c4fb5e7907..85e76182639c34cdb99e473651988bbca6833ec9 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