Skip to content

Commit f0399f0

Browse files
committed
Bump packages
1 parent c6283bd commit f0399f0

File tree

3 files changed

+12
-8
lines changed

3 files changed

+12
-8
lines changed

src/cli/Dime.Scheduler.CLI.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@
2929
</PropertyGroup>
3030

3131
<PropertyGroup>
32-
<VersionPrefix>2.0.1</VersionPrefix>
33-
<AssemblyVersion>2.0.1.0</AssemblyVersion>
34-
<FileVersion>2.0.1.0</FileVersion>
32+
<VersionPrefix>2.0.2</VersionPrefix>
33+
<AssemblyVersion>2.0.2.0</AssemblyVersion>
34+
<FileVersion>2.0.2.0</FileVersion>
3535
</PropertyGroup>
3636
<ItemGroup>
3737
<PackageReference Include="CommandLineParser" Version="2.9.1" />
38-
<PackageReference Include="Dime.Scheduler" Version="1.0.1" />
38+
<PackageReference Include="Dime.Scheduler" Version="1.0.3" />
3939
</ItemGroup>
4040

4141
<ItemGroup>

src/cli/Options/ActionUriOptions.cs

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ public class ActionUriOptions : BaseOptions, IImportConvertable
2424
[Option(HelpText = "Flag to indicate whether this is the default action URI.")]
2525
public bool Default { get; set; }
2626

27+
[Option(HelpText = "The request type: HTTP POST or GET (with placeholder variables)")]
28+
public HttpRequestType RequestType { get; set; }
29+
2730
public IImportRequestable ToImport() => (ActionUri)this;
2831

2932
public static implicit operator ActionUri(ActionUriOptions options)
@@ -34,7 +37,8 @@ public static implicit operator ActionUri(ActionUriOptions options)
3437
SourceApp = options.SourceApp,
3538
SourceType = options.SourceType,
3639
Uri = options.Link,
37-
UriType = options.UriType
40+
UriType = options.UriType,
41+
RequestType = options.RequestType
3842
};
3943
}
4044
}

src/tests/Dime.Scheduler.CLI.Tests.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@
88
</PropertyGroup>
99

1010
<ItemGroup>
11-
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.9.0" />
12-
<PackageReference Include="xunit" Version="2.7.0" />
13-
<PackageReference Include="xunit.runner.visualstudio" Version="2.5.7">
11+
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.10.0" />
12+
<PackageReference Include="xunit" Version="2.8.1" />
13+
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.1">
1414
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
1515
<PrivateAssets>all</PrivateAssets>
1616
</PackageReference>

0 commit comments

Comments
 (0)