Skip to content

Commit

Permalink
Upgrade to RabbitMq.Client 4.0.0-rc1
Browse files Browse the repository at this point in the history
  • Loading branch information
par.dahlman committed Aug 21, 2016
1 parent a13d065 commit 015cd27
Show file tree
Hide file tree
Showing 18 changed files with 21 additions and 8 deletions.
1 change: 1 addition & 0 deletions NuGet.Config
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,6 @@
<add key="api.nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="nuget.org" value="https://www.nuget.org/api/v2/" />
<add key="xunit" value="https://www.myget.org/F/xunit/api/v3/index.json" />
<add key="pivotal" value="https://ci.appveyor.com/nuget/rabbitmq-dotnet-client-ci" />
</packageSources>
</configuration>
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("368be2b7-456d-474f-a460-7c19e633c7db")]
//[assembly: Guid("368be2b7-456d-474f-a460-7c19e633c7db")]
2 changes: 1 addition & 1 deletion src/RawRabbit.Attributes/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("f17abdf4-e121-4641-9b9a-546f5c842ec0")]
//[assembly: Guid("f17abdf4-e121-4641-9b9a-546f5c842ec0")]
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("23381b29-382a-4cf7-b10f-9661c2ea4f75")]
//[assembly: Guid("23381b29-382a-4cf7-b10f-9661c2ea4f75")]
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
using System.Diagnostics;
using System.Linq;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Channel.Abstraction;
using RawRabbit.Extensions.TopologyUpdater.Core.Abstraction;
using RawRabbit.Extensions.TopologyUpdater.Model;
Expand Down
2 changes: 1 addition & 1 deletion src/RawRabbit.Logging.Serilog/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("78c75f6f-e8cf-45fd-9f84-590a05a168d3")]
//[assembly: Guid("78c75f6f-e8cf-45fd-9f84-590a05a168d3")]
1 change: 1 addition & 0 deletions src/RawRabbit/ErrorHandling/DefaultStrategy.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RabbitMQ.Client.Events;
using RawRabbit.Channel.Abstraction;
using RawRabbit.Common;
Expand Down
1 change: 1 addition & 0 deletions src/RawRabbit/Operations/Publisher.cs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Channel.Abstraction;
using RawRabbit.Common;
using RawRabbit.Configuration;
Expand Down
1 change: 1 addition & 0 deletions src/RawRabbit/Operations/Responder.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Channel.Abstraction;
using RawRabbit.Common;
using RawRabbit.Configuration;
Expand Down
1 change: 1 addition & 0 deletions src/RawRabbit/Operations/Subscriber.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Channel.Abstraction;
using RawRabbit.Common;
using RawRabbit.Configuration;
Expand Down
2 changes: 1 addition & 1 deletion src/RawRabbit/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
[assembly: ComVisible(false)]

// The following GUID is for the ID of the typelib if this project is exposed to COM
[assembly: Guid("5bec0b38-6746-47de-b931-b9a7b8e0e732")]
//[assembly: Guid("5bec0b38-6746-47de-b931-b9a7b8e0e732")]
6 changes: 3 additions & 3 deletions src/RawRabbit/project.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"title": "RawRabbit",
"version": "1.9.4-dotnetcore",
"version": "1.9.4.1-dotnetcore",
"authors": [ "pardahlman", "enrique-avalon" ],
"description": "A modern framework for communication over RabbitMq.",
"packOptions": {
Expand All @@ -11,8 +11,8 @@
},

"dependencies": {
"RabbitMQ.Client": "4.0.0-ci-201607111224",
"Newtonsoft.Json": "9.0.1"
"RabbitMQ.Client": "4.0.0-rc-1",
"Newtonsoft.Json": "9.0.1"
},

"frameworks": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Collections.Concurrent;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using RabbitMQ.Client;
using RawRabbit.Configuration;
using RawRabbit.Context;
using RawRabbit.Extensions.CleanEverything;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
using System;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using RabbitMQ.Client;
using RabbitMQ.Client.Exceptions;
using RawRabbit.Configuration;
using RawRabbit.Configuration.Exchange;
Expand All @@ -9,6 +10,7 @@
using RawRabbit.Extensions.TopologyUpdater;
using RawRabbit.IntegrationTests.TestMessages;
using Xunit;
using ExchangeType = RawRabbit.Configuration.Exchange.ExchangeType;

namespace RawRabbit.IntegrationTests.Extensions
{
Expand Down
1 change: 1 addition & 0 deletions test/RawRabbit.IntegrationTests/Features/NackingTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Extensions.DependencyInjection;
using RabbitMQ.Client;
using RawRabbit.Common;
using RawRabbit.Configuration;
using RawRabbit.Context;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using System;
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Common;
using RawRabbit.Configuration.Exchange;
using RawRabbit.IntegrationTests.TestMessages;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Common;
using RawRabbit.IntegrationTests.TestMessages;
using RawRabbit.vNext;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using System.Threading.Tasks;
using RabbitMQ.Client;
using RawRabbit.Common;
using RawRabbit.Configuration.Exchange;
using RawRabbit.IntegrationTests.TestMessages;
Expand Down

0 comments on commit 015cd27

Please sign in to comment.