diff --git a/Dapplo.Jira.PCL/project.json b/Dapplo.Jira.PCL/project.json index 1916731..eadfb37 100644 --- a/Dapplo.Jira.PCL/project.json +++ b/Dapplo.Jira.PCL/project.json @@ -5,7 +5,7 @@ "dnxcore50.app": {} }, "dependencies": { - "Dapplo.HttpExtensions": "0.5.3", + "Dapplo.HttpExtensions": "0.5.5", "Microsoft.NETCore": "5.0.0", "Microsoft.NETCore.Portable.Compatibility": "1.0.0", "System.ComponentModel": "4.0.0", diff --git a/Dapplo.Jira.Shared/Entities/ProjectDigest.cs b/Dapplo.Jira.Shared/Entities/ProjectDigest.cs index 2e1837c..cf54df2 100644 --- a/Dapplo.Jira.Shared/Entities/ProjectDigest.cs +++ b/Dapplo.Jira.Shared/Entities/ProjectDigest.cs @@ -69,6 +69,6 @@ public class ProjectDigest : BaseProperties /// All project keys associated with the project /// [DataMember(Name = "projectKeys")] - public IList projectKeys { get; set; } + public IList ProjectKeys { get; set; } } } \ No newline at end of file diff --git a/Dapplo.Jira.Tests/Dapplo.Jira.Tests.csproj b/Dapplo.Jira.Tests/Dapplo.Jira.Tests.csproj index 60a375e..9121671 100644 --- a/Dapplo.Jira.Tests/Dapplo.Jira.Tests.csproj +++ b/Dapplo.Jira.Tests/Dapplo.Jira.Tests.csproj @@ -33,16 +33,16 @@ 4 - - ..\packages\Dapplo.HttpExtensions.0.5.3\lib\net46\Dapplo.HttpExtensions.dll + + ..\packages\Dapplo.HttpExtensions.0.5.5\lib\net46\Dapplo.HttpExtensions.dll True ..\packages\Dapplo.LogFacade.0.2.40\lib\net45\Dapplo.LogFacade.dll True - - ..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll + + ..\packages\Dapplo.Utils.0.1.27\lib\net45\Dapplo.Utils.dll True diff --git a/Dapplo.Jira.Tests/Logger/XUnitLogger.cs b/Dapplo.Jira.Tests/Logger/XUnitLogger.cs index 2d929e0..82f2234 100644 --- a/Dapplo.Jira.Tests/Logger/XUnitLogger.cs +++ b/Dapplo.Jira.Tests/Logger/XUnitLogger.cs @@ -83,7 +83,7 @@ public override void Write(LogInfo logInfo, string messageTemplate, params objec testOutputHelper.WriteLine($"{logInfo} - {messageTemplate}", logParameters); } - public override void Write(LogInfo logInfo, Exception exception, string messageTemplate, params object[] logParameters) + public override void Write(LogInfo logInfo, Exception exception, string messageTemplate = null, params object[] logParameters) { var testOutputHelper = TestOutputHelperAsyncLocal.Value; if (testOutputHelper == null) diff --git a/Dapplo.Jira.Tests/packages.config b/Dapplo.Jira.Tests/packages.config index 4938fd9..d190fb4 100644 --- a/Dapplo.Jira.Tests/packages.config +++ b/Dapplo.Jira.Tests/packages.config @@ -1,9 +1,9 @@  - + - + diff --git a/Dapplo.Jira.WpfExample/App.xaml b/Dapplo.Jira.WpfExample/App.xaml index 9ef22eb..0c156e9 100644 --- a/Dapplo.Jira.WpfExample/App.xaml +++ b/Dapplo.Jira.WpfExample/App.xaml @@ -1,7 +1,6 @@  diff --git a/Dapplo.Jira.WpfExample/App.xaml.cs b/Dapplo.Jira.WpfExample/App.xaml.cs index 1463f08..a622ed7 100644 --- a/Dapplo.Jira.WpfExample/App.xaml.cs +++ b/Dapplo.Jira.WpfExample/App.xaml.cs @@ -21,7 +21,7 @@ #region using -using System.Windows; + #endregion @@ -30,7 +30,7 @@ namespace Dapplo.Jira.WpfExample /// /// Interaction logic for App.xaml /// - public partial class App : Application + public partial class App { } } \ No newline at end of file diff --git a/Dapplo.Jira.WpfExample/Dapplo.Jira.WpfExample.csproj b/Dapplo.Jira.WpfExample/Dapplo.Jira.WpfExample.csproj index f92459f..0689119 100644 --- a/Dapplo.Jira.WpfExample/Dapplo.Jira.WpfExample.csproj +++ b/Dapplo.Jira.WpfExample/Dapplo.Jira.WpfExample.csproj @@ -36,16 +36,16 @@ 4 - - ..\packages\Dapplo.HttpExtensions.0.5.3\lib\net46\Dapplo.HttpExtensions.dll + + ..\packages\Dapplo.HttpExtensions.0.5.5\lib\net46\Dapplo.HttpExtensions.dll True ..\packages\Dapplo.LogFacade.0.2.40\lib\net45\Dapplo.LogFacade.dll True - - ..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll + + ..\packages\Dapplo.Utils.0.1.27\lib\net45\Dapplo.Utils.dll True diff --git a/Dapplo.Jira.WpfExample/MainWindow.xaml b/Dapplo.Jira.WpfExample/MainWindow.xaml index 416e5e7..8edefd6 100644 --- a/Dapplo.Jira.WpfExample/MainWindow.xaml +++ b/Dapplo.Jira.WpfExample/MainWindow.xaml @@ -3,7 +3,6 @@ xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" - xmlns:local="clr-namespace:Dapplo.Jira.WpfExample" mc:Ignorable="d" Title="Jira Projects" SizeToContent="WidthAndHeight"> diff --git a/Dapplo.Jira.WpfExample/MainWindow.xaml.cs b/Dapplo.Jira.WpfExample/MainWindow.xaml.cs index 7cd162c..2be59ba 100644 --- a/Dapplo.Jira.WpfExample/MainWindow.xaml.cs +++ b/Dapplo.Jira.WpfExample/MainWindow.xaml.cs @@ -35,7 +35,7 @@ namespace Dapplo.Jira.WpfExample /// /// Interaction logic for MainWindow.xaml /// - public partial class MainWindow : Window + public partial class MainWindow { public MainWindow() { diff --git a/Dapplo.Jira.WpfExample/packages.config b/Dapplo.Jira.WpfExample/packages.config index 297d7f4..a64795d 100644 --- a/Dapplo.Jira.WpfExample/packages.config +++ b/Dapplo.Jira.WpfExample/packages.config @@ -1,6 +1,6 @@  - + - + \ No newline at end of file diff --git a/Dapplo.Jira.nuspec b/Dapplo.Jira.nuspec index 57a8859..60d2d45 100644 --- a/Dapplo.Jira.nuspec +++ b/Dapplo.Jira.nuspec @@ -15,16 +15,16 @@ Jira - + - + - + - + diff --git a/Dapplo.Jira/Dapplo.Jira.csproj b/Dapplo.Jira/Dapplo.Jira.csproj index 0ed24ae..92bb125 100644 --- a/Dapplo.Jira/Dapplo.Jira.csproj +++ b/Dapplo.Jira/Dapplo.Jira.csproj @@ -33,16 +33,16 @@ bin\Release\Dapplo.Jira.XML - - ..\packages\Dapplo.HttpExtensions.0.5.3\lib\net45\Dapplo.HttpExtensions.dll + + ..\packages\Dapplo.HttpExtensions.0.5.5\lib\net45\Dapplo.HttpExtensions.dll True ..\packages\Dapplo.LogFacade.0.2.40\lib\net45\Dapplo.LogFacade.dll True - - ..\packages\Dapplo.Utils.0.1.21\lib\net45\Dapplo.Utils.dll + + ..\packages\Dapplo.Utils.0.1.27\lib\net45\Dapplo.Utils.dll True diff --git a/Dapplo.Jira/Powershell/AddJiraAttachment.cs b/Dapplo.Jira/Powershell/AddJiraAttachment.cs index a369305..121c703 100644 --- a/Dapplo.Jira/Powershell/AddJiraAttachment.cs +++ b/Dapplo.Jira/Powershell/AddJiraAttachment.cs @@ -21,15 +21,15 @@ #region using +using System.IO; using System.Management.Automation; using System.Threading.Tasks; using Dapplo.Jira.Entities; -using Dapplo.PowerShell.Jira.Support; -using System.IO; +using Dapplo.Jira.Powershell.Support; #endregion -namespace Dapplo.PowerShell.Jira +namespace Dapplo.Jira.Powershell { /// /// A Cmdlet to attach an attachment to a jira issue diff --git a/Dapplo.Jira/Powershell/GetJiraIssue.cs b/Dapplo.Jira/Powershell/GetJiraIssue.cs index f32f956..d5b6b01 100644 --- a/Dapplo.Jira/Powershell/GetJiraIssue.cs +++ b/Dapplo.Jira/Powershell/GetJiraIssue.cs @@ -24,11 +24,11 @@ using System.Management.Automation; using System.Threading.Tasks; using Dapplo.Jira.Entities; -using Dapplo.PowerShell.Jira.Support; +using Dapplo.Jira.Powershell.Support; #endregion -namespace Dapplo.PowerShell.Jira +namespace Dapplo.Jira.Powershell { /// /// A Cmdlet which processes the information of a Jira issue diff --git a/Dapplo.Jira/Powershell/GetJiraProjects.cs b/Dapplo.Jira/Powershell/GetJiraProjects.cs index 46c664a..7636ed6 100644 --- a/Dapplo.Jira/Powershell/GetJiraProjects.cs +++ b/Dapplo.Jira/Powershell/GetJiraProjects.cs @@ -24,11 +24,11 @@ using System.Management.Automation; using System.Threading.Tasks; using Dapplo.Jira.Entities; -using Dapplo.PowerShell.Jira.Support; +using Dapplo.Jira.Powershell.Support; #endregion -namespace Dapplo.PowerShell.Jira +namespace Dapplo.Jira.Powershell { /// /// A Cmdlet which outputs the projects in the specified jira diff --git a/Dapplo.Jira/Powershell/Support/AsyncCmdlet.cs b/Dapplo.Jira/Powershell/Support/AsyncCmdlet.cs index 21c0a0e..340bed0 100644 --- a/Dapplo.Jira/Powershell/Support/AsyncCmdlet.cs +++ b/Dapplo.Jira/Powershell/Support/AsyncCmdlet.cs @@ -26,7 +26,7 @@ #endregion -namespace Dapplo.PowerShell.Jira.Support +namespace Dapplo.Jira.Powershell.Support { /// /// The base for Async Cmdlets diff --git a/Dapplo.Jira/Powershell/Support/AsyncPump.cs b/Dapplo.Jira/Powershell/Support/AsyncPump.cs index 289e07f..78e611d 100644 --- a/Dapplo.Jira/Powershell/Support/AsyncPump.cs +++ b/Dapplo.Jira/Powershell/Support/AsyncPump.cs @@ -29,7 +29,7 @@ #endregion -namespace Dapplo.PowerShell.Jira.Support +namespace Dapplo.Jira.Powershell.Support { /// /// Provides a pump that supports running asynchronous methods on the current thread. diff --git a/Dapplo.Jira/Powershell/Support/JiraAsyncCmdlet.cs b/Dapplo.Jira/Powershell/Support/JiraAsyncCmdlet.cs index 0d6a3ee..66812c5 100644 --- a/Dapplo.Jira/Powershell/Support/JiraAsyncCmdlet.cs +++ b/Dapplo.Jira/Powershell/Support/JiraAsyncCmdlet.cs @@ -23,12 +23,11 @@ using System; using System.Management.Automation; -using Dapplo.Jira; using System.Threading.Tasks; #endregion -namespace Dapplo.PowerShell.Jira.Support +namespace Dapplo.Jira.Powershell.Support { /// /// This is the base class for all (most?) Jira CmdLets diff --git a/Dapplo.Jira/packages.config b/Dapplo.Jira/packages.config index 3e2bc4f..d725b3f 100644 --- a/Dapplo.Jira/packages.config +++ b/Dapplo.Jira/packages.config @@ -1,7 +1,7 @@  - + - + \ No newline at end of file