Skip to content

Commit

Permalink
Updated dependencies to get some fixes, e.g. EmitDefaultValue is now …
Browse files Browse the repository at this point in the history
…supported.

[release]
  • Loading branch information
Lakritzator committed Apr 22, 2016
1 parent 1f4591b commit c992f88
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 31 deletions.
2 changes: 1 addition & 1 deletion Dapplo.Jira.PCL/project.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"dnxcore50.app": {}
},
"dependencies": {
"Dapplo.HttpExtensions": "0.4.55",
"Dapplo.HttpExtensions": "0.5.3",
"Microsoft.NETCore": "5.0.0",
"Microsoft.NETCore.Portable.Compatibility": "1.0.0",
"System.ComponentModel": "4.0.0",
Expand Down
12 changes: 6 additions & 6 deletions Dapplo.Jira.Tests/Dapplo.Jira.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.HttpExtensions, Version=0.4.55.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.4.55\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Reference Include="Dapplo.HttpExtensions, Version=0.5.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.3\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.LogFacade, Version=0.2.34.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.34\lib\net45\Dapplo.LogFacade.dll</HintPath>
<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>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.19.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.19\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.21.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
10 changes: 8 additions & 2 deletions Dapplo.Jira.Tests/Logger/XUnitLogger.cs
Original file line number Diff line number Diff line change
Expand Up @@ -90,8 +90,14 @@ public override void Write(LogInfo logInfo, Exception exception, string messageT
{
throw new ArgumentNullException(nameof(testOutputHelper), "Couldn't find a ITestOutputHelper in the CallContext");
}
testOutputHelper.WriteLine($"{logInfo} - {messageTemplate}", logParameters);
testOutputHelper.WriteLine(exception.ToString());
if (messageTemplate != null)
{
testOutputHelper.WriteLine($"{logInfo} - {messageTemplate}", logParameters);
}
if (exception != null)
{
testOutputHelper.WriteLine(exception.ToString());
}
}

/// <summary>
Expand Down
8 changes: 4 additions & 4 deletions Dapplo.Jira.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.4.55" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.34" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.19" targetFramework="net46" />
<package id="Dapplo.HttpExtensions" version="0.5.3" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.40" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.21" targetFramework="net46" />
<package id="OpenCover" version="4.6.519" targetFramework="net46" />
<package id="ReportGenerator" version="2.4.4.0" targetFramework="net46" />
<package id="ReportGenerator" version="2.4.5.0" targetFramework="net46" />
<package id="xunit" version="2.1.0" targetFramework="net46" />
<package id="xunit.abstractions" version="2.0.0" targetFramework="net46" />
<package id="xunit.assert" version="2.1.0" targetFramework="net46" />
Expand Down
12 changes: 6 additions & 6 deletions Dapplo.Jira.WpfExample/Dapplo.Jira.WpfExample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.HttpExtensions, Version=0.4.55.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.4.55\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Reference Include="Dapplo.HttpExtensions, Version=0.5.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.3\lib\net46\Dapplo.HttpExtensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.LogFacade, Version=0.2.34.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.34\lib\net45\Dapplo.LogFacade.dll</HintPath>
<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>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.19.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.19\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.21.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
6 changes: 3 additions & 3 deletions Dapplo.Jira.WpfExample/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.HttpExtensions" version="0.4.55" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.34" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.19" targetFramework="net46" />
<package id="Dapplo.HttpExtensions" version="0.5.3" targetFramework="net46" />
<package id="Dapplo.LogFacade" version="0.2.40" targetFramework="net46" />
<package id="Dapplo.Utils" version="0.1.21" targetFramework="net46" />
</packages>
12 changes: 6 additions & 6 deletions Dapplo.Jira/Dapplo.Jira.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@
<DocumentationFile>bin\Release\Dapplo.Jira.XML</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="Dapplo.HttpExtensions, Version=0.4.55.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.4.55\lib\net45\Dapplo.HttpExtensions.dll</HintPath>
<Reference Include="Dapplo.HttpExtensions, Version=0.5.3.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.HttpExtensions.0.5.3\lib\net45\Dapplo.HttpExtensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.LogFacade, Version=0.2.34.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.LogFacade.0.2.34\lib\net45\Dapplo.LogFacade.dll</HintPath>
<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>
<Private>True</Private>
</Reference>
<Reference Include="Dapplo.Utils, Version=0.1.19.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.19\lib\net45\Dapplo.Utils.dll</HintPath>
<Reference Include="Dapplo.Utils, Version=0.1.21.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down
6 changes: 3 additions & 3 deletions Dapplo.Jira/packages.config
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="Dapplo.HttpExtensions" version="0.4.55" targetFramework="net452" />
<package id="Dapplo.LogFacade" version="0.2.34" targetFramework="net452" />
<package id="Dapplo.Utils" version="0.1.19" targetFramework="net452" />
<package id="Dapplo.HttpExtensions" version="0.5.3" targetFramework="net452" />
<package id="Dapplo.LogFacade" version="0.2.40" targetFramework="net452" />
<package id="Dapplo.Utils" version="0.1.21" targetFramework="net452" />
<package id="System.Management.Automation.dll" version="10.0.10586.0" targetFramework="net452" />
</packages>

0 comments on commit c992f88

Please sign in to comment.