Skip to content

Commit 1172203

Browse files
committed
Updated all packages and fixed up unit tests
1 parent ad1e67c commit 1172203

File tree

44 files changed

+286
-240
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+286
-240
lines changed

Bebbs.Harmonize.Harmony/Bebbs.Harmonize.With.Harmony.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -41,19 +41,19 @@
4141
</Reference>
4242
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4343
<SpecificVersion>False</SpecificVersion>
44-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
44+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4545
</Reference>
4646
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
4747
<SpecificVersion>False</SpecificVersion>
4848
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
4949
</Reference>
50-
<Reference Include="Reactive.EventAggregator, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL">
50+
<Reference Include="Reactive.EventAggregator, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
5151
<SpecificVersion>False</SpecificVersion>
52-
<HintPath>..\packages\Reactive.EventAggregator.1.1.0\lib\Net45\Reactive.EventAggregator.dll</HintPath>
52+
<HintPath>..\packages\Reactive.EventAggregator.2.0.0\lib\net45\Reactive.EventAggregator.dll</HintPath>
5353
</Reference>
54-
<Reference Include="ServiceStack.Text, Version=4.0.30.0, Culture=neutral, processorArchitecture=MSIL">
54+
<Reference Include="ServiceStack.Text, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
5555
<SpecificVersion>False</SpecificVersion>
56-
<HintPath>..\packages\ServiceStack.Text.4.0.30\lib\net40\ServiceStack.Text.dll</HintPath>
56+
<HintPath>..\packages\ServiceStack.Text.4.0.32\lib\net40\ServiceStack.Text.dll</HintPath>
5757
</Reference>
5858
<Reference Include="System" />
5959
<Reference Include="System.Core" />

Bebbs.Harmonize.Harmony/Messages/Mediator.cs

+17-2
Original file line numberDiff line numberDiff line change
@@ -9,15 +9,30 @@ public interface IMediator : IEventAggregator { }
99

1010
internal class Mediator : IMediator
1111
{
12-
private readonly EventAggregator _aggregator;
13-
private readonly EventLoopScheduler _scheduler;
12+
private EventAggregator _aggregator;
13+
private EventLoopScheduler _scheduler;
1414

1515
public Mediator()
1616
{
1717
_aggregator = new EventAggregator();
1818
_scheduler = new EventLoopScheduler();
1919
}
2020

21+
public void Dispose()
22+
{
23+
if (_aggregator != null)
24+
{
25+
_aggregator.Dispose();
26+
_aggregator = null;
27+
}
28+
29+
if (_scheduler != null)
30+
{
31+
_scheduler.Dispose();
32+
_scheduler = null;
33+
}
34+
}
35+
2136
public IObservable<TEvent> GetEvent<TEvent>()
2237
{
2338
return _aggregator.GetEvent<TEvent>().ObserveOn(_scheduler);
+3-3
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="EventSourceProxy" version="3.0.3" targetFramework="net45" />
4-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
4+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
55
<package id="Ninject" version="3.2.2.0" targetFramework="net45" />
6-
<package id="Reactive.EventAggregator" version="1.1.0" targetFramework="net45" />
6+
<package id="Reactive.EventAggregator" version="2.0.0" targetFramework="net45" />
77
<package id="Rx-Core" version="2.2.5" targetFramework="net45" />
88
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net45" />
99
<package id="Rx-Linq" version="2.2.5" targetFramework="net45" />
1010
<package id="Rx-Main" version="2.2.5" targetFramework="net45" />
1111
<package id="Rx-PlatformServices" version="2.2.5" targetFramework="net45" />
12-
<package id="ServiceStack.Text" version="4.0.30" targetFramework="net45" />
12+
<package id="ServiceStack.Text" version="4.0.32" targetFramework="net45" />
1313
</packages>

Bebbs.Harmonize.Host/Bebbs.Harmonize.Host.csproj

+5-5
Original file line numberDiff line numberDiff line change
@@ -50,19 +50,19 @@
5050
</Reference>
5151
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5252
<SpecificVersion>False</SpecificVersion>
53-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
53+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5454
</Reference>
5555
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
5656
<SpecificVersion>False</SpecificVersion>
5757
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
5858
</Reference>
59-
<Reference Include="Reactive.EventAggregator, Version=1.0.1.0, Culture=neutral, processorArchitecture=MSIL">
59+
<Reference Include="Reactive.EventAggregator, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
6060
<SpecificVersion>False</SpecificVersion>
61-
<HintPath>..\packages\Reactive.EventAggregator.1.1.0\lib\Net45\Reactive.EventAggregator.dll</HintPath>
61+
<HintPath>..\packages\Reactive.EventAggregator.2.0.0\lib\net45\Reactive.EventAggregator.dll</HintPath>
6262
</Reference>
63-
<Reference Include="SimpleConfig, Version=1.0.31.0, Culture=neutral, processorArchitecture=MSIL">
63+
<Reference Include="SimpleConfig, Version=1.0.33.0, Culture=neutral, processorArchitecture=MSIL">
6464
<SpecificVersion>False</SpecificVersion>
65-
<HintPath>..\packages\SimpleConfig.1.0.31.0\lib\SimpleConfig.dll</HintPath>
65+
<HintPath>..\packages\SimpleConfig.1.0.33.0\lib\SimpleConfig.dll</HintPath>
6666
</Reference>
6767
<Reference Include="System" />
6868
<Reference Include="System.Core" />

Bebbs.Harmonize.Host/packages.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<package id="Bender" version="3.0.1.0" targetFramework="net45" />
44
<package id="EventSourceProxy" version="3.0.3" targetFramework="net45" />
55
<package id="flexo" version="1.0.19.0" targetFramework="net45" />
6-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
6+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
77
<package id="Ninject" version="3.2.2.0" targetFramework="net45" />
8-
<package id="Reactive.EventAggregator" version="1.1.0" targetFramework="net45" />
8+
<package id="Reactive.EventAggregator" version="2.0.0" targetFramework="net45" />
99
<package id="Rx-Core" version="2.2.5" targetFramework="net45" />
1010
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net45" />
1111
<package id="Rx-Linq" version="2.2.5" targetFramework="net45" />
1212
<package id="Rx-Main" version="2.2.5" targetFramework="net45" />
1313
<package id="Rx-PlatformServices" version="2.2.5" targetFramework="net45" />
14-
<package id="SimpleConfig" version="1.0.31.0" targetFramework="net45" />
14+
<package id="SimpleConfig" version="1.0.33.0" targetFramework="net45" />
1515
</packages>

Bebbs.Harmonize.State.Tests/Bebbs.Harmonize.State.Tests.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -37,17 +37,17 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<Reference Include="FakeItEasy, Version=1.23.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
40+
<Reference Include="FakeItEasy, Version=1.24.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
4141
<SpecificVersion>False</SpecificVersion>
42-
<HintPath>..\packages\FakeItEasy.1.23.0\lib\net40\FakeItEasy.dll</HintPath>
42+
<HintPath>..\packages\FakeItEasy.1.24.0\lib\net40\FakeItEasy.dll</HintPath>
4343
</Reference>
44-
<Reference Include="FluentAssertions, Version=3.1.229.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
44+
<Reference Include="FluentAssertions, Version=3.2.1.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4545
<SpecificVersion>False</SpecificVersion>
46-
<HintPath>..\packages\FluentAssertions.3.1.229\lib\net45\FluentAssertions.dll</HintPath>
46+
<HintPath>..\packages\FluentAssertions.3.2.1\lib\net45\FluentAssertions.dll</HintPath>
4747
</Reference>
48-
<Reference Include="FluentAssertions.Core, Version=3.1.229.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
48+
<Reference Include="FluentAssertions.Core, Version=3.2.1.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
4949
<SpecificVersion>False</SpecificVersion>
50-
<HintPath>..\packages\FluentAssertions.3.1.229\lib\net45\FluentAssertions.Core.dll</HintPath>
50+
<HintPath>..\packages\FluentAssertions.3.2.1\lib\net45\FluentAssertions.Core.dll</HintPath>
5151
</Reference>
5252
<Reference Include="System" />
5353
<Reference Include="System.Xml" />
+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="FakeItEasy" version="1.23.0" targetFramework="net45" />
4-
<package id="FluentAssertions" version="3.1.229" targetFramework="net45" />
3+
<package id="FakeItEasy" version="1.24.0" targetFramework="net45" />
4+
<package id="FluentAssertions" version="3.2.1" targetFramework="net45" />
55
</packages>

Bebbs.Harmonize.State/Bebbs.Harmonize.State.csproj

+9-7
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,25 @@
4444
<SpecificVersion>False</SpecificVersion>
4545
<HintPath>..\packages\EventSourceProxy.3.0.3\lib\EventSourceProxy.dll</HintPath>
4646
</Reference>
47-
<Reference Include="EventStore.ClientAPI">
48-
<HintPath>..\packages\EventStore.Client.2.0.2\lib\net40\EventStore.ClientAPI.dll</HintPath>
47+
<Reference Include="EventStore.ClientAPI, Version=3.0.1.0, Culture=neutral, processorArchitecture=MSIL">
48+
<SpecificVersion>False</SpecificVersion>
49+
<HintPath>..\packages\EventStore.Client.3.0.1\lib\net40\EventStore.ClientAPI.dll</HintPath>
4950
</Reference>
5051
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
5152
<SpecificVersion>False</SpecificVersion>
52-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
53+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
5354
</Reference>
5455
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
5556
<SpecificVersion>False</SpecificVersion>
5657
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
5758
</Reference>
58-
<Reference Include="Reactive.EventAggregator">
59-
<HintPath>..\packages\Reactive.EventAggregator.1.1.0\lib\Net45\Reactive.EventAggregator.dll</HintPath>
59+
<Reference Include="Reactive.EventAggregator, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
60+
<SpecificVersion>False</SpecificVersion>
61+
<HintPath>..\packages\Reactive.EventAggregator.2.0.0\lib\net45\Reactive.EventAggregator.dll</HintPath>
6062
</Reference>
61-
<Reference Include="ServiceStack.Text, Version=4.0.30.0, Culture=neutral, processorArchitecture=MSIL">
63+
<Reference Include="ServiceStack.Text, Version=4.0.32.0, Culture=neutral, processorArchitecture=MSIL">
6264
<SpecificVersion>False</SpecificVersion>
63-
<HintPath>..\packages\ServiceStack.Text.4.0.30\lib\net40\ServiceStack.Text.dll</HintPath>
65+
<HintPath>..\packages\ServiceStack.Text.4.0.32\lib\net40\ServiceStack.Text.dll</HintPath>
6466
</Reference>
6567
<Reference Include="System" />
6668
<Reference Include="System.Core" />

Bebbs.Harmonize.State/Store.cs

+5-5
Original file line numberDiff line numberDiff line change
@@ -59,11 +59,11 @@ public async Task Start()
5959
}
6060

6161
ConnectionSettings connectionSettings = ConnectionSettings.Create();
62-
connectionSettings.Connected = (c, e) => Instrumentation.Store.ConnectedToEventStore(e.Address, e.Port);
63-
connectionSettings.Disconnected = (c, e) => Instrumentation.Store.DisconnectedFromEventStore(e.Address, e.Port);
64-
connectionSettings.ErrorOccurred = (c, e) => Instrumentation.Store.EventStoreErrorOccured(e);
65-
connectionSettings.Reconnecting = (c) => Instrumentation.Store.ReconnectingToEventStore();
66-
connectionSettings.AuthenticationFailed = (c, s) => Instrumentation.Store.EventStoreAuthenticationFailed(s);
62+
//connectionSettings.Connected = (c, e) => Instrumentation.Store.ConnectedToEventStore(e.Address, e.Port);
63+
//connectionSettings.Disconnected = (c, e) => Instrumentation.Store.DisconnectedFromEventStore(e.Address, e.Port);
64+
//connectionSettings.ErrorOccurred = (c, e) => Instrumentation.Store.EventStoreErrorOccured(e);
65+
//connectionSettings.Reconnecting = (c) => Instrumentation.Store.ReconnectingToEventStore();
66+
//connectionSettings.AuthenticationFailed = (c, s) => Instrumentation.Store.EventStoreAuthenticationFailed(s);
6767

6868
IEventStoreConnection connection = EventStoreConnection.Create(connectionSettings, new IPEndPoint(IPAddress.Parse(IpAddress), Port), "Harmonize");
6969

Bebbs.Harmonize.State/packages.config

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22
<packages>
33
<package id="AutoMapper" version="3.2.1" targetFramework="net45" />
44
<package id="EventSourceProxy" version="3.0.3" targetFramework="net45" />
5-
<package id="EventStore.Client" version="2.0.2" targetFramework="net45" />
6-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
5+
<package id="EventStore.Client" version="3.0.1" targetFramework="net45" />
6+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
77
<package id="Ninject" version="3.2.2.0" targetFramework="net45" />
8-
<package id="Reactive.EventAggregator" version="1.1.0" targetFramework="net45" />
8+
<package id="Reactive.EventAggregator" version="2.0.0" targetFramework="net45" />
99
<package id="Rx-Core" version="2.2.5" targetFramework="net45" />
1010
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net45" />
1111
<package id="Rx-Linq" version="2.2.5" targetFramework="net45" />
1212
<package id="Rx-Main" version="2.2.5" targetFramework="net45" />
1313
<package id="Rx-PlatformServices" version="2.2.5" targetFramework="net45" />
14-
<package id="ServiceStack.Text" version="4.0.30" targetFramework="net45" />
14+
<package id="ServiceStack.Text" version="4.0.32" targetFramework="net45" />
1515
</packages>

Bebbs.Harmonize.With.Alljoyn/Bebbs.Harmonize.With.Alljoyn.csproj

+4-3
Original file line numberDiff line numberDiff line change
@@ -44,14 +44,15 @@
4444
</Reference>
4545
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4646
<SpecificVersion>False</SpecificVersion>
47-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
47+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4848
</Reference>
4949
<Reference Include="Ninject, Version=3.2.0.0, Culture=neutral, PublicKeyToken=c7192dc5380945e7, processorArchitecture=MSIL">
5050
<SpecificVersion>False</SpecificVersion>
5151
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
5252
</Reference>
53-
<Reference Include="Reactive.EventAggregator">
54-
<HintPath>..\packages\Reactive.EventAggregator.1.1.0\lib\Net45\Reactive.EventAggregator.dll</HintPath>
53+
<Reference Include="Reactive.EventAggregator, Version=2.0.0.0, Culture=neutral, processorArchitecture=MSIL">
54+
<SpecificVersion>False</SpecificVersion>
55+
<HintPath>..\packages\Reactive.EventAggregator.2.0.0\lib\net45\Reactive.EventAggregator.dll</HintPath>
5556
</Reference>
5657
<Reference Include="System" />
5758
<Reference Include="System.Core" />

Bebbs.Harmonize.With.Alljoyn/packages.config

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="EventSourceProxy" version="3.0.3" targetFramework="net45" />
4-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
4+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
55
<package id="Ninject" version="3.2.2.0" targetFramework="net45" />
6-
<package id="Reactive.EventAggregator" version="1.1.0" targetFramework="net45" />
6+
<package id="Reactive.EventAggregator" version="2.0.0" targetFramework="net45" />
77
<package id="Rx-Core" version="2.2.5" targetFramework="net45" />
88
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net45" />
99
<package id="Rx-Linq" version="2.2.5" targetFramework="net45" />

Bebbs.Harmonize.With.LightwaveRf/Bebbs.Harmonize.With.LightwaveRf.csproj

+7-5
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,14 @@
4545
</Reference>
4646
<Reference Include="Newtonsoft.Json, Version=6.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4747
<SpecificVersion>False</SpecificVersion>
48-
<HintPath>..\packages\Newtonsoft.Json.6.0.4\lib\net45\Newtonsoft.Json.dll</HintPath>
48+
<HintPath>..\packages\Newtonsoft.Json.6.0.6\lib\net45\Newtonsoft.Json.dll</HintPath>
4949
</Reference>
5050
<Reference Include="Ninject">
5151
<HintPath>..\packages\Ninject.3.2.2.0\lib\net45-full\Ninject.dll</HintPath>
5252
</Reference>
53-
<Reference Include="SimpleConfig">
54-
<HintPath>..\packages\SimpleConfig.1.0.31.0\lib\SimpleConfig.dll</HintPath>
53+
<Reference Include="SimpleConfig, Version=1.0.33.0, Culture=neutral, processorArchitecture=MSIL">
54+
<SpecificVersion>False</SpecificVersion>
55+
<HintPath>..\packages\SimpleConfig.1.0.33.0\lib\SimpleConfig.dll</HintPath>
5556
</Reference>
5657
<Reference Include="System" />
5758
<Reference Include="System.Core" />
@@ -75,8 +76,9 @@
7576
<Reference Include="Microsoft.CSharp" />
7677
<Reference Include="System.Data" />
7778
<Reference Include="System.Xml" />
78-
<Reference Include="Topshelf">
79-
<HintPath>..\packages\Topshelf.3.1.3\lib\net40-full\Topshelf.dll</HintPath>
79+
<Reference Include="Topshelf, Version=3.1.135.0, Culture=neutral, PublicKeyToken=b800c4cfcdeea87b, processorArchitecture=MSIL">
80+
<SpecificVersion>False</SpecificVersion>
81+
<HintPath>..\packages\Topshelf.3.1.4\lib\net40-full\Topshelf.dll</HintPath>
8082
</Reference>
8183
</ItemGroup>
8284
<ItemGroup>

Bebbs.Harmonize.With.LightwaveRf/packages.config

+3-3
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@
33
<package id="Bender" version="3.0.1.0" targetFramework="net45" />
44
<package id="EventSourceProxy" version="3.0.3" targetFramework="net45" />
55
<package id="flexo" version="1.0.19.0" targetFramework="net45" />
6-
<package id="Newtonsoft.Json" version="6.0.4" targetFramework="net45" />
6+
<package id="Newtonsoft.Json" version="6.0.6" targetFramework="net45" />
77
<package id="Ninject" version="3.2.2.0" targetFramework="net45" />
88
<package id="Rx-Core" version="2.2.5" targetFramework="net45" />
99
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net45" />
1010
<package id="Rx-Linq" version="2.2.5" targetFramework="net45" />
1111
<package id="Rx-Main" version="2.2.5" targetFramework="net45" />
1212
<package id="Rx-PlatformServices" version="2.2.5" targetFramework="net45" />
13-
<package id="SimpleConfig" version="1.0.31.0" targetFramework="net45" />
14-
<package id="Topshelf" version="3.1.3" targetFramework="net45" />
13+
<package id="SimpleConfig" version="1.0.33.0" targetFramework="net45" />
14+
<package id="Topshelf" version="3.1.4" targetFramework="net45" />
1515
</packages>

Bebbs.Harmonize.With.Message.As.Hml.Tests/Bebbs.Harmonize.With.Message.As.Hml.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<Reference Include="FakeItEasy, Version=1.23.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
40+
<Reference Include="FakeItEasy, Version=1.24.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
4141
<SpecificVersion>False</SpecificVersion>
42-
<HintPath>..\packages\FakeItEasy.1.23.0\lib\net40\FakeItEasy.dll</HintPath>
42+
<HintPath>..\packages\FakeItEasy.1.24.0\lib\net40\FakeItEasy.dll</HintPath>
4343
</Reference>
4444
<Reference Include="System" />
4545
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="FakeItEasy" version="1.23.0" targetFramework="net45" />
3+
<package id="FakeItEasy" version="1.24.0" targetFramework="net45" />
44
</packages>

Bebbs.Harmonize.With.Messaging.Over.RabbitMq.Tests/Bebbs.Harmonize.With.Messaging.Over.RabbitMq.Tests.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<WarningLevel>4</WarningLevel>
3838
</PropertyGroup>
3939
<ItemGroup>
40-
<Reference Include="FakeItEasy, Version=1.23.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
40+
<Reference Include="FakeItEasy, Version=1.24.0.0, Culture=neutral, PublicKeyToken=eff28e2146d5fd2c, processorArchitecture=MSIL">
4141
<SpecificVersion>False</SpecificVersion>
42-
<HintPath>..\packages\FakeItEasy.1.23.0\lib\net40\FakeItEasy.dll</HintPath>
42+
<HintPath>..\packages\FakeItEasy.1.24.0\lib\net40\FakeItEasy.dll</HintPath>
4343
</Reference>
4444
<Reference Include="System" />
4545
</ItemGroup>
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="FakeItEasy" version="1.23.0" targetFramework="net45" />
3+
<package id="FakeItEasy" version="1.24.0" targetFramework="net45" />
44
</packages>

0 commit comments

Comments
 (0)