Skip to content

Commit

Permalink
Add nuspec file
Browse files Browse the repository at this point in the history
Adjust assembly info for 1.0.0-alpha package release
  • Loading branch information
samcook committed Sep 1, 2014
1 parent ca2144c commit e659eaa
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 2 deletions.
5 changes: 3 additions & 2 deletions RedLock/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("RedLock.net")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyDescription("An implementation of the Redlock distributed lock algorithm")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyProduct("RedLock.net")]
Expand All @@ -32,7 +32,8 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.0.0")]
[assembly: AssemblyVersion("1.0.0")]
[assembly: AssemblyInformationalVersion("1.0.0-alpha")]
[assembly: AssemblyFileVersion("1.0.0.0")]

[assembly: InternalsVisibleTo("RedLock.Tests")]
1 change: 1 addition & 0 deletions RedLock/RedLock.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="RedLock.nuspec" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Expand Down
18 changes: 18 additions & 0 deletions RedLock/RedLock.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>RedLock.net</id>
<version>$version$</version>
<title>RedLock.net</title>
<authors>Sam Cook</authors>
<owners>Sam Cook</owners>
<licenseUrl>https://github.com/samcook/RedLock.net/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/samcook/RedLock.net</projectUrl>
<!-- <iconUrl>http://ICON_URL_HERE_OR_DELETE_THIS_LINE</iconUrl> -->
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>An implementation of the Redlock distributed lock algorithm</description>
<releaseNotes>1.0.0 - Initial release</releaseNotes>
<copyright>Copyright 2014 Sam Cook</copyright>
<tags>RedLock Redis Distributed Lock</tags>
</metadata>
</package>

0 comments on commit e659eaa

Please sign in to comment.