Skip to content

Commit

Permalink
Updated dependencies.
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
Lakritzator committed Aug 29, 2016
1 parent 331e2bb commit 6287edf
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 8 deletions.
4 changes: 2 additions & 2 deletions Dapplo.InterfaceImpl.Tests/Dapplo.InterfaceImpl.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,8 @@
<HintPath>..\packages\Dapplo.Log.XUnit.0.5.4\lib\net46\Dapplo.Log.XUnit.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.116.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.116\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.122.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.122\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
3 changes: 1 addition & 2 deletions Dapplo.InterfaceImpl.Tests/NotifyPropertyChangedTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@
using Xunit;
using Xunit.Abstractions;
using Dapplo.Utils.Events;
using Dapplo.Utils.Extensions;

#endregion

Expand Down Expand Up @@ -56,7 +55,7 @@ public void TestNotifyPropertyChanged_EventObservable()
{
PropertyChangedEventArgs testValue = null;
var eO = EventObservable.From(_notifyPropertyChangedTest);
eO.OnEach(pce => testValue = pce.Args);
eO.ForEach(pce => testValue = pce.Args);
eO.Trigger(EventData.Create(this, new PropertyChangedEventArgs("Name")));
Assert.Equal("Name", testValue.PropertyName);
}
Expand Down
2 changes: 1 addition & 1 deletion Dapplo.InterfaceImpl.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<package id="coveralls.io" version="1.3.4" targetFramework="net46" />
<package id="Dapplo.Log.Facade" version="0.5.4" targetFramework="net46" />
<package id="Dapplo.Log.XUnit" version="0.5.4" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.116" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.122" targetFramework="net46" />
<package id="OpenCover" version="4.6.519" targetFramework="net46" />
<package id="ReportGenerator" version="2.4.5.0" targetFramework="net46" />
<package id="xunit" version="2.1.0" targetFramework="net46" />
Expand Down
4 changes: 2 additions & 2 deletions Dapplo.InterfaceImpl/Dapplo.InterfaceImpl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
<HintPath>..\packages\Dapplo.Log.Facade.0.5.4\lib\net45\Dapplo.Log.Facade.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.116.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.116\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.122.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.122\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
2 changes: 1 addition & 1 deletion Dapplo.InterfaceImpl/packages.config
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Dapplo.Log.Facade" version="0.5.4" targetFramework="net45" />
<package id="Dapplo.Utils" version="0.1.116" targetFramework="net45" />
<package id="Dapplo.Utils" version="0.1.122" targetFramework="net45" />
</packages>

0 comments on commit 6287edf

Please sign in to comment.