File tree Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Expand file tree Collapse file tree 3 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 2
2
<package >
3
3
<metadata >
4
4
<id >sbe-tool</id >
5
- <version >0.1.7.9-alpha-3 </version >
5
+ <version >0.1.8.1-beta-1 </version >
6
6
<title >Simple Binary Encoding for .NET</title >
7
7
<authors >Bill Segall, MarketFactory Inc, Adaptive Consulting</authors >
8
8
<owners >Bill Segall, MarketFactory Inc, Adaptive Consulting</owners >
11
11
<requireLicenseAcceptance >false</requireLicenseAcceptance >
12
12
<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 >
13
13
<releaseNotes />
14
+ <summary >Simple Binary Encoding (SBE) for .NET</summary >
15
+ <language >C#</language >
14
16
<copyright >Copyright (C) Bill Segall 2018, MarketFactory Inc 2017, Adaptive Consulting 2013</copyright >
15
17
<tags >SBE Marshaling Low Latency Simple Binary Encoding</tags >
16
18
</metadata >
Original file line number Diff line number Diff line change 1
1
#! /usr/bin/env bash
2
2
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.
5
6
ROOTDIR=` dirname $0 `
6
7
VERSIONTXT=` cat $ROOTDIR /../../version.txt`
7
8
VERSION=${VERSIONTXT% -SNAPSHOT} # Seems to be what's used
8
9
10
+ echo " Version check"
11
+ echo " version.txt=$VERSION "
12
+ echo " SBE.nuspec=` grep ' <version>' SBE.nuspec` "
13
+ echo
14
+
9
15
# Copy in the jar
10
16
cp $ROOTDIR /../../sbe-tool/build/libs/sbe-tool-$VERSIONTXT .jar $ROOTDIR /sbe-tool-all.jar
11
17
Original file line number Diff line number Diff line change 2
2
========
3
3
4
4
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.
6
6
7
7
8
8
Environment
@@ -11,7 +11,7 @@ Java and gradlew are used to build the generator.
11
11
12
12
git bash and shell scripts are used for scripting.
13
13
14
- The csharp code is built using Visual Studio Community 2017.
14
+ The C# code is built using Visual Studio Community 2017.
15
15
16
16
Code Layout
17
17
-----------
You can’t perform that action at this time.
0 commit comments