Skip to content

Commit

Permalink
Fixed API changes in dependencies.
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
Lakritzator committed Aug 12, 2016
1 parent 5231382 commit 9886b7b
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 18 deletions.
12 changes: 6 additions & 6 deletions Dapplo.Config.Tests/Dapplo.Config.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.HttpExtensions, Version=0.5.27.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.27\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Reference Include="Dapplo.HttpExtensions, Version=0.5.28.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.28\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.34.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.34\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.35.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.35\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.107.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.107\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.113.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.113\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
6 changes: 3 additions & 3 deletions Dapplo.Config.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="coveralls.io" version="1.3.4" targetFramework="net46" />
<package id="Dapplo.HttpExtensions" version="0.5.27" targetFramework="net46" />
<package id="Dapplo.InterfaceImpl" version="0.1.34" targetFramework="net46" />
<package id="Dapplo.HttpExtensions" version="0.5.28" targetFramework="net46" />
<package id="Dapplo.InterfaceImpl" version="0.1.35" 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.107" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.113" 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.34.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.34\lib\net45\Dapplo.InterfaceImpl.dll</HintPath>
<Reference Include="Dapplo.InterfaceImpl, Version=0.1.35.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.InterfaceImpl.0.1.35\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.107.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.107\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.113.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.113\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
4 changes: 2 additions & 2 deletions Dapplo.Config/Ini/Implementation/IniSection.cs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ void IIniSectionInternal.OnSaving()
/// This is called by the ExtensibleInterceptorImpl with a list of extensions
/// </summary>
/// <param name="extensions">list of extensions</param>
protected override void AfterInitialization(IList<IInterceptorExtension> extensions)
protected override void AfterInitialization(IEnumerable<IInterceptorExtension> extensions)
{
base.AfterInitialization(extensions);
foreach (var propertyName in InitializationErrors.Keys.ToList())
Expand All @@ -127,7 +127,7 @@ protected override void AfterInitialization(IList<IInterceptorExtension> extensi
/// </summary>
/// <param name="propertyInfo"></param>
/// <param name="extensions"></param>
protected override void InitProperty(PropertyInfo propertyInfo, IList<IInterceptorExtension> extensions)
protected override void InitProperty(PropertyInfo propertyInfo, IEnumerable<IInterceptorExtension> extensions)
{
base.InitProperty(propertyInfo, extensions);
var iniValue = new IniValue(this)
Expand Down
2 changes: 1 addition & 1 deletion Dapplo.Config/Language/Implementation/Language.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ public string PrefixName()
/// </summary>
/// <param name="propertyInfo"></param>
/// <param name="extensions"></param>
protected override void InitProperty(PropertyInfo propertyInfo, IList<IInterceptorExtension> extensions)
protected override void InitProperty(PropertyInfo propertyInfo, IEnumerable<IInterceptorExtension> extensions)
{
base.InitProperty(propertyInfo, extensions);
if (propertyInfo.CanWrite && propertyInfo.GetSetMethod(true).IsPublic)
Expand Down
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.34" targetFramework="net45" />
<package id="Dapplo.InterfaceImpl" version="0.1.35" targetFramework="net45" />
<package id="Dapplo.Log.Facade" version="0.5.4" targetFramework="net45" />
<package id="Dapplo.Utils" version="0.1.107" targetFramework="net45" />
<package id="Dapplo.Utils" version="0.1.113" targetFramework="net45" />
</packages>

0 comments on commit 9886b7b

Please sign in to comment.