Skip to content

Commit dbf2031

Browse files
authored
Merge pull request #572 from billsegall/csharp-release
nuget release
2 parents 3061d10 + 3d88af6 commit dbf2031

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

csharp/.nuget/SBE.nuspec

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package>
33
<metadata>
44
<id>sbe-tool</id>
5-
<version>0.1.7.9-alpha-3</version>
5+
<version>0.1.8.1-beta-1</version>
66
<title>Simple Binary Encoding for .NET</title>
77
<authors>Bill Segall, MarketFactory Inc, Adaptive Consulting</authors>
88
<owners>Bill Segall, MarketFactory Inc, Adaptive Consulting</owners>
@@ -11,6 +11,8 @@
1111
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1212
<description>This package contains all you need to define SBE messages and generate C# encoders and decoders. See https://github.com/real-logic/simple-binary-encoding for more detailed instructions</description>
1313
<releaseNotes />
14+
<summary>Simple Binary Encoding (SBE) for .NET</summary>
15+
<language>C#</language>
1416
<copyright>Copyright (C) Bill Segall 2018, MarketFactory Inc 2017, Adaptive Consulting 2013</copyright>
1517
<tags>SBE Marshaling Low Latency Simple Binary Encoding</tags>
1618
</metadata>

csharp/.nuget/do-release.sh

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
#! /usr/bin/env bash
22

3-
# Ideally we'd get this from top level version.txt but this release is done outside
4-
# the release process so we end up doing this by hand. During dev this works.
3+
4+
# Ideally we'd get this from top level version.txt but this release is
5+
# done outside # the release process so we end up doing this by hand.
56
ROOTDIR=`dirname $0`
67
VERSIONTXT=`cat $ROOTDIR/../../version.txt`
78
VERSION=${VERSIONTXT%-SNAPSHOT} # Seems to be what's used
89

10+
echo "Version check"
11+
echo "version.txt=$VERSION"
12+
echo "SBE.nuspec=`grep '<version>' SBE.nuspec`"
13+
echo
14+
915
# Copy in the jar
1016
cp $ROOTDIR/../../sbe-tool/build/libs/sbe-tool-$VERSIONTXT.jar $ROOTDIR/sbe-tool-all.jar
1117

csharp/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Overview
22
========
33

44
There is a [user guide](https://github.com/real-logic/simple-binary-encoding/wiki/Csharp-User-Guide) for people who wish
5-
to use the csharp generator. This document is to assist developers working on the the SBE C# generator itself.
5+
to use the C# generator. This document is to assist developers working on the the SBE C# generator itself.
66

77

88
Environment
@@ -11,7 +11,7 @@ Java and gradlew are used to build the generator.
1111

1212
git bash and shell scripts are used for scripting.
1313

14-
The csharp code is built using Visual Studio Community 2017.
14+
The C# code is built using Visual Studio Community 2017.
1515

1616
Code Layout
1717
-----------

0 commit comments

Comments
 (0)