diff --git a/.travis.yml b/.travis.yml index 60aac2622e..fc15d84116 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,7 +1,7 @@ dist: xenial language: csharp mono: none -dotnet: 2.2.203 +dotnet: 3.0.100 addons: apt: packages: diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index 847b129f86..fd3c38f4bd 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -1,6 +1,6 @@ ### Installing .NET Core -The C# track is built on top of the [.NET Core](https://www.microsoft.com/net/core/platform) platform, which runs on Windows, Linux and macOS. To build .NET Core projects, you can use the .NET Core Command Line Interface (CLI). This CLI is part of the .NET Core SDK, which you can install by following the [installation instructions](https://www.microsoft.com/net/download/core). Note: the C# track requires SDK version 2.1 or greater. +The C# track is built on top of the [.NET Core](https://www.microsoft.com/net/core/platform) platform, which runs on Windows, Linux and macOS. To build .NET Core projects, you can use the .NET Core Command Line Interface (CLI). This CLI is part of the .NET Core SDK, which you can install by following the [installation instructions](https://www.microsoft.com/net/download/core). Note: the C# track requires SDK version 3.0 or greater. After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: @@ -8,7 +8,7 @@ After completing the installation, you can verify if the CLI was installed succe dotnet --version ``` -If the output is a version greater than or equal to `2.1.0`, the .NET Core SDK has been installed succesfully. +If the output is a version greater than or equal to `3.0.100`, the .NET Core SDK has been installed succesfully. ### Using an IDE diff --git a/exercises/accumulate/Accumulate.csproj b/exercises/accumulate/Accumulate.csproj index 837f593899..7f86b44597 100644 --- a/exercises/accumulate/Accumulate.csproj +++ b/exercises/accumulate/Accumulate.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/acronym/Acronym.csproj b/exercises/acronym/Acronym.csproj index 0befacc5fd..2f8e8bad19 100644 --- a/exercises/acronym/Acronym.csproj +++ b/exercises/acronym/Acronym.csproj @@ -2,7 +2,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/affine-cipher/AffineCipher.csproj b/exercises/affine-cipher/AffineCipher.csproj index 9a22f246f8..d8807bc5d8 100644 --- a/exercises/affine-cipher/AffineCipher.csproj +++ b/exercises/affine-cipher/AffineCipher.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/all-your-base/AllYourBase.csproj b/exercises/all-your-base/AllYourBase.csproj index 837f593899..7f86b44597 100644 --- a/exercises/all-your-base/AllYourBase.csproj +++ b/exercises/all-your-base/AllYourBase.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/allergies/Allergies.csproj b/exercises/allergies/Allergies.csproj index 837f593899..7f86b44597 100644 --- a/exercises/allergies/Allergies.csproj +++ b/exercises/allergies/Allergies.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/alphametics/Alphametics.csproj b/exercises/alphametics/Alphametics.csproj index 7749aae79f..482d6035e7 100644 --- a/exercises/alphametics/Alphametics.csproj +++ b/exercises/alphametics/Alphametics.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/anagram/Anagram.csproj b/exercises/anagram/Anagram.csproj index 837f593899..7f86b44597 100644 --- a/exercises/anagram/Anagram.csproj +++ b/exercises/anagram/Anagram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/armstrong-numbers/ArmstrongNumbers.csproj b/exercises/armstrong-numbers/ArmstrongNumbers.csproj index 837f593899..7f86b44597 100644 --- a/exercises/armstrong-numbers/ArmstrongNumbers.csproj +++ b/exercises/armstrong-numbers/ArmstrongNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/atbash-cipher/AtbashCipher.csproj b/exercises/atbash-cipher/AtbashCipher.csproj index 837f593899..7f86b44597 100644 --- a/exercises/atbash-cipher/AtbashCipher.csproj +++ b/exercises/atbash-cipher/AtbashCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/bank-account/BankAccount.csproj b/exercises/bank-account/BankAccount.csproj index 837f593899..7f86b44597 100644 --- a/exercises/bank-account/BankAccount.csproj +++ b/exercises/bank-account/BankAccount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/beer-song/BeerSong.csproj b/exercises/beer-song/BeerSong.csproj index 837f593899..7f86b44597 100644 --- a/exercises/beer-song/BeerSong.csproj +++ b/exercises/beer-song/BeerSong.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/binary-search-tree/BinarySearchTree.csproj b/exercises/binary-search-tree/BinarySearchTree.csproj index 837f593899..7f86b44597 100644 --- a/exercises/binary-search-tree/BinarySearchTree.csproj +++ b/exercises/binary-search-tree/BinarySearchTree.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/binary-search/BinarySearch.csproj b/exercises/binary-search/BinarySearch.csproj index 837f593899..7f86b44597 100644 --- a/exercises/binary-search/BinarySearch.csproj +++ b/exercises/binary-search/BinarySearch.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/binary/Binary.csproj b/exercises/binary/Binary.csproj index 99c2bbecc8..a5ea09ee4e 100644 --- a/exercises/binary/Binary.csproj +++ b/exercises/binary/Binary.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/bob/Bob.csproj b/exercises/bob/Bob.csproj index 837f593899..7f86b44597 100644 --- a/exercises/bob/Bob.csproj +++ b/exercises/bob/Bob.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/book-store/BookStore.csproj b/exercises/book-store/BookStore.csproj index 837f593899..7f86b44597 100644 --- a/exercises/book-store/BookStore.csproj +++ b/exercises/book-store/BookStore.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/bowling/Bowling.csproj b/exercises/bowling/Bowling.csproj index 837f593899..7f86b44597 100644 --- a/exercises/bowling/Bowling.csproj +++ b/exercises/bowling/Bowling.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/change/Change.csproj b/exercises/change/Change.csproj index 837f593899..7f86b44597 100644 --- a/exercises/change/Change.csproj +++ b/exercises/change/Change.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/circular-buffer/CircularBuffer.csproj b/exercises/circular-buffer/CircularBuffer.csproj index 837f593899..7f86b44597 100644 --- a/exercises/circular-buffer/CircularBuffer.csproj +++ b/exercises/circular-buffer/CircularBuffer.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/clock/Clock.csproj b/exercises/clock/Clock.csproj index 837f593899..7f86b44597 100644 --- a/exercises/clock/Clock.csproj +++ b/exercises/clock/Clock.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/collatz-conjecture/CollatzConjecture.csproj b/exercises/collatz-conjecture/CollatzConjecture.csproj index f1849a9520..f130b10d88 100644 --- a/exercises/collatz-conjecture/CollatzConjecture.csproj +++ b/exercises/collatz-conjecture/CollatzConjecture.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/complex-numbers/ComplexNumbers.csproj b/exercises/complex-numbers/ComplexNumbers.csproj index bc6e9e0b67..f455aab190 100644 --- a/exercises/complex-numbers/ComplexNumbers.csproj +++ b/exercises/complex-numbers/ComplexNumbers.csproj @@ -2,7 +2,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/connect/Connect.csproj b/exercises/connect/Connect.csproj index 837f593899..7f86b44597 100644 --- a/exercises/connect/Connect.csproj +++ b/exercises/connect/Connect.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/crypto-square/CryptoSquare.csproj b/exercises/crypto-square/CryptoSquare.csproj index 837f593899..7f86b44597 100644 --- a/exercises/crypto-square/CryptoSquare.csproj +++ b/exercises/crypto-square/CryptoSquare.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/custom-set/CustomSet.csproj b/exercises/custom-set/CustomSet.csproj index 837f593899..7f86b44597 100644 --- a/exercises/custom-set/CustomSet.csproj +++ b/exercises/custom-set/CustomSet.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/darts/Darts.csproj b/exercises/darts/Darts.csproj index 74458ff184..c637ccd5e2 100644 --- a/exercises/darts/Darts.csproj +++ b/exercises/darts/Darts.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/diamond/Diamond.csproj b/exercises/diamond/Diamond.csproj index b6127d8807..eba465efb3 100644 --- a/exercises/diamond/Diamond.csproj +++ b/exercises/diamond/Diamond.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/difference-of-squares/DifferenceOfSquares.csproj b/exercises/difference-of-squares/DifferenceOfSquares.csproj index 837f593899..7f86b44597 100644 --- a/exercises/difference-of-squares/DifferenceOfSquares.csproj +++ b/exercises/difference-of-squares/DifferenceOfSquares.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/diffie-hellman/DiffieHellman.csproj b/exercises/diffie-hellman/DiffieHellman.csproj index 837f593899..7f86b44597 100644 --- a/exercises/diffie-hellman/DiffieHellman.csproj +++ b/exercises/diffie-hellman/DiffieHellman.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/dnd-character/DndCharacter.csproj b/exercises/dnd-character/DndCharacter.csproj index 74458ff184..c637ccd5e2 100644 --- a/exercises/dnd-character/DndCharacter.csproj +++ b/exercises/dnd-character/DndCharacter.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/dominoes/Dominoes.csproj b/exercises/dominoes/Dominoes.csproj index 837f593899..7f86b44597 100644 --- a/exercises/dominoes/Dominoes.csproj +++ b/exercises/dominoes/Dominoes.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/dot-dsl/DotDsl.csproj b/exercises/dot-dsl/DotDsl.csproj index 837f593899..7f86b44597 100644 --- a/exercises/dot-dsl/DotDsl.csproj +++ b/exercises/dot-dsl/DotDsl.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/error-handling/ErrorHandling.csproj b/exercises/error-handling/ErrorHandling.csproj index 837f593899..7f86b44597 100644 --- a/exercises/error-handling/ErrorHandling.csproj +++ b/exercises/error-handling/ErrorHandling.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/etl/Etl.csproj b/exercises/etl/Etl.csproj index 837f593899..7f86b44597 100644 --- a/exercises/etl/Etl.csproj +++ b/exercises/etl/Etl.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/flatten-array/FlattenArray.csproj b/exercises/flatten-array/FlattenArray.csproj index 837f593899..7f86b44597 100644 --- a/exercises/flatten-array/FlattenArray.csproj +++ b/exercises/flatten-array/FlattenArray.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/food-chain/FoodChain.csproj b/exercises/food-chain/FoodChain.csproj index 837f593899..7f86b44597 100644 --- a/exercises/food-chain/FoodChain.csproj +++ b/exercises/food-chain/FoodChain.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/forth/Forth.csproj b/exercises/forth/Forth.csproj index 1ed2faee53..8bbf9626b9 100644 --- a/exercises/forth/Forth.csproj +++ b/exercises/forth/Forth.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/gigasecond/Gigasecond.csproj b/exercises/gigasecond/Gigasecond.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/gigasecond/Gigasecond.csproj +++ b/exercises/gigasecond/Gigasecond.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/go-counting/GoCounting.csproj b/exercises/go-counting/GoCounting.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/go-counting/GoCounting.csproj +++ b/exercises/go-counting/GoCounting.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/grade-school/GradeSchool.csproj b/exercises/grade-school/GradeSchool.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/grade-school/GradeSchool.csproj +++ b/exercises/grade-school/GradeSchool.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/grains/Grains.csproj b/exercises/grains/Grains.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/grains/Grains.csproj +++ b/exercises/grains/Grains.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/grep/Grep.csproj b/exercises/grep/Grep.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/grep/Grep.csproj +++ b/exercises/grep/Grep.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/hamming/Hamming.csproj b/exercises/hamming/Hamming.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/hamming/Hamming.csproj +++ b/exercises/hamming/Hamming.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/hangman/Hangman.csproj b/exercises/hangman/Hangman.csproj index f4603ca93f..e3c9d8c6e1 100644 --- a/exercises/hangman/Hangman.csproj +++ b/exercises/hangman/Hangman.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/hello-world/HelloWorld.csproj b/exercises/hello-world/HelloWorld.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/hello-world/HelloWorld.csproj +++ b/exercises/hello-world/HelloWorld.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/hexadecimal/Hexadecimal.csproj b/exercises/hexadecimal/Hexadecimal.csproj index 99c2bbecc8..a5ea09ee4e 100644 --- a/exercises/hexadecimal/Hexadecimal.csproj +++ b/exercises/hexadecimal/Hexadecimal.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/high-scores/HighScores.csproj b/exercises/high-scores/HighScores.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/high-scores/HighScores.csproj +++ b/exercises/high-scores/HighScores.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/house/House.csproj b/exercises/house/House.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/house/House.csproj +++ b/exercises/house/House.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/isbn-verifier/IsbnVerifier.csproj b/exercises/isbn-verifier/IsbnVerifier.csproj index f05255b3be..a94fa74efa 100644 --- a/exercises/isbn-verifier/IsbnVerifier.csproj +++ b/exercises/isbn-verifier/IsbnVerifier.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/isogram/Isogram.csproj b/exercises/isogram/Isogram.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/isogram/Isogram.csproj +++ b/exercises/isogram/Isogram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/kindergarten-garden/KindergartenGarden.csproj b/exercises/kindergarten-garden/KindergartenGarden.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/kindergarten-garden/KindergartenGarden.csproj +++ b/exercises/kindergarten-garden/KindergartenGarden.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/largest-series-product/LargestSeriesProduct.csproj b/exercises/largest-series-product/LargestSeriesProduct.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/largest-series-product/LargestSeriesProduct.csproj +++ b/exercises/largest-series-product/LargestSeriesProduct.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/leap/Leap.csproj b/exercises/leap/Leap.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/leap/Leap.csproj +++ b/exercises/leap/Leap.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/ledger/Ledger.csproj b/exercises/ledger/Ledger.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/ledger/Ledger.csproj +++ b/exercises/ledger/Ledger.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/linked-list/LinkedList.csproj b/exercises/linked-list/LinkedList.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/linked-list/LinkedList.csproj +++ b/exercises/linked-list/LinkedList.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/list-ops/ListOps.csproj b/exercises/list-ops/ListOps.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/list-ops/ListOps.csproj +++ b/exercises/list-ops/ListOps.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/luhn/Luhn.csproj b/exercises/luhn/Luhn.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/luhn/Luhn.csproj +++ b/exercises/luhn/Luhn.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/markdown/Markdown.csproj b/exercises/markdown/Markdown.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/markdown/Markdown.csproj +++ b/exercises/markdown/Markdown.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/matching-brackets/MatchingBrackets.csproj b/exercises/matching-brackets/MatchingBrackets.csproj index 837f593899..7f86b44597 100644 --- a/exercises/matching-brackets/MatchingBrackets.csproj +++ b/exercises/matching-brackets/MatchingBrackets.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/matrix/Matrix.csproj b/exercises/matrix/Matrix.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/matrix/Matrix.csproj +++ b/exercises/matrix/Matrix.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/meetup/Meetup.csproj b/exercises/meetup/Meetup.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/meetup/Meetup.csproj +++ b/exercises/meetup/Meetup.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/minesweeper/Minesweeper.csproj b/exercises/minesweeper/Minesweeper.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/minesweeper/Minesweeper.csproj +++ b/exercises/minesweeper/Minesweeper.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/nth-prime/NthPrime.csproj b/exercises/nth-prime/NthPrime.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/nth-prime/NthPrime.csproj +++ b/exercises/nth-prime/NthPrime.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/nucleotide-count/NucleotideCount.csproj b/exercises/nucleotide-count/NucleotideCount.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/nucleotide-count/NucleotideCount.csproj +++ b/exercises/nucleotide-count/NucleotideCount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/ocr-numbers/OcrNumbers.csproj b/exercises/ocr-numbers/OcrNumbers.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/ocr-numbers/OcrNumbers.csproj +++ b/exercises/ocr-numbers/OcrNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/octal/Octal.csproj b/exercises/octal/Octal.csproj index 99c2bbecc8..a5ea09ee4e 100644 --- a/exercises/octal/Octal.csproj +++ b/exercises/octal/Octal.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/palindrome-products/PalindromeProducts.csproj b/exercises/palindrome-products/PalindromeProducts.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/palindrome-products/PalindromeProducts.csproj +++ b/exercises/palindrome-products/PalindromeProducts.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/pangram/Pangram.csproj b/exercises/pangram/Pangram.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/pangram/Pangram.csproj +++ b/exercises/pangram/Pangram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj b/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj +++ b/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/pascals-triangle/PascalsTriangle.csproj b/exercises/pascals-triangle/PascalsTriangle.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/pascals-triangle/PascalsTriangle.csproj +++ b/exercises/pascals-triangle/PascalsTriangle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/perfect-numbers/PerfectNumbers.csproj b/exercises/perfect-numbers/PerfectNumbers.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/perfect-numbers/PerfectNumbers.csproj +++ b/exercises/perfect-numbers/PerfectNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/phone-number/PhoneNumber.csproj b/exercises/phone-number/PhoneNumber.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/phone-number/PhoneNumber.csproj +++ b/exercises/phone-number/PhoneNumber.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/pig-latin/PigLatin.csproj b/exercises/pig-latin/PigLatin.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/pig-latin/PigLatin.csproj +++ b/exercises/pig-latin/PigLatin.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/poker/Poker.csproj b/exercises/poker/Poker.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/poker/Poker.csproj +++ b/exercises/poker/Poker.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/pov/Pov.csproj b/exercises/pov/Pov.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/pov/Pov.csproj +++ b/exercises/pov/Pov.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/prime-factors/PrimeFactors.csproj b/exercises/prime-factors/PrimeFactors.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/prime-factors/PrimeFactors.csproj +++ b/exercises/prime-factors/PrimeFactors.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/protein-translation/ProteinTranslation.csproj b/exercises/protein-translation/ProteinTranslation.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/protein-translation/ProteinTranslation.csproj +++ b/exercises/protein-translation/ProteinTranslation.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/proverb/Proverb.csproj b/exercises/proverb/Proverb.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/proverb/Proverb.csproj +++ b/exercises/proverb/Proverb.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/pythagorean-triplet/PythagoreanTriplet.csproj b/exercises/pythagorean-triplet/PythagoreanTriplet.csproj index 837f593899..7f86b44597 100644 --- a/exercises/pythagorean-triplet/PythagoreanTriplet.csproj +++ b/exercises/pythagorean-triplet/PythagoreanTriplet.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/queen-attack/QueenAttack.csproj b/exercises/queen-attack/QueenAttack.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/queen-attack/QueenAttack.csproj +++ b/exercises/queen-attack/QueenAttack.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rail-fence-cipher/RailFenceCipher.csproj b/exercises/rail-fence-cipher/RailFenceCipher.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/rail-fence-cipher/RailFenceCipher.csproj +++ b/exercises/rail-fence-cipher/RailFenceCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/raindrops/Raindrops.csproj b/exercises/raindrops/Raindrops.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/raindrops/Raindrops.csproj +++ b/exercises/raindrops/Raindrops.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rational-numbers/RationalNumbers.csproj b/exercises/rational-numbers/RationalNumbers.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/rational-numbers/RationalNumbers.csproj +++ b/exercises/rational-numbers/RationalNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/react/React.csproj b/exercises/react/React.csproj index 5e26e7d636..9c95fc3231 100644 --- a/exercises/react/React.csproj +++ b/exercises/react/React.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rectangles/Rectangles.csproj b/exercises/rectangles/Rectangles.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/rectangles/Rectangles.csproj +++ b/exercises/rectangles/Rectangles.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/resistor-color/ResistorColor.csproj b/exercises/resistor-color/ResistorColor.csproj index 837f593899..7f86b44597 100644 --- a/exercises/resistor-color/ResistorColor.csproj +++ b/exercises/resistor-color/ResistorColor.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rest-api/RestApi.csproj b/exercises/rest-api/RestApi.csproj index f1849a9520..f130b10d88 100644 --- a/exercises/rest-api/RestApi.csproj +++ b/exercises/rest-api/RestApi.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/reverse-string/ReverseString.csproj b/exercises/reverse-string/ReverseString.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/reverse-string/ReverseString.csproj +++ b/exercises/reverse-string/ReverseString.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rna-transcription/RnaTranscription.csproj b/exercises/rna-transcription/RnaTranscription.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/rna-transcription/RnaTranscription.csproj +++ b/exercises/rna-transcription/RnaTranscription.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/robot-name/RobotName.csproj b/exercises/robot-name/RobotName.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/robot-name/RobotName.csproj +++ b/exercises/robot-name/RobotName.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/robot-simulator/RobotSimulator.csproj b/exercises/robot-simulator/RobotSimulator.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/robot-simulator/RobotSimulator.csproj +++ b/exercises/robot-simulator/RobotSimulator.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/roman-numerals/RomanNumerals.csproj b/exercises/roman-numerals/RomanNumerals.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/roman-numerals/RomanNumerals.csproj +++ b/exercises/roman-numerals/RomanNumerals.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/rotational-cipher/RotationalCipher.csproj b/exercises/rotational-cipher/RotationalCipher.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/rotational-cipher/RotationalCipher.csproj +++ b/exercises/rotational-cipher/RotationalCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/run-length-encoding/RunLengthEncoding.csproj b/exercises/run-length-encoding/RunLengthEncoding.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/run-length-encoding/RunLengthEncoding.csproj +++ b/exercises/run-length-encoding/RunLengthEncoding.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/saddle-points/SaddlePoints.csproj b/exercises/saddle-points/SaddlePoints.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/saddle-points/SaddlePoints.csproj +++ b/exercises/saddle-points/SaddlePoints.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/say/Say.csproj b/exercises/say/Say.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/say/Say.csproj +++ b/exercises/say/Say.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/scale-generator/ScaleGenerator.csproj b/exercises/scale-generator/ScaleGenerator.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/scale-generator/ScaleGenerator.csproj +++ b/exercises/scale-generator/ScaleGenerator.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/scrabble-score/ScrabbleScore.csproj b/exercises/scrabble-score/ScrabbleScore.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/scrabble-score/ScrabbleScore.csproj +++ b/exercises/scrabble-score/ScrabbleScore.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/secret-handshake/SecretHandshake.csproj b/exercises/secret-handshake/SecretHandshake.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/secret-handshake/SecretHandshake.csproj +++ b/exercises/secret-handshake/SecretHandshake.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/series/Series.csproj b/exercises/series/Series.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/series/Series.csproj +++ b/exercises/series/Series.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/sgf-parsing/SgfParsing.csproj b/exercises/sgf-parsing/SgfParsing.csproj index 7fa48c984c..46ac00a9b8 100644 --- a/exercises/sgf-parsing/SgfParsing.csproj +++ b/exercises/sgf-parsing/SgfParsing.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/sieve/Sieve.csproj b/exercises/sieve/Sieve.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/sieve/Sieve.csproj +++ b/exercises/sieve/Sieve.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/simple-cipher/SimpleCipher.csproj b/exercises/simple-cipher/SimpleCipher.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/simple-cipher/SimpleCipher.csproj +++ b/exercises/simple-cipher/SimpleCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/simple-linked-list/SimpleLinkedList.csproj b/exercises/simple-linked-list/SimpleLinkedList.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/simple-linked-list/SimpleLinkedList.csproj +++ b/exercises/simple-linked-list/SimpleLinkedList.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/space-age/SpaceAge.csproj b/exercises/space-age/SpaceAge.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/space-age/SpaceAge.csproj +++ b/exercises/space-age/SpaceAge.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/spiral-matrix/SpiralMatrix.csproj b/exercises/spiral-matrix/SpiralMatrix.csproj index f1849a9520..f130b10d88 100644 --- a/exercises/spiral-matrix/SpiralMatrix.csproj +++ b/exercises/spiral-matrix/SpiralMatrix.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/strain/Strain.csproj b/exercises/strain/Strain.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/strain/Strain.csproj +++ b/exercises/strain/Strain.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/sublist/Sublist.csproj b/exercises/sublist/Sublist.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/sublist/Sublist.csproj +++ b/exercises/sublist/Sublist.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/sum-of-multiples/SumOfMultiples.csproj b/exercises/sum-of-multiples/SumOfMultiples.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/sum-of-multiples/SumOfMultiples.csproj +++ b/exercises/sum-of-multiples/SumOfMultiples.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/tournament/Tournament.csproj b/exercises/tournament/Tournament.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/tournament/Tournament.csproj +++ b/exercises/tournament/Tournament.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/transpose/Transpose.csproj b/exercises/transpose/Transpose.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/transpose/Transpose.csproj +++ b/exercises/transpose/Transpose.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/tree-building/TreeBuilding.csproj b/exercises/tree-building/TreeBuilding.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/tree-building/TreeBuilding.csproj +++ b/exercises/tree-building/TreeBuilding.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/triangle/Triangle.csproj b/exercises/triangle/Triangle.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/triangle/Triangle.csproj +++ b/exercises/triangle/Triangle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/trinary/Trinary.csproj b/exercises/trinary/Trinary.csproj index 99c2bbecc8..a5ea09ee4e 100644 --- a/exercises/trinary/Trinary.csproj +++ b/exercises/trinary/Trinary.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/twelve-days/TwelveDays.csproj b/exercises/twelve-days/TwelveDays.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/twelve-days/TwelveDays.csproj +++ b/exercises/twelve-days/TwelveDays.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/two-bucket/TwoBucket.csproj b/exercises/two-bucket/TwoBucket.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/two-bucket/TwoBucket.csproj +++ b/exercises/two-bucket/TwoBucket.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/two-fer/TwoFer.csproj b/exercises/two-fer/TwoFer.csproj index f1849a9520..f130b10d88 100644 --- a/exercises/two-fer/TwoFer.csproj +++ b/exercises/two-fer/TwoFer.csproj @@ -1,7 +1,7 @@  - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/variable-length-quantity/VariableLengthQuantity.csproj b/exercises/variable-length-quantity/VariableLengthQuantity.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/variable-length-quantity/VariableLengthQuantity.csproj +++ b/exercises/variable-length-quantity/VariableLengthQuantity.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/word-count/WordCount.csproj b/exercises/word-count/WordCount.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/word-count/WordCount.csproj +++ b/exercises/word-count/WordCount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/word-search/WordSearch.csproj b/exercises/word-search/WordSearch.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/word-search/WordSearch.csproj +++ b/exercises/word-search/WordSearch.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/wordy/Wordy.csproj b/exercises/wordy/Wordy.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/wordy/Wordy.csproj +++ b/exercises/wordy/Wordy.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/yacht/Yacht.csproj b/exercises/yacht/Yacht.csproj index 8f59343349..54720e19c4 100644 --- a/exercises/yacht/Yacht.csproj +++ b/exercises/yacht/Yacht.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/zebra-puzzle/ZebraPuzzle.csproj b/exercises/zebra-puzzle/ZebraPuzzle.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/zebra-puzzle/ZebraPuzzle.csproj +++ b/exercises/zebra-puzzle/ZebraPuzzle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/exercises/zipper/Zipper.csproj b/exercises/zipper/Zipper.csproj index 72b17d68c1..cc43959ba0 100644 --- a/exercises/zipper/Zipper.csproj +++ b/exercises/zipper/Zipper.csproj @@ -1,7 +1,7 @@ - netcoreapp2.1 + netcoreapp3.0 diff --git a/generators/Generators.csproj b/generators/Generators.csproj index 2c1b8df9fc..e14a10affc 100644 --- a/generators/Generators.csproj +++ b/generators/Generators.csproj @@ -1,7 +1,7 @@  Exe - netcoreapp2.1 + netcoreapp3.0 Exercism.CSharp