Skip to content

Merge release branch changes #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 37 commits into from
Apr 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
a7a74b6
Enables running NUnit 2 tests from dotnet cli (#1205)
aivascu Oct 25, 2020
8a566fe
Merge branch 'master' into release/5.0.0
aivascu Nov 2, 2021
2a2c008
Adds NUKE build script (#1299)
aivascu Nov 8, 2021
b0d587d
Fixes preview package publish (#1300)
aivascu Nov 8, 2021
eefe547
Move from AppVeyor to GitHub Actions (#1317)
aivascu Jan 22, 2022
04f1212
Raised minimum .NET Framework target version to 4.6.1
aivascu Feb 9, 2022
7d5728a
Dropped support for FakeItEasy v2 to v5
aivascu Feb 9, 2022
d73ef62
Removed netstandard1.x and netcoreapp1.x targets
aivascu Feb 9, 2022
dd75efb
Merge branch 'master' into release/5.0.0
aivascu Mar 26, 2023
fcf8160
Merge branch 'master' into release/5.0.0
aivascu Nov 28, 2023
3243f33
Updated build script and project references (#1424)
aivascu Dec 4, 2023
4374d94
Added GitHub SemVer tag check (#1425)
aivascu Dec 4, 2023
183a94f
Optimized deterministic builds (#1428)
aivascu Dec 5, 2023
02df12d
Removed explicit dependency to System.ComponentModel.Annotations
aivascu Dec 9, 2023
8b1282f
Dropped NSubstitute 3
aivascu Dec 9, 2023
328df3d
Dropped FsCheck 0.9 and 1.x
aivascu Dec 9, 2023
c31e811
Skip sdk deprecation in nuke project
aivascu Dec 9, 2023
5b2d402
Removed FsCheck 2 project from slnf
aivascu Dec 9, 2023
d9fcaba
Removed package format from build
aivascu Dec 10, 2023
02637b3
Set debug type to always be portable
aivascu Dec 10, 2023
b42ee2e
Added .NET 5 target runtime (#1443)
aivascu Feb 18, 2024
190aa67
Merge branch 'master' into release/5.0.0
aivascu Mar 17, 2024
da44591
Reimplemented XUnit 2 AutoData attributes (#1433)
aivascu Mar 25, 2024
5b3e10a
Added .NET 6.0 target (#1448)
aivascu Apr 14, 2024
e984222
Added NUnit 4 support (#1452)
aivascu Apr 14, 2024
1fc6395
XML documentation generation always enabled (#1454)
aivascu Apr 15, 2024
a8fb13e
Set explicit versions for C# and F# (#1476)
aivascu Sep 21, 2024
1d5b88a
Refactored xUnit data attribute internal implementation (#1479)
aivascu Jan 14, 2025
2a367d2
Feature/xunit.v3 (#1471)
evilbaschdi Jan 19, 2025
34f6225
Updated GitHub workflow action versions (#1488)
aivascu Jan 21, 2025
07715dd
Updated copyright and author details (#1491)
aivascu Feb 19, 2025
463d659
Updated solution structure (#1492)
aivascu Feb 19, 2025
a459f4f
Merge branch 'master' into release/5.0.0
aivascu Feb 19, 2025
1d85d10
updated readme to respect AutoFixture.XUnit3 and AutoFixture NUnit4 (…
evilbaschdi Mar 10, 2025
e20868e
Merge branch 'master' into release/5.0.0
aivascu Mar 10, 2025
53946cf
Updated projects after migration
aivascu Apr 8, 2025
8c42aeb
Updated build script to net6.0
aivascu Apr 9, 2025
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
12 changes: 0 additions & 12 deletions .config/dotnet-tools.json

This file was deleted.

47 changes: 47 additions & 0 deletions .github/workflows/continuous.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_continuous --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: continuous

on:
pull_request:
branches:
- master
- 'release/*'

jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v4
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.cmd Verify Cover Pack'
run: ./build.cmd Verify Cover Pack --no-logo
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
59 changes: 59 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# ------------------------------------------------------------------------------
# <auto-generated>
#
# This code was generated.
#
# - To turn off auto-generation set:
#
# [GitHubActions (AutoGenerate = false)]
#
# - To trigger manual generation invoke:
#
# nuke --generate-configuration GitHubActions_release --host GitHubActions
#
# </auto-generated>
# ------------------------------------------------------------------------------

name: release

on:
push:
tags:
- 'v*'

jobs:
windows-latest:
name: windows-latest
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-dotnet@v4
with:
dotnet-version: |
6.0.x
- name: Cache .nuke/temp, ~/.nuget/packages
uses: actions/cache@v4
with:
path: |
.nuke/temp
~/.nuget/packages
key: ${{ runner.os }}-${{ hashFiles('**/global.json', '**/*.csproj') }}
- name: Run './build.cmd Verify Cover Publish'
run: ./build.cmd Verify Cover Publish --no-logo
env:
GitHubToken: ${{ secrets.GITHUB_TOKEN }}
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
- uses: actions/upload-artifact@v4
with:
name: testresults
path: artifacts/testresults
- uses: actions/upload-artifact@v4
with:
name: reports
path: artifacts/reports
- uses: actions/upload-artifact@v4
with:
name: packages
path: artifacts/packages
Loading