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
6 changes: 6 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run unit tests (windows)
if: matrix.os == 'windows-latest'
run: ./build.ps1 CodeCoverage
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: API checks
run: ./build.sh ApiChecks
- name: Upload artifacts
Expand Down Expand Up @@ -79,6 +81,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run mutation tests
run: ./build.sh MutationTests MutationTestDashboard

Expand All @@ -99,6 +102,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run benchmarks
run: ./build.sh Benchmarks

Expand All @@ -119,6 +123,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run sonarcloud analysis
run: ./build.sh CodeAnalysis

Expand Down Expand Up @@ -157,6 +162,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Pack nuget packages
run: ./build.sh Pack
- name: Upload packages
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/ci-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Upload mutation dashboard and create comment
run: ./build.sh MutationTestDashboard
env:
Expand All @@ -47,6 +48,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Create benchmark comment
run: ./build.sh BenchmarkComment
env:
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run unit tests (windows)
if: matrix.os == 'windows-latest'
run: ./build.ps1 CodeCoverage
Expand Down Expand Up @@ -52,6 +53,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: API checks
run: ./build.sh ApiChecks
- name: Upload artifacts
Expand All @@ -78,6 +80,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run mutation tests
run: ./build.sh MutationTests
- name: Upload artifacts
Expand All @@ -103,6 +106,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run benchmarks
run: ./build.sh Benchmarks
- name: Upload artifacts
Expand Down Expand Up @@ -131,6 +135,7 @@ jobs:
dotnet-version: |
8.0.x
9.0.x
10.0.x
- name: Run sonarcloud analysis
run: ./build.sh CodeAnalysis

Expand Down
2 changes: 1 addition & 1 deletion .nuke/parameters.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"$schema": "build.schema.json",
"Solution": "aweXpect.Web.sln"
"Solution": "aweXpect.Web.slnx"
}
9 changes: 5 additions & 4 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -14,16 +14,17 @@
<PackageVersion Include="IsExternalInit" Version="1.0.3" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Nuke.Common" Version="9.0.4" />
<PackageVersion Include="Nuke.Components" Version="9.0.4" />
<PackageVersion Include="Nuke.Common" Version="10.1.0" />
<PackageVersion Include="Nuke.Components" Version="10.1.0" />
<PackageVersion Include="LibGit2Sharp" Version="0.31.0" />
<PackageVersion Include="SharpCompress" Version="0.39.0" />
<PackageVersion Include="SharpCompress" Version="0.47.4" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Meziantou.Analyzer" Version="2.0.163" />
</ItemGroup>
<ItemGroup>
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.26" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="8.0.26" Condition="'$(TargetFramework)' != 'net10.0'" />
<PackageVersion Include="Microsoft.AspNetCore.Mvc.Testing" Version="10.0.7" Condition="'$(TargetFramework)' == 'net10.0'" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="18.5.1" />
<PackageVersion Include="BenchmarkDotNet" Version="0.15.8" />
<PackageVersion Include="NUnit" Version="4.6.0" />
Expand Down
3 changes: 1 addition & 2 deletions Pipeline/Build.MutationTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@ partial class Build

DotNetToolInstall(_ => _
.SetPackageName("dotnet-stryker")
.SetVersion("4.7.0")
.SetToolInstallationPath(toolPath));

Dictionary<Project, Project[]> projects = new()
Expand Down Expand Up @@ -78,7 +77,7 @@ partial class Build
{{string.Join(",\n\t\t\t", project.Value.Select(PathForJson))}}
],
"project": {{PathForJson(project.Key)}},
"target-framework": "net8.0",
"target-framework": "net10.0",
"since": {
"target": "main",
"enabled": {{(BranchName != "main").ToString().ToLowerInvariant()}},
Expand Down
2 changes: 1 addition & 1 deletion Pipeline/Build.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<NoWarn>CS0649;CS0169;CA1050;CA1822;CA2211;IDE1006</NoWarn>
Comment thread
vbreuss marked this conversation as resolved.
<NukeRootDirectory>..</NukeRootDirectory>
<NukeScriptDirectory>..</NukeScriptDirectory>
Expand Down
2 changes: 1 addition & 1 deletion Source/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
</PropertyGroup>

<PropertyGroup>
<TargetFrameworks>netstandard2.0;net8.0</TargetFrameworks>
<TargetFrameworks>netstandard2.0;net8.0;net10.0</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion Source/aweXpect.Web.Samples/aweXpect.Web.Samples.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">

<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFrameworks>net8.0;net10.0</TargetFrameworks>
</PropertyGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion Tests/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Condition="Exists('$(MSBuildThisFileDirectory)/../Directory.Build.props')"/>

<PropertyGroup>
<TargetFrameworks>net8.0;net48</TargetFrameworks>
<TargetFrameworks>net8.0;net10.0;net48</TargetFrameworks>
</PropertyGroup>

<PropertyGroup>
Expand Down
Loading
Loading