Skip to content

Commit

Permalink
Adding ability to make async calls in Gauge tests (#233)
Browse files Browse the repository at this point in the history
* Remove unnecessary class AssemblyPath

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Added protobuf files directly to the project file so they will be automactically regenerated at compile time

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Consolidated much of the startup code, used newer WebApplication builder insteadof Host and removed support for obsolete --init command line parameter

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* More startup consolidation and cleanup

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Updated authoring runner service handler to not use the executor pool

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Updated ExecutableRunnerServiceHandler to not use executor pool along with changes necessary to allow for async calls for hooks and steps

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Final cleanup, consistency with ILogger and IConfiguration and unit testing

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Final cleanup and setting versions

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Update versions of dependencies

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Commit to restart build checks

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Update workflows to pull submodules

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Fixing whitespace issues

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Commit to restart build checks

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

* Commit to restart build checks

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>

---------

Signed-off-by: Martin Pekurny <mpekurny@paychex.com>
  • Loading branch information
mpekurny committed Sep 18, 2024
1 parent 93bbed9 commit 3bbbd16
Show file tree
Hide file tree
Showing 185 changed files with 7,711 additions and 42,171 deletions.
84 changes: 84 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,84 @@

[*.{cs,vb}]
#### Naming styles ####

# Naming rules

dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i

dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.types_should_be_pascal_case.symbols = types
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case

dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case

# Symbol specifications

dotnet_naming_symbols.interface.applicable_kinds = interface
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.interface.required_modifiers =

dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.types.required_modifiers =

dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
dotnet_naming_symbols.non_field_members.required_modifiers =

# Naming styles

dotnet_naming_style.begins_with_i.required_prefix = I
dotnet_naming_style.begins_with_i.required_suffix =
dotnet_naming_style.begins_with_i.word_separator =
dotnet_naming_style.begins_with_i.capitalization = pascal_case

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case

dotnet_naming_style.pascal_case.required_prefix =
dotnet_naming_style.pascal_case.required_suffix =
dotnet_naming_style.pascal_case.word_separator =
dotnet_naming_style.pascal_case.capitalization = pascal_case
dotnet_style_operator_placement_when_wrapping = beginning_of_line
tab_width = 4
indent_size = 4
end_of_line = crlf
dotnet_style_coalesce_expression = true:suggestion
dotnet_style_null_propagation = true:suggestion
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion
dotnet_style_prefer_auto_properties = true:silent
dotnet_style_object_initializer = true:suggestion
dotnet_style_prefer_collection_expression = true:suggestion
dotnet_style_collection_initializer = true:suggestion
dotnet_style_prefer_simplified_boolean_expressions = true:suggestion
dotnet_style_prefer_conditional_expression_over_assignment = true:silent
dotnet_style_prefer_conditional_expression_over_return = true:silent
dotnet_style_explicit_tuple_names = true:suggestion
dotnet_style_prefer_inferred_tuple_names = true:suggestion
dotnet_style_prefer_inferred_anonymous_type_member_names = true:suggestion
dotnet_style_prefer_compound_assignment = true:suggestion

[*.cs]
csharp_indent_labels = one_less_than_current
csharp_using_directive_placement = outside_namespace:silent
csharp_prefer_simple_using_statement = true:suggestion
csharp_prefer_braces = true:silent
csharp_style_namespace_declarations = file_scoped:suggestion
csharp_style_prefer_method_group_conversion = true:silent
csharp_style_prefer_top_level_statements = true:silent
csharp_style_prefer_primary_constructors = true:suggestion
csharp_style_expression_bodied_methods = false:silent
csharp_style_expression_bodied_constructors = false:silent
csharp_style_expression_bodied_operators = false:silent
csharp_style_expression_bodied_properties = true:silent
csharp_style_expression_bodied_indexers = true:silent
csharp_style_expression_bodied_accessors = true:silent
csharp_style_expression_bodied_lambdas = true:silent
csharp_style_expression_bodied_local_functions = false:silent
7 changes: 7 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,9 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
with:
Expand Down Expand Up @@ -48,6 +51,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup go
uses: actions/setup-go@v5
Expand Down Expand Up @@ -113,6 +118,8 @@ jobs:

steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup go
uses: actions/setup-go@v5
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/release-on-pr-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
DOTNET_CLI_TELEMETRY_OPTOUT: 1
steps:
- uses: actions/checkout@v4
with:
submodules: recursive

- name: Setup .NET Core
uses: actions/setup-dotnet@v4
Expand Down
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,9 @@ artifacts
.DS_Store
.fake
.idea/

# User-specific files
**/*.suo
**/*.user
**/*.userosscache
**/*.sln.docstates
68 changes: 65 additions & 3 deletions Gauge.Dotnet.sln
Original file line number Diff line number Diff line change
@@ -1,16 +1,31 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2020
# Visual Studio Version 17
VisualStudioVersion = 17.8.34601.278
MinimumVisualStudioVersion = 15.0.26124.0
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTestSample", "IntegrationTestSample\IntegrationTestSample.csproj", "{8927158D-F899-4270-B898-906910A79D8A}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTestSample", "_testdata\Sample\IntegrationTestSample.csproj", "{8927158D-F899-4270-B898-906910A79D8A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Gauge.Dotnet", "src\Gauge.Dotnet.csproj", "{ACD9026F-BF29-4FC5-B8B4-67C27512E80D}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Gauge.Dotnet.UnitTests", "test\Gauge.Dotnet.UnitTests.csproj", "{F5E5359B-A610-49E9-A0BE-AD0F77CAEEF0}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Gauge.Dotnet.IntegrationTests", "integration-test\Gauge.Dotnet.IntegrationTests.csproj", "{E7079EDD-7987-4042-877C-999FCA6C60A1}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{3852E248-E868-4E7F-A439-3F182E88A4A4}"
ProjectSection(SolutionItems) = preProject
.editorconfig = .editorconfig
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "IntegrationTestSamples", "IntegrationTestSamples", "{04F8F685-9990-40EA-A85C-EA18B3B6D9B9}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReferenceProject", "_testdata\ReferenceProject\ReferenceProject.csproj", "{26039755-1F17-4AC1-8637-71F72C01DE90}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "ReferenceDll", "_testdata\ReferenceDllProject\ReferenceDll.csproj", "{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTestSampleDllReference", "_testdata\SampleDllReference\IntegrationTestSampleDllReference.csproj", "{870537AD-A053-4651-BB77-41CB42890912}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "IntegrationTestSampleProjectReference", "_testdata\SampleProjectReference\IntegrationTestSampleProjectReference.csproj", "{E558F296-5A27-4288-8559-5127C252948E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -67,10 +82,57 @@ Global
{E7079EDD-7987-4042-877C-999FCA6C60A1}.Release|x64.Build.0 = Release|Any CPU
{E7079EDD-7987-4042-877C-999FCA6C60A1}.Release|x86.ActiveCfg = Release|Any CPU
{E7079EDD-7987-4042-877C-999FCA6C60A1}.Release|x86.Build.0 = Release|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Debug|x64.ActiveCfg = Debug|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Debug|x64.Build.0 = Debug|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Debug|x86.ActiveCfg = Debug|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Debug|x86.Build.0 = Debug|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Release|Any CPU.ActiveCfg = Release|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Release|x64.ActiveCfg = Release|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Release|x64.Build.0 = Release|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Release|x86.ActiveCfg = Release|Any CPU
{26039755-1F17-4AC1-8637-71F72C01DE90}.Release|x86.Build.0 = Release|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Debug|x64.ActiveCfg = Debug|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Debug|x64.Build.0 = Debug|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Debug|x86.ActiveCfg = Debug|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Debug|x86.Build.0 = Debug|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Release|x64.ActiveCfg = Release|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Release|x64.Build.0 = Release|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Release|x86.ActiveCfg = Release|Any CPU
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A}.Release|x86.Build.0 = Release|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Debug|x64.ActiveCfg = Debug|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Debug|x64.Build.0 = Debug|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Debug|x86.ActiveCfg = Debug|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Debug|x86.Build.0 = Debug|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Release|Any CPU.ActiveCfg = Release|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Release|x64.ActiveCfg = Release|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Release|x64.Build.0 = Release|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Release|x86.ActiveCfg = Release|Any CPU
{870537AD-A053-4651-BB77-41CB42890912}.Release|x86.Build.0 = Release|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Debug|x64.ActiveCfg = Debug|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Debug|x64.Build.0 = Debug|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Debug|x86.ActiveCfg = Debug|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Debug|x86.Build.0 = Debug|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Release|x64.ActiveCfg = Release|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Release|x64.Build.0 = Release|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Release|x86.ActiveCfg = Release|Any CPU
{E558F296-5A27-4288-8559-5127C252948E}.Release|x86.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(NestedProjects) = preSolution
{8927158D-F899-4270-B898-906910A79D8A} = {04F8F685-9990-40EA-A85C-EA18B3B6D9B9}
{26039755-1F17-4AC1-8637-71F72C01DE90} = {04F8F685-9990-40EA-A85C-EA18B3B6D9B9}
{0CE94A26-CBE9-4539-9672-9DFCAE973C6A} = {04F8F685-9990-40EA-A85C-EA18B3B6D9B9}
{870537AD-A053-4651-BB77-41CB42890912} = {04F8F685-9990-40EA-A85C-EA18B3B6D9B9}
{E558F296-5A27-4288-8559-5127C252948E} = {04F8F685-9990-40EA-A85C-EA18B3B6D9B9}
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {220CCF70-5732-4927-A27C-72A3C351E2EE}
EndGlobalSection
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Debug</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>..\SampleDllReference\libs</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
</PropertyGroup>
</Project>
6 changes: 3 additions & 3 deletions _testdata/ReferenceDllProject/ReferenceDll.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="4.19.4" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.10.0" />
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.11.1" />
</ItemGroup>

</Project>
8 changes: 4 additions & 4 deletions _testdata/ReferenceProject/ReferenceProject.csproj
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="4.19.4" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.10.0" />
<PackageReference Include="FluentAssertions" Version="6.12.1" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.11.1" />
</ItemGroup>

</Project>
6 changes: 3 additions & 3 deletions _testdata/Sample/IntegrationTestSample.csproj
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Gauge.CSharp.Lib" Version="0.10.0" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.11.1" />
</ItemGroup>
</Project>
13 changes: 13 additions & 0 deletions _testdata/Sample/Properties/PublishProfiles/FolderProfile.pubxml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
https://go.microsoft.com/fwlink/?LinkID=208121.
-->
<Project>
<PropertyGroup>
<Configuration>Debug</Configuration>
<Platform>Any CPU</Platform>
<PublishDir>gauge_bin</PublishDir>
<PublishProtocol>FileSystem</PublishProtocol>
<_TargetId>Folder</_TargetId>
</PropertyGroup>
</Project>
7 changes: 0 additions & 7 deletions _testdata/Sample/StepImplementation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@

using System;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using Gauge.CSharp.Lib;
using Gauge.CSharp.Lib.Attribute;
Expand Down Expand Up @@ -84,11 +82,6 @@ public class CustomSerializableException : Exception
public CustomSerializableException(string s) : base(s)
{
}

public CustomSerializableException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
}

public class CustomException : Exception
Expand Down
Binary file modified _testdata/Sample/gauge_bin/Gauge.CSharp.Lib.dll
Binary file not shown.
22 changes: 11 additions & 11 deletions _testdata/Sample/gauge_bin/IntegrationTestSample.deps.json
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
{
"runtimeTarget": {
"name": ".NETCoreApp,Version=v3.0",
"name": ".NETCoreApp,Version=v8.0",
"signature": ""
},
"compilationOptions": {},
"targets": {
".NETCoreApp,Version=v3.0": {
".NETCoreApp,Version=v8.0": {
"IntegrationTestSample/1.0.0": {
"dependencies": {
"Gauge.CSharp.Lib": "0.7.6"
"Gauge.CSharp.Lib": "0.11.1"
},
"runtime": {
"IntegrationTestSample.dll": {}
}
},
"Gauge.CSharp.Lib/0.7.6": {
"Gauge.CSharp.Lib/0.11.1": {
"runtime": {
"lib/netstandard2.0/Gauge.CSharp.Lib.dll": {
"assemblyVersion": "0.7.6.0",
"fileVersion": "0.7.6.0"
"lib/net8.0/Gauge.CSharp.Lib.dll": {
"assemblyVersion": "0.11.1.0",
"fileVersion": "0.11.1.0"
}
}
}
Expand All @@ -30,12 +30,12 @@
"serviceable": false,
"sha512": ""
},
"Gauge.CSharp.Lib/0.7.6": {
"Gauge.CSharp.Lib/0.11.1": {
"type": "package",
"serviceable": true,
"sha512": "sha512-VPkNe57TqAXTxA0+UHe35+cpJT2DkqWt1hmWi3eOxTJZy3widdC8GIhRERM34V5G5mQrfM2z4+AvPAbj0nv0+A==",
"path": "gauge.csharp.lib/0.7.6",
"hashPath": "gauge.csharp.lib.0.7.6.nupkg.sha512"
"sha512": "sha512-QEgfnNnhgPkW+BuXcz4bKN4DsjFWEepIN7gcIs68/STVlejB6LaMYDmrDFdakSVV6G21xWz4U8egSurZsN4RaA==",
"path": "gauge.csharp.lib/0.11.1",
"hashPath": "gauge.csharp.lib.0.11.1.nupkg.sha512"
}
}
}
Binary file modified _testdata/Sample/gauge_bin/IntegrationTestSample.dll
Binary file not shown.
Binary file modified _testdata/Sample/gauge_bin/IntegrationTestSample.pdb
Binary file not shown.
2 changes: 1 addition & 1 deletion _testdata/SampleDllReference/IntegrationTestSample.sln
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".paket", ".paket", "{B18284
..\paket.dependencies = ..\paket.dependencies
EndProjectSection
EndProject
Project("91a15a46-889c-481f-8902-ef5ca22640c3") = "IntegrationTestSample", "IntegrationTestSample.csproj", "6c31d99f-a982-4596-b423-5e945c16662d"
Project("91a15a46-889c-481f-8902-ef5ca22640c3") = "IntegrationTestSample", "IntegrationTestSampleDllReference.csproj", "6c31d99f-a982-4596-b423-5e945c16662d"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
<Project Sdk="Microsoft.NET.Sdk">
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<TargetFramework>net8.0</TargetFramework>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Gauge.CSharp.Lib" Version="0.10.0" />
<PackageReference Include="Gauge.CSharp.Lib" Version="0.11.1" />
</ItemGroup>

<ItemGroup>
Expand Down
Loading

0 comments on commit 3bbbd16

Please sign in to comment.