From f0399f0e7f68f691baeb4c3ba752525a640ce9a0 Mon Sep 17 00:00:00 2001 From: Hendrik Bulens Date: Thu, 27 Jun 2024 13:35:42 +0200 Subject: [PATCH] Bump packages --- src/cli/Dime.Scheduler.CLI.csproj | 8 ++++---- src/cli/Options/ActionUriOptions.cs | 6 +++++- src/tests/Dime.Scheduler.CLI.Tests.csproj | 6 +++--- 3 files changed, 12 insertions(+), 8 deletions(-) diff --git a/src/cli/Dime.Scheduler.CLI.csproj b/src/cli/Dime.Scheduler.CLI.csproj index 8917feb..1b9db86 100644 --- a/src/cli/Dime.Scheduler.CLI.csproj +++ b/src/cli/Dime.Scheduler.CLI.csproj @@ -29,13 +29,13 @@ - 2.0.1 - 2.0.1.0 - 2.0.1.0 + 2.0.2 + 2.0.2.0 + 2.0.2.0 - + diff --git a/src/cli/Options/ActionUriOptions.cs b/src/cli/Options/ActionUriOptions.cs index 0b110cd..014675f 100644 --- a/src/cli/Options/ActionUriOptions.cs +++ b/src/cli/Options/ActionUriOptions.cs @@ -24,6 +24,9 @@ public class ActionUriOptions : BaseOptions, IImportConvertable [Option(HelpText = "Flag to indicate whether this is the default action URI.")] public bool Default { get; set; } + [Option(HelpText = "The request type: HTTP POST or GET (with placeholder variables)")] + public HttpRequestType RequestType { get; set; } + public IImportRequestable ToImport() => (ActionUri)this; public static implicit operator ActionUri(ActionUriOptions options) @@ -34,7 +37,8 @@ public static implicit operator ActionUri(ActionUriOptions options) SourceApp = options.SourceApp, SourceType = options.SourceType, Uri = options.Link, - UriType = options.UriType + UriType = options.UriType, + RequestType = options.RequestType }; } } \ No newline at end of file diff --git a/src/tests/Dime.Scheduler.CLI.Tests.csproj b/src/tests/Dime.Scheduler.CLI.Tests.csproj index 3a27323..4f4e055 100644 --- a/src/tests/Dime.Scheduler.CLI.Tests.csproj +++ b/src/tests/Dime.Scheduler.CLI.Tests.csproj @@ -8,9 +8,9 @@ - - - + + + runtime; build; native; contentfiles; analyzers; buildtransitive all