Skip to content

Commit

Permalink
chore: update dependencies for test frameworks and logger. (#47)
Browse files Browse the repository at this point in the history
Update core testlogger and remove appveyor.
  • Loading branch information
codito committed Jul 6, 2023
1 parent af4a7f8 commit e049c29
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 32 deletions.
25 changes: 0 additions & 25 deletions .appveyor.yml

This file was deleted.

5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,11 @@

## Unreleased (v3.1.x)

- Update core testlogger to 3.1.130.
- Fix for illegal xml characters in various names. See https://github.com/spekt/testlogger/pull/37
- Use DisplayName for method names. See https://github.com/spekt/xunit.testlogger/pull/46
- Various infra fixes: move to net7.0, add github CI and remove appveyor.

## v3.0.78 - 2023/01/30

- Update core testlogger to 3.0.86 for xunit test adapter
Expand Down
8 changes: 4 additions & 4 deletions scripts/dependencies.props
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<MSTestVersion>1.3.2</MSTestVersion>
<NETTestSdkVersion>15.7.2</NETTestSdkVersion>
<MoqVersion>4.9.0</MoqVersion>
<TestLoggerVersion>3.0.122</TestLoggerVersion>
<MSTestVersion>3.0.4</MSTestVersion>
<NETTestSdkVersion>17.3.2</NETTestSdkVersion>
<MoqVersion>4.18.4</MoqVersion>
<TestLoggerVersion>3.1.130</TestLoggerVersion>

<!-- Test Assets use the minimum supported versions -->
<NETTestSdkMinimumVersion>15.5.0</NETTestSdkMinimumVersion>
Expand Down
2 changes: 1 addition & 1 deletion scripts/settings.targets
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<SourceRoot Condition="$(SourceRoot) == ''">$(MSBuildThisFileDirectory)../../</SourceRoot>
<SourcePrefix>3.0.0</SourcePrefix>
<SourcePrefix>3.1.0</SourcePrefix>
</PropertyGroup>
<PropertyGroup>
<!-- Versioning is defined from the build script. Use a default dev build if it's not defined.
Expand Down
2 changes: 1 addition & 1 deletion scripts/version.props
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project>
<PropertyGroup>
<PackageVersion Condition="'$(PackageVersion)' == ''">3.0.0-dev</PackageVersion>
<PackageVersion Condition="'$(PackageVersion)' == ''">3.1.0-dev</PackageVersion>
</PropertyGroup>
</Project>
<!-- vi: set ft=xml: -->
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,10 @@ public DotnetTestFixture()
p.StartInfo.RedirectStandardOutput = true;
p.StartInfo.FileName = "dotnet";
p.StartInfo.Arguments = $"test --no-build {testLogger} {testProject}";

// Required to run netcoreapp3.1 without icu support on devbox (linux)
p.StartInfo.EnvironmentVariables.Add("DOTNET_SYSTEM_GLOBALIZATION_INVARIANT", "1");

p.Start();

Console.WriteLine("dotnet arguments: " + p.StartInfo.Arguments);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<Import Project="$(SourceRoot)scripts/settings.targets" />

<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net7.0</TargetFramework>
<WarningsAsErrors>true</WarningsAsErrors>
<EnableCodeAnalysis>true</EnableCodeAnalysis>
<IsPackable>false</IsPackable>
Expand Down

0 comments on commit e049c29

Please sign in to comment.