Skip to content

Commit

Permalink
Bump packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hbulens committed Jun 27, 2024
1 parent c6283bd commit f0399f0
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 8 deletions.
8 changes: 4 additions & 4 deletions src/cli/Dime.Scheduler.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@
</PropertyGroup>

<PropertyGroup>
<VersionPrefix>2.0.1</VersionPrefix>
<AssemblyVersion>2.0.1.0</AssemblyVersion>
<FileVersion>2.0.1.0</FileVersion>
<VersionPrefix>2.0.2</VersionPrefix>
<AssemblyVersion>2.0.2.0</AssemblyVersion>
<FileVersion>2.0.2.0</FileVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.9.1" />
<PackageReference Include="Dime.Scheduler" Version="1.0.1" />
<PackageReference Include="Dime.Scheduler" Version="1.0.3" />
</ItemGroup>

<ItemGroup>
Expand Down
6 changes: 5 additions & 1 deletion src/cli/Options/ActionUriOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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
};
}
}
6 changes: 3 additions & 3 deletions src/tests/Dime.Scheduler.CLI.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
<PackageReference Include="xunit" Version="2.7.0" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
<PackageReference Include="xunit" Version="2.8.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
Expand Down

0 comments on commit f0399f0

Please sign in to comment.