diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index ae07f2c..eb511af 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,13 +12,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 5.0.400 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.301 + dotnet-version: '6.0.x' + dotnet-quality: 'ga' - name: Build run: dotnet build -c Release "src/Hedgehog.Xunit" - name: Test diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 26c769e..280cf17 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -12,13 +12,10 @@ jobs: steps: - uses: actions/checkout@v2 - name: Setup .NET Core - uses: actions/setup-dotnet@v1 + uses: actions/setup-dotnet@v3 with: - dotnet-version: 5.0.400 - - name: Setup .NET Core - uses: actions/setup-dotnet@v1 - with: - dotnet-version: 3.1.301 + dotnet-version: '6.0.x' + dotnet-quality: 'ga' - name: Build run: dotnet build -c Release "src/Hedgehog.Xunit" - name: Test diff --git a/.gitignore b/.gitignore index 14cbd9e..62cf993 100644 --- a/.gitignore +++ b/.gitignore @@ -56,4 +56,5 @@ paket-files # NCrunch *.ncrunchsolution *.ncrunchproject -*_NCrunch_* \ No newline at end of file +*_NCrunch_* +*NCrunch_* \ No newline at end of file diff --git a/src/Hedgehog.Xunit/Hedgehog.Xunit.fsproj b/src/Hedgehog.Xunit/Hedgehog.Xunit.fsproj index ea6ca22..a5474ba 100644 --- a/src/Hedgehog.Xunit/Hedgehog.Xunit.fsproj +++ b/src/Hedgehog.Xunit/Hedgehog.Xunit.fsproj @@ -2,7 +2,7 @@ true - netstandard2.0 + netstandard2.1 true true true diff --git a/tests/Hedgehog.Xunit.Tests/Hedgehog.Xunit.Tests.fsproj b/tests/Hedgehog.Xunit.Tests/Hedgehog.Xunit.Tests.fsproj index 353c42c..9e33cc7 100644 --- a/tests/Hedgehog.Xunit.Tests/Hedgehog.Xunit.Tests.fsproj +++ b/tests/Hedgehog.Xunit.Tests/Hedgehog.Xunit.Tests.fsproj @@ -1,7 +1,7 @@ - netcoreapp3.1 + net6.0