Skip to content

Commit

Permalink
Add architecture to unit test project
Browse files Browse the repository at this point in the history
  • Loading branch information
daniel-lerch committed Dec 9, 2024
1 parent 58a17d0 commit 13aa249
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

# Execute all unit tests in the solution
- name: Execute unit tests
run: dotnet test
run: dotnet test --configuration ${{ matrix.configuration }} --arch x64

# Restore the application to populate the obj folder with RuntimeIdentifiers
- name: Restore the application
Expand Down
2 changes: 2 additions & 0 deletions tests/Vocup.UnitTests/Vocup.UnitTests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
<PropertyGroup>
<TargetFramework>net9.0-windows10.0.22621.0</TargetFramework>
<TargetPlatformMinVersion>10.0.14393.0</TargetPlatformMinVersion>
<Platforms>AnyCPU;x86;x64;ARM64</Platforms>
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
Expand Down

0 comments on commit 13aa249

Please sign in to comment.