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 b36cd80 commit 555d19d
Show file tree
Hide file tree
Showing 6 changed files with 17 additions and 19 deletions.
8 changes: 4 additions & 4 deletions Dapplo.Config.Tests/Dapplo.Config.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.32\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.36.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.36\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.37.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.37\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Log.Facade, Version=0.5.4.0, Culture=neutral, processorArchitecture=MSIL">
Expand All @@ -50,8 +50,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
4 changes: 2 additions & 2 deletions Dapplo.Config.Tests/packages.config
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@
<packages>
<package id="coveralls.io" version="1.3.4" targetFramework="net46" />
<package id="Dapplo.HttpExtensions" version="0.5.32" targetFramework="net46" />
<package id="Dapplo.InterfaceImpl" version="0.1.36" targetFramework="net46" />
<package id="Dapplo.InterfaceImpl" version="0.1.37" 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
8 changes: 4 additions & 4 deletions Dapplo.Config/Dapplo.Config.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
<DocumentationFile>bin\Release\Dapplo.Config.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.36.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.36\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.37.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.37\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Log.Facade, Version=0.5.4.0, Culture=neutral, processorArchitecture=MSIL">
<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
9 changes: 4 additions & 5 deletions Dapplo.Config/Ini/IniSectionExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

using System;
using Dapplo.Utils.Events;
using Dapplo.Utils.Extensions;

#endregion

Expand Down Expand Up @@ -56,7 +55,7 @@ public static IDisposable OnReset(this IIniSection iniSection, Action<IniSection
{
throw new ArgumentNullException(nameof(eventAction));
}
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Reset)).OnEach(pce => eventAction(pce.Args));
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Reset)).ForEach(pce => eventAction(pce.Args));
}

/// <summary>
Expand All @@ -77,7 +76,7 @@ public static IDisposable OnLoaded(this IIniSection iniSection, Action<IniSectio
{
throw new ArgumentNullException(nameof(eventAction));
}
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Loaded)).OnEach(pce => eventAction(pce.Args));
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Loaded)).ForEach(pce => eventAction(pce.Args));
}

/// <summary>
Expand All @@ -98,7 +97,7 @@ public static IDisposable OnSaved(this IIniSection iniSection, Action<IniSection
{
throw new ArgumentNullException(nameof(eventAction));
}
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Saved)).OnEach(pce => eventAction(pce.Args));
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Saved)).ForEach(pce => eventAction(pce.Args));
}

/// <summary>
Expand All @@ -119,7 +118,7 @@ public static IDisposable OnSaving(this IIniSection iniSection, Action<IniSectio
{
throw new ArgumentNullException(nameof(eventAction));
}
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Saving)).OnEach(pce => eventAction(pce.Args));
return EventObservable.From<IniSectionEventArgs>(iniSection, nameof(IIniSection.Saving)).ForEach(pce => eventAction(pce.Args));
}
}
}
3 changes: 1 addition & 2 deletions Dapplo.Config/Language/LanguageChangedExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@

using System;
using Dapplo.Utils.Events;
using Dapplo.Utils.Extensions;

#endregion

Expand Down Expand Up @@ -61,7 +60,7 @@ public static IDisposable OnLanguageChanged(this ILanguage language, Action<ILan
{
updateAction(language);
}
return EventObservable.From<EventArgs>(language, nameof(ILanguage.LanguageChanged)).OnEach(pce => updateAction(pce.Sender as ILanguage));
return EventObservable.From<EventArgs>(language, nameof(ILanguage.LanguageChanged)).ForEach(pce => updateAction(pce.Sender as ILanguage));
}
}
}
4 changes: 2 additions & 2 deletions Dapplo.Config/packages.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Dapplo.InterfaceImpl" version="0.1.36" targetFramework="net45" />
<package id="Dapplo.InterfaceImpl" version="0.1.37" targetFramework="net45" />
<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 555d19d

Please sign in to comment.