diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index cb1826ee..fbfad3c4 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -48,9 +48,13 @@ jobs: restore-keys: | ${{ runner.os }}-nuget-${{ hashFiles('**/packages.lock.json') }} ${{ runner.os }}-nuget- + - name: List dotnet versions installed + run: | + dotnet --list-sdks + dotnet --info - name: Restore dependencies run: dotnet restore - name: Build run: dotnet build --no-restore - name: Test - run: dotnet test --no-build --no-restore --verbosity normal \ No newline at end of file + run: dotnet test --no-build --no-restore --verbosity normal diff --git a/Directory.Packages.props b/Directory.Packages.props index 60373881..98ed3e0b 100644 --- a/Directory.Packages.props +++ b/Directory.Packages.props @@ -8,9 +8,9 @@ - - - + + + diff --git a/README.md b/README.md index 62644e27..406f7dc1 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ This project contains the source code for the book **Essential C#** by Mark Mich ## Checkout the online resource that walks through all code samples in this repository at [EssentialCSharp.com](https://essentialcsharp.com) ## Requirements - +q - [.NET](https://www.microsoft.com/net/core) - This project is currently tested against .NET 8.0, 7.0, and 6.0. - [Visual Studio](https://visualstudio.microsoft.com/downloads/) - Already contains .NET Core to get up and running. Not to mention, it's a great IDE that makes it easy to get started. - [Git](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git) - While not required, a good tool to get used to, and easy way to download this code repository quickly. [GitKraken](https://www.gitkraken.com/invite/bX2Nqsqr) is a great GUI for using Git if you prefer not using the command line.