Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Minor text fixes #46

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build.fsx
Original file line number Diff line number Diff line change
Expand Up @@ -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('.')))
Expand Down
10 changes: 5 additions & 5 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 7 additions & 5 deletions src/Automatonymous/Automatonymous.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net452</TargetFrameworks>
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>../../Automatonymous.snk</AssemblyOriginatorKeyFile>
<DebugType>portable</DebugType>
</PropertyGroup>
<PropertyGroup>
Expand All @@ -19,13 +17,17 @@
<NoWarn>1701;1702;1705;1591</NoWarn>
</PropertyGroup>
<ItemGroup Condition=" '$(TargetFramework)' == 'net452' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System"/>
<Reference Include="Microsoft.CSharp"/>
</ItemGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'net452' ">
<SignAssembly>True</SignAssembly>
<AssemblyOriginatorKeyFile>../../Automatonymous.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' ">
<DefineConstants>$(DefineConstants);NETCORE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="GreenPipes" Version="2.0.0" />
<PackageReference Include="GreenPipes" Version="2.0.0"/>
</ItemGroup>
</Project>