forked from EasyNetQ/EasyNetQ
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Added GitVersion.yml using GitHubFlow branch naming and starting at…
… version 2.0.0 - Updated to RabbitMQ.Client 4.0.0-rc-1 (required several code changes) - Added netstandard1.5 and net451 build targets to the .NET Core project - Renamed DNX to Core in most places - Replaced NET_CORE conditionals with !NETFX - Updated all projects to minimum .NET 4.5.1 (required for RabbitMQ Client 4.0.0-rc-1 - Updated NUnit to the latest version (had to rewrite ExpectedException attribute to Assert.Throws)
- Loading branch information
Showing
112 changed files
with
6,218 additions
and
369 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
assembly-versioning-scheme: MajorMinorPatch | ||
mode: ContinuousDelivery | ||
next-version: 2.0.0 | ||
branches: {} | ||
ignore: | ||
sha: [] |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<packages> | ||
<package id="Newtonsoft.Json" version="8.0.2" targetFramework="net45" /> | ||
<package id="RabbitMQ.Client" version="3.6.0" targetFramework="net45" /> | ||
<package id="RabbitMQ.Client" version="4.0.0-rc-1" targetFramework="net451" /> | ||
</packages> |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
dotnet gitversion | ||
dotnet restore | ||
dotnet pack -c Release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,130 @@ | ||
{ | ||
"version": "2.0.0-radicalgeek-netc0001", | ||
"description": "EasyNetQ", | ||
"title": "EasyNetQ", | ||
"name": "EasyNetQ", | ||
"packOptions": { | ||
"licenseUrl": "https://opensource.org/licenses/MIT", | ||
"projectUrl": "https://github.com/EasyNetQ", | ||
"owners": [ | ||
"Wiebe Tijsma", | ||
"Michael Denny" | ||
], | ||
"tags": [ | ||
"C#", | ||
"RabbitMQ" | ||
] | ||
}, | ||
"authors": [ | ||
"SapientGuardian", | ||
"Wiebe Tijsma", | ||
"Michael Denny" | ||
], | ||
"buildOptions": { | ||
"compile": [ | ||
"../EasyNetQ/*.cs", | ||
"../EasyNetQ/**/*.cs" | ||
] | ||
}, | ||
"dependencies": { | ||
"Newtonsoft.Json": "9.0.1", | ||
"RabbitMQ.Client": "4.0.0-rc-1" | ||
}, | ||
"tools": { | ||
"dotnet-gitversion": { | ||
"version": "1.0.0", | ||
"imports": [ | ||
"dotnet" | ||
] | ||
} | ||
}, | ||
"commands": { | ||
"dn-version": "dotnet gitversion" | ||
}, | ||
"frameworks": { | ||
"netcoreapp1.0": { | ||
"imports": "dnxcore50", | ||
"buildOptions": { | ||
"define": [ | ||
"NET_CORE" | ||
] | ||
}, | ||
"dependencies": { | ||
"System.Diagnostics.Debug": "4.0.11", | ||
"System.Diagnostics.Tools": "4.0.1", | ||
"System.Dynamic.Runtime": "4.0.11", | ||
"System.Globalization": "4.0.11", | ||
"System.IO": "4.1.0", | ||
"System.IO.Compression": "4.1.0", | ||
"System.IO.FileSystem": "4.0.1", | ||
"System.IO.FileSystem.Primitives": "4.0.1", | ||
"System.Linq.Expressions": "4.1.0", | ||
"System.ObjectModel": "4.0.12", | ||
"System.Reflection": "4.1.0", | ||
"System.Reflection.Emit": "4.0.1", | ||
"System.Reflection.Emit.ILGeneration": "4.0.1", | ||
"System.Reflection.Emit.Lightweight": "4.0.1", | ||
"System.Reflection.Extensions": "4.0.1", | ||
"System.Reflection.Primitives": "4.0.1", | ||
"System.Reflection.TypeExtensions": "4.1.0", | ||
"System.Resources.ResourceManager": "4.0.1", | ||
"System.Runtime.Extensions": "4.1.0", | ||
"System.Runtime.Handles": "4.0.1", | ||
"System.Runtime.InteropServices": "4.1.0", | ||
"System.Text.Encoding": "4.0.11", | ||
"System.Text.Encoding.Extensions": "4.0.11", | ||
"System.Threading.Tasks": "4.0.11", | ||
"System.Threading.Timer": "4.0.1", | ||
"Microsoft.Extensions.Logging.TraceSource": "1.0.0" | ||
} | ||
}, | ||
"netstandard1.5": { | ||
"buildOptions": { | ||
"define": [ | ||
"NET_STANDARD" | ||
] | ||
}, | ||
"dependencies": { | ||
"System.Diagnostics.Debug": "4.0.11", | ||
"System.Diagnostics.Tools": "4.0.1", | ||
"System.Dynamic.Runtime": "4.0.11", | ||
"System.Globalization": "4.0.11", | ||
"System.IO": "4.1.0", | ||
"System.IO.Compression": "4.1.0", | ||
"System.IO.FileSystem": "4.0.1", | ||
"System.IO.FileSystem.Primitives": "4.0.1", | ||
"System.Linq.Expressions": "4.1.0", | ||
"System.ObjectModel": "4.0.12", | ||
"System.Reflection": "4.1.0", | ||
"System.Reflection.Emit": "4.0.1", | ||
"System.Reflection.Emit.ILGeneration": "4.0.1", | ||
"System.Reflection.Emit.Lightweight": "4.0.1", | ||
"System.Reflection.Extensions": "4.0.1", | ||
"System.Reflection.Primitives": "4.0.1", | ||
"System.Reflection.TypeExtensions": "4.1.0", | ||
"System.Resources.ResourceManager": "4.0.1", | ||
"System.Runtime.Extensions": "4.1.0", | ||
"System.Runtime.Handles": "4.0.1", | ||
"System.Runtime.InteropServices": "4.1.0", | ||
"System.Text.Encoding": "4.0.11", | ||
"System.Text.Encoding.Extensions": "4.0.11", | ||
"System.Threading.Tasks": "4.0.11", | ||
"System.Threading.Timer": "4.0.1", | ||
"Microsoft.Extensions.Logging.TraceSource": "1.0.0" | ||
} | ||
}, | ||
"net451": { | ||
"frameworkAssemblies": { | ||
"System": "4.0.0.0", | ||
"System.Configuration": "4.0.0.0", | ||
"System.Core": "4.0.0.0", | ||
"System.IO.Compression": "4.0.0.0" | ||
}, | ||
"buildOptions": { | ||
"define": [ | ||
"NETFX" | ||
] | ||
} | ||
} | ||
} | ||
} |
Oops, something went wrong.