From 648a10431128af700d98b2c41953332451757b40 Mon Sep 17 00:00:00 2001 From: Chris Patterson Date: Sun, 25 Feb 2018 07:56:49 -0600 Subject: [PATCH 1/2] Fixed signing to only be on the net452 assembly --- build.fsx | 2 +- src/Automatonymous/Automatonymous.csproj | 12 +++++++----- 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/build.fsx b/build.fsx index 5d14e2d..42531f5 100644 --- a/build.fsx +++ b/build.fsx @@ -9,7 +9,7 @@ let buildArtifactPath = FullName "./build_artifacts" let packagesPath = FullName "./src/packages" let assemblyVersion = "4.0.0.0" -let baseVersion = "4.0.0" +let baseVersion = "4.0.1" let envVersion = (environVarOrDefault "APPVEYOR_BUILD_VERSION" (baseVersion + ".0")) let buildVersion = (envVersion.Substring(0, envVersion.LastIndexOf('.'))) diff --git a/src/Automatonymous/Automatonymous.csproj b/src/Automatonymous/Automatonymous.csproj index 5184fef..6d87c80 100644 --- a/src/Automatonymous/Automatonymous.csproj +++ b/src/Automatonymous/Automatonymous.csproj @@ -1,8 +1,6 @@  netstandard2.0;net452 - True - ../../Automatonymous.snk portable @@ -19,13 +17,17 @@ 1701;1702;1705;1591 - - + + + + True + ../../Automatonymous.snk + $(DefineConstants);NETCORE - + \ No newline at end of file From 63ecf95c2385ecda252f037cc32a3d1c62868731 Mon Sep 17 00:00:00 2001 From: Christopher Cook Date: Wed, 28 Feb 2018 10:46:23 +0800 Subject: [PATCH 2/2] Minor text fixes --- docs/README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/README.md b/docs/README.md index 8e56d95..e9b89ed 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1,20 +1,20 @@ # Automatonymous -Automatonymous is a state machine library for .NET developers. A -utomatonymous provides a fluent syntax for declaring state machines, +Automatonymous is a state machine library for .NET developers. Automatonymous +provides a fluent syntax for declaring state machines, including the states, events (both trigger and data events are supported), -and state/event activities. While surprising easy to use for simple state +and state/event activities. While surprisingly easy to use for simple state machines, Automatonymous has many advanced features that make it usable in a variety of contexts. Automatonymous is completely open source and licensed under the very -permissive Apache 2.0 license, making usable at no cost to anyone for +permissive Apache 2.0 license, making it usable at no cost to anyone for both commercial and non-commercial use. ## MassTransit Automatonymous is used to create sagas (process managers) in [MassTransit][1] - -a free open-source messaging framework. [Take a look][2] how they both +a free open-source messaging framework. [Take a look][2] at how they both play nicely together. ## Cry for help