Skip to content

Commit

Permalink
Updated Dapplo.Utils
Browse files Browse the repository at this point in the history
[release]
  • Loading branch information
Lakritzator committed May 16, 2016
1 parent b637441 commit 63f6157
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 20 deletions.
8 changes: 4 additions & 4 deletions Dapplo.InterfaceImpl.Tests/Dapplo.InterfaceImpl.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.LogFacade, Version=0.2.40.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.40\lib\net45\Dapplo.LogFacade.dll</HintPath>
<Reference Include="Dapplo.LogFacade, Version=0.2.44.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.44\lib\net45\Dapplo.LogFacade.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.27.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.27\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.30.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.30\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
4 changes: 2 additions & 2 deletions Dapplo.InterfaceImpl.Tests/packages.config
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="coveralls.io" version="1.3.4" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.40" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.27" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.44" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.30" 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.InterfaceImpl/Dapplo.InterfaceImpl.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@
<DocumentationFile>bin\Release\Dapplo.InterfaceImpl.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.LogFacade, Version=0.2.40.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.40\lib\net45\Dapplo.LogFacade.dll</HintPath>
<Reference Include="Dapplo.LogFacade, Version=0.2.44.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.44\lib\net45\Dapplo.LogFacade.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.27.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.27\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.30.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.30\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
5 changes: 1 addition & 4 deletions Dapplo.InterfaceImpl/Implementation/GetSetInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,7 @@ public class GetSetInfo
/// <summary>
/// Simple property to check for error
/// </summary>
public bool HasError
{
get { return Error != null; }
}
public bool HasError => Error != null;

/// <summary>
/// Property name of the property that is being get/set
Expand Down
5 changes: 1 addition & 4 deletions Dapplo.InterfaceImpl/Implementation/MethodCallInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,7 @@ public class MethodCallInfo
/// <summary>
/// Simple check for the exception
/// </summary>
public bool HasError
{
get { return Error != null; }
}
public bool HasError => Error != null;

/// <summary>
/// Name of the invoked method
Expand Down
4 changes: 2 additions & 2 deletions 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.LogFacade" version="0.2.40" targetFramework="net452" />
<package id="Dapplo.Utils" version="0.1.27" targetFramework="net452" />
<package id="Dapplo.LogFacade" version="0.2.44" targetFramework="net452" />
<package id="Dapplo.Utils" version="0.1.30" targetFramework="net452" />
</packages>

0 comments on commit 63f6157

Please sign in to comment.