Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions .github/actions/setup-dotnet-build/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,7 @@ inputs:
description: '.NET versions to install'
required: false
default: |
3.1.x
6.x
9.x
configuration:
description: 'Build configuration'
required: false
Expand All @@ -30,4 +29,4 @@ runs:

- name: Build
run: dotnet build --configuration ${{ inputs.configuration }} ${{ inputs.build-args }}
shell: pwsh
shell: pwsh
2 changes: 1 addition & 1 deletion IntelliTect.TestTools.Console.Tests/ConsoleAssertTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ public void ExecuteProcess_PingLocalhost_Success()
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.Linux))
{
expected = $@"PING *(* (::1)) 56 data bytes
expected = $@"PING *(::1) 56 data bytes
64 bytes from * (::1): icmp_seq=1 ttl=64 time=* ms*";
}
else if (RuntimeInformation.IsOSPlatform(OSPlatform.OSX))
Expand Down
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-16"?>
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net9.0</TargetFramework>

<ProductName>IntelliTect.TestTools.Console.Tests</ProductName>
</PropertyGroup>

Expand Down
Loading