Fixes #4410, #4413, #4414, #4415 - MessageBox nullable, Clipboard refactor, fence for legacy/modern App, and makes internal classes thread safe.
#2422
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Check for Duplicate UnitTests | |
| on: | |
| push: | |
| branches: [ v2_release, v2_develop ] | |
| pull_request: | |
| branches: [ v2_release, v2_develop ] | |
| workflow_dispatch: | |
| jobs: | |
| check-duplicates: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Run Duplicate Test Check | |
| run: pwsh -File ./Scripts/FindDuplicateTestMethodsInSameFileName.ps1 -solutionPath "$PWD" |