Skip to content

Commit

Permalink
Merge pull request #11 from Aaronontheweb/package-metadata
Browse files Browse the repository at this point in the history
integrating with current FAKE setup for nuget publish
  • Loading branch information
Horusiath authored Jan 3, 2017
2 parents 4482d6d + e1cf2b6 commit cce55e7
Show file tree
Hide file tree
Showing 12 changed files with 39 additions and 10,609 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ bld/
.fake/
TestResults/
PerfResults/
*.lock.json

# Visual Studo 2015 cache/options directory
.vs/
Expand Down
2 changes: 1 addition & 1 deletion Hyperion.FSharpTestTypes/AssemblyInfo.fs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ open System.Runtime.InteropServices
[<assembly: AssemblyTitleAttribute("Hyperion")>]
[<assembly: AssemblyProductAttribute("Hyperion")>]
[<assembly: AssemblyDescriptionAttribute("Binary serializer for POCO objects")>]
[<assembly: AssemblyCopyrightAttribute("Copyright 2016 Akka.NET Team")>]
[<assembly: AssemblyCopyrightAttribute("Copyright 2016 Akka.NET Team")>]
[<assembly: AssemblyCompanyAttribute("Akka.NET Team")>]
[<assembly: ComVisibleAttribute(false)>]
[<assembly: CLSCompliantAttribute(true)>]
Expand Down
4 changes: 4 additions & 0 deletions Hyperion/Hyperion.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,9 @@
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Internal\Annotations.cs" />
<Compile Include="ByteArrayKey.cs" />
<Compile Include="ByteArrayKeyComparer.cs" />
Expand Down Expand Up @@ -118,6 +121,7 @@
<Compile Include="ValueSerializers\ValueSerializer.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Hyperion.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
19 changes: 19 additions & 0 deletions Hyperion/Hyperion.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>@project@</id>
<title>@project@@title@</title>
<version>@build.number@</version>
<authors>@authors@</authors>
<owners>@authors@</owners>
<description>@description@</description>
<licenseUrl>https://github.com/akkadotnet/Hyperion/blob/master/LICENSE</licenseUrl>
<projectUrl>https://github.com/akkadotnet/Hyperion</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<releaseNotes>@releaseNotes@</releaseNotes>
<copyright>@copyright@</copyright>
<tags>@tags@</tags>
@dependencies@
@references@
</metadata>
</package>
6 changes: 3 additions & 3 deletions Hyperion/Hyperion.project.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"version": "0.8.1-*",
"version": "0.9.0-*",
"description": "Hyperion, fast binary POCO serializer",
"authors": [
"Roger Johansson"
"akkadotnet"
],
"packOptions": {
"tags": [
Expand All @@ -12,7 +12,7 @@
],
"projectUrl": "https://github.com/akkadotnet/Hyperion",
"licenseUrl": "https://github.com/akkadotnet/Hyperion/blob/master/LICENSE",
"iconUrl": "https://raw.githubusercontent.com/hmemcpy/NServiceBus.Hyperion/master/icon.png"
"iconUrl": ""
},
"dependencies": {
},
Expand Down
Loading

0 comments on commit cce55e7

Please sign in to comment.