diff --git a/build.ps1 b/build.ps1 index 2b6cbc408f..7ed239d298 100644 --- a/build.ps1 +++ b/build.ps1 @@ -25,12 +25,12 @@ Param( $SCRIPT_DIR = $PSScriptRoot $TOOLS_DIR = Join-Path $SCRIPT_DIR "tools" -$CAKE_VERSION = "0.26.1" +$CAKE_VERSION = "0.27.1" $CAKE_DIR = Join-Path $TOOLS_DIR "Cake.$CAKE_VERSION" $CAKE_DLL = Join-Path $CAKE_DIR "Cake.dll" $CAKE_ZIP = Join-Path $TOOLS_DIR "Cake.$CAKE_VERSION.zip" -$CAKE_ZIP_URL = "https://github.com/cake-build/cake/releases/download/v0.26.1/Cake-bin-coreclr-v$CAKE_VERSION.zip" -$DOTNET_VERSION = "2.0.3" +$CAKE_ZIP_URL = "https://github.com/cake-build/cake/releases/download/v$CAKE_VERSION/Cake-bin-coreclr-v$CAKE_VERSION.zip" +$DOTNET_VERSION = "2.1.302" $DOTNET_DIR = Join-Path $TOOLS_DIR "dotnet.$DOTNET_VERSION" $DOTNET_COMMAND = Join-Path $DOTNET_DIR "dotnet.exe" $DOTNET_INSTALL_SCRIPT = Join-Path $DOTNET_DIR "dotnet-install.ps1" diff --git a/build.sh b/build.sh index 2a1ff69596..5437ff366c 100755 --- a/build.sh +++ b/build.sh @@ -2,12 +2,12 @@ SCRIPT_DIR=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd ) TOOLS_DIR=$SCRIPT_DIR/tools -CAKE_VERSION=0.26.1 +CAKE_VERSION=0.27.1 CAKE_DIR=$TOOLS_DIR/Cake.$CAKE_VERSION CAKE_DLL=$CAKE_DIR/Cake.dll CAKE_ZIP=$TOOLS_DIR/Cake.$CAKE_VERSION.zip -CAKE_ZIP_URL=https://github.com/cake-build/cake/releases/download/v0.26.1/Cake-bin-coreclr-v$CAKE_VERSION.zip -DOTNET_VERSION=2.0.3 +CAKE_ZIP_URL=https://github.com/cake-build/cake/releases/download/v$CAKE_VERSION/Cake-bin-coreclr-v$CAKE_VERSION.zip +DOTNET_VERSION=2.1.302 DOTNET_DIR=$TOOLS_DIR/dotnet.$DOTNET_VERSION DOTNET_COMMAND=$DOTNET_DIR/dotnet DOTNET_INSTALL_SCRIPT=$DOTNET_DIR/dotnet-install.sh diff --git a/docs/INSTALLATION.md b/docs/INSTALLATION.md index edd86683bc..9c57e4a554 100644 --- a/docs/INSTALLATION.md +++ b/docs/INSTALLATION.md @@ -1,20 +1,22 @@ ### 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). After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: +The F# 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 F# track requires SDK version 2.1 or greater. + +After completing the installation, you can verify if the CLI was installed succesfully by running this command in a terminal: ```bash dotnet --version ``` -If the output is a version greater than or equal to `1.0.0`, the .NET Core SDK has been installed succesfully. +It the output is a version greater than or equal to `2.1.0`, the .NET Core SDK has been installed succesfully. ### Using an IDE -If you want a more full-featured editing experience, you probably want to use an IDE. These are the most popular IDE's that support building .NET Core projects: +If you want a more full-featured editing experience, you probably want to to use an IDE. These are the most popular IDE's that support building .NET Core projects: -* [Visual Studio 2017](https://www.visualstudio.com/downloads/) -* [Visual Studio Code](https://code.visualstudio.com/download) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-vscode.csharp) -* [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/) (still in beta) -* [Project Rider](https://www.jetbrains.com/rider/download/) (still in EAP) +- [Visual Studio 2017](https://www.visualstudio.com/downloads/) (version 15.3.1 and higher) +- [Visual Studio Code](https://code.visualstudio.com/download) with the [Ionide-fsharp extension](https://marketplace.visualstudio.com/items?itemName=Ionide.Ionide-fsharp) +- [Visual Studio for Mac](https://www.visualstudio.com/vs/visual-studio-mac/) (still in beta) +- [Project Rider](https://www.jetbrains.com/rider/download/) Note: as the .NET Core project format differs significantly from earlier versions, older IDE's (like Visual Studio 2015 and Xamarin Studio) are not supported. diff --git a/exercises/accumulate/Accumulate.csproj b/exercises/accumulate/Accumulate.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/accumulate/Accumulate.csproj +++ b/exercises/accumulate/Accumulate.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/acronym/Acronym.csproj b/exercises/acronym/Acronym.csproj index 79f302df8a..f6d9012ca1 100644 --- a/exercises/acronym/Acronym.csproj +++ b/exercises/acronym/Acronym.csproj @@ -2,7 +2,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -10,9 +10,9 @@ - - - + + + diff --git a/exercises/all-your-base/AllYourBase.csproj b/exercises/all-your-base/AllYourBase.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/all-your-base/AllYourBase.csproj +++ b/exercises/all-your-base/AllYourBase.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/allergies/Allergies.csproj b/exercises/allergies/Allergies.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/allergies/Allergies.csproj +++ b/exercises/allergies/Allergies.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/alphametics/Alphametics.csproj b/exercises/alphametics/Alphametics.csproj index ca5cfa60d1..2e4c7c136d 100644 --- a/exercises/alphametics/Alphametics.csproj +++ b/exercises/alphametics/Alphametics.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/anagram/Anagram.csproj b/exercises/anagram/Anagram.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/anagram/Anagram.csproj +++ b/exercises/anagram/Anagram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/armstrong-numbers/ArmstrongNumbers.csproj b/exercises/armstrong-numbers/ArmstrongNumbers.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/armstrong-numbers/ArmstrongNumbers.csproj +++ b/exercises/armstrong-numbers/ArmstrongNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/atbash-cipher/AtbashCipher.csproj b/exercises/atbash-cipher/AtbashCipher.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/atbash-cipher/AtbashCipher.csproj +++ b/exercises/atbash-cipher/AtbashCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/bank-account/BankAccount.csproj b/exercises/bank-account/BankAccount.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/bank-account/BankAccount.csproj +++ b/exercises/bank-account/BankAccount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/beer-song/BeerSong.csproj b/exercises/beer-song/BeerSong.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/beer-song/BeerSong.csproj +++ b/exercises/beer-song/BeerSong.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/binary-search-tree/BinarySearchTree.csproj b/exercises/binary-search-tree/BinarySearchTree.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/binary-search-tree/BinarySearchTree.csproj +++ b/exercises/binary-search-tree/BinarySearchTree.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/binary-search/BinarySearch.csproj b/exercises/binary-search/BinarySearch.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/binary-search/BinarySearch.csproj +++ b/exercises/binary-search/BinarySearch.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/binary/Binary.csproj b/exercises/binary/Binary.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/binary/Binary.csproj +++ b/exercises/binary/Binary.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/bob/Bob.csproj b/exercises/bob/Bob.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/bob/Bob.csproj +++ b/exercises/bob/Bob.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/book-store/BookStore.csproj b/exercises/book-store/BookStore.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/book-store/BookStore.csproj +++ b/exercises/book-store/BookStore.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/bowling/Bowling.csproj b/exercises/bowling/Bowling.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/bowling/Bowling.csproj +++ b/exercises/bowling/Bowling.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/bracket-push/BracketPush.csproj b/exercises/bracket-push/BracketPush.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/bracket-push/BracketPush.csproj +++ b/exercises/bracket-push/BracketPush.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/change/Change.csproj b/exercises/change/Change.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/change/Change.csproj +++ b/exercises/change/Change.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/circular-buffer/CircularBuffer.csproj b/exercises/circular-buffer/CircularBuffer.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/circular-buffer/CircularBuffer.csproj +++ b/exercises/circular-buffer/CircularBuffer.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/clock/Clock.csproj b/exercises/clock/Clock.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/clock/Clock.csproj +++ b/exercises/clock/Clock.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/collatz-conjecture/CollatzConjecture.csproj b/exercises/collatz-conjecture/CollatzConjecture.csproj index a89af7c4bc..350a96f343 100644 --- a/exercises/collatz-conjecture/CollatzConjecture.csproj +++ b/exercises/collatz-conjecture/CollatzConjecture.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + \ No newline at end of file diff --git a/exercises/complex-numbers/ComplexNumbers.csproj b/exercises/complex-numbers/ComplexNumbers.csproj index 5c15d2923b..0762cb9dc3 100644 --- a/exercises/complex-numbers/ComplexNumbers.csproj +++ b/exercises/complex-numbers/ComplexNumbers.csproj @@ -2,7 +2,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -10,9 +10,9 @@ - - - + + + diff --git a/exercises/connect/Connect.csproj b/exercises/connect/Connect.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/connect/Connect.csproj +++ b/exercises/connect/Connect.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/crypto-square/CryptoSquare.csproj b/exercises/crypto-square/CryptoSquare.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/crypto-square/CryptoSquare.csproj +++ b/exercises/crypto-square/CryptoSquare.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/custom-set/CustomSet.csproj b/exercises/custom-set/CustomSet.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/custom-set/CustomSet.csproj +++ b/exercises/custom-set/CustomSet.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/diamond/Diamond.csproj b/exercises/diamond/Diamond.csproj index ac0f47a7ce..e59776d072 100644 --- a/exercises/diamond/Diamond.csproj +++ b/exercises/diamond/Diamond.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0 + netcoreapp2.1 @@ -11,9 +11,9 @@ - - - + + + diff --git a/exercises/difference-of-squares/DifferenceOfSquares.csproj b/exercises/difference-of-squares/DifferenceOfSquares.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/difference-of-squares/DifferenceOfSquares.csproj +++ b/exercises/difference-of-squares/DifferenceOfSquares.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/diffie-hellman/DiffieHellman.csproj b/exercises/diffie-hellman/DiffieHellman.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/diffie-hellman/DiffieHellman.csproj +++ b/exercises/diffie-hellman/DiffieHellman.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/dominoes/Dominoes.csproj b/exercises/dominoes/Dominoes.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/dominoes/Dominoes.csproj +++ b/exercises/dominoes/Dominoes.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/dot-dsl/DotDsl.csproj b/exercises/dot-dsl/DotDsl.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/dot-dsl/DotDsl.csproj +++ b/exercises/dot-dsl/DotDsl.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/error-handling/ErrorHandling.csproj b/exercises/error-handling/ErrorHandling.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/error-handling/ErrorHandling.csproj +++ b/exercises/error-handling/ErrorHandling.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/etl/Etl.csproj b/exercises/etl/Etl.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/etl/Etl.csproj +++ b/exercises/etl/Etl.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/flatten-array/FlattenArray.csproj b/exercises/flatten-array/FlattenArray.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/flatten-array/FlattenArray.csproj +++ b/exercises/flatten-array/FlattenArray.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/food-chain/FoodChain.csproj b/exercises/food-chain/FoodChain.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/food-chain/FoodChain.csproj +++ b/exercises/food-chain/FoodChain.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/forth/Forth.csproj b/exercises/forth/Forth.csproj index ca5cfa60d1..2e4c7c136d 100644 --- a/exercises/forth/Forth.csproj +++ b/exercises/forth/Forth.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/gigasecond/Gigasecond.csproj b/exercises/gigasecond/Gigasecond.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/gigasecond/Gigasecond.csproj +++ b/exercises/gigasecond/Gigasecond.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/go-counting/GoCounting.csproj b/exercises/go-counting/GoCounting.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/go-counting/GoCounting.csproj +++ b/exercises/go-counting/GoCounting.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/grade-school/GradeSchool.csproj b/exercises/grade-school/GradeSchool.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/grade-school/GradeSchool.csproj +++ b/exercises/grade-school/GradeSchool.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/grains/Grains.csproj b/exercises/grains/Grains.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/grains/Grains.csproj +++ b/exercises/grains/Grains.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/grep/Grep.csproj b/exercises/grep/Grep.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/grep/Grep.csproj +++ b/exercises/grep/Grep.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/hamming/Hamming.csproj b/exercises/hamming/Hamming.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/hamming/Hamming.csproj +++ b/exercises/hamming/Hamming.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/hangman/Hangman.csproj b/exercises/hangman/Hangman.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/hangman/Hangman.csproj +++ b/exercises/hangman/Hangman.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/hello-world/HelloWorld.csproj b/exercises/hello-world/HelloWorld.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/hello-world/HelloWorld.csproj +++ b/exercises/hello-world/HelloWorld.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/hexadecimal/Hexadecimal.csproj b/exercises/hexadecimal/Hexadecimal.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/hexadecimal/Hexadecimal.csproj +++ b/exercises/hexadecimal/Hexadecimal.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/house/House.csproj b/exercises/house/House.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/house/House.csproj +++ b/exercises/house/House.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/isbn-verifier/IsbnVerifier.csproj b/exercises/isbn-verifier/IsbnVerifier.csproj index ab9c6b0d1d..cff82552b3 100644 --- a/exercises/isbn-verifier/IsbnVerifier.csproj +++ b/exercises/isbn-verifier/IsbnVerifier.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.0 + netcoreapp2.1 @@ -10,9 +10,9 @@ - - - + + + diff --git a/exercises/isogram/Isogram.csproj b/exercises/isogram/Isogram.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/isogram/Isogram.csproj +++ b/exercises/isogram/Isogram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/kindergarten-garden/KindergartenGarden.csproj b/exercises/kindergarten-garden/KindergartenGarden.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/kindergarten-garden/KindergartenGarden.csproj +++ b/exercises/kindergarten-garden/KindergartenGarden.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/largest-series-product/LargestSeriesProduct.csproj b/exercises/largest-series-product/LargestSeriesProduct.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/largest-series-product/LargestSeriesProduct.csproj +++ b/exercises/largest-series-product/LargestSeriesProduct.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/leap/Leap.csproj b/exercises/leap/Leap.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/leap/Leap.csproj +++ b/exercises/leap/Leap.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/ledger/Ledger.csproj b/exercises/ledger/Ledger.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/ledger/Ledger.csproj +++ b/exercises/ledger/Ledger.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/linked-list/LinkedList.csproj b/exercises/linked-list/LinkedList.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/linked-list/LinkedList.csproj +++ b/exercises/linked-list/LinkedList.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/list-ops/ListOps.csproj b/exercises/list-ops/ListOps.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/list-ops/ListOps.csproj +++ b/exercises/list-ops/ListOps.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/luhn/Luhn.csproj b/exercises/luhn/Luhn.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/luhn/Luhn.csproj +++ b/exercises/luhn/Luhn.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/markdown/Markdown.csproj b/exercises/markdown/Markdown.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/markdown/Markdown.csproj +++ b/exercises/markdown/Markdown.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/matrix/Matrix.csproj b/exercises/matrix/Matrix.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/matrix/Matrix.csproj +++ b/exercises/matrix/Matrix.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/meetup/Meetup.csproj b/exercises/meetup/Meetup.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/meetup/Meetup.csproj +++ b/exercises/meetup/Meetup.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/minesweeper/Minesweeper.csproj b/exercises/minesweeper/Minesweeper.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/minesweeper/Minesweeper.csproj +++ b/exercises/minesweeper/Minesweeper.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/nth-prime/NthPrime.csproj b/exercises/nth-prime/NthPrime.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/nth-prime/NthPrime.csproj +++ b/exercises/nth-prime/NthPrime.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/nucleotide-count/NucleotideCount.csproj b/exercises/nucleotide-count/NucleotideCount.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/nucleotide-count/NucleotideCount.csproj +++ b/exercises/nucleotide-count/NucleotideCount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/ocr-numbers/OcrNumbers.csproj b/exercises/ocr-numbers/OcrNumbers.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/ocr-numbers/OcrNumbers.csproj +++ b/exercises/ocr-numbers/OcrNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/octal/Octal.csproj b/exercises/octal/Octal.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/octal/Octal.csproj +++ b/exercises/octal/Octal.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/palindrome-products/PalindromeProducts.csproj b/exercises/palindrome-products/PalindromeProducts.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/palindrome-products/PalindromeProducts.csproj +++ b/exercises/palindrome-products/PalindromeProducts.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/pangram/Pangram.csproj b/exercises/pangram/Pangram.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/pangram/Pangram.csproj +++ b/exercises/pangram/Pangram.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj b/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj +++ b/exercises/parallel-letter-frequency/ParallelLetterFrequency.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/pascals-triangle/PascalsTriangle.csproj b/exercises/pascals-triangle/PascalsTriangle.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/pascals-triangle/PascalsTriangle.csproj +++ b/exercises/pascals-triangle/PascalsTriangle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/perfect-numbers/PerfectNumbers.csproj b/exercises/perfect-numbers/PerfectNumbers.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/perfect-numbers/PerfectNumbers.csproj +++ b/exercises/perfect-numbers/PerfectNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/phone-number/PhoneNumber.csproj b/exercises/phone-number/PhoneNumber.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/phone-number/PhoneNumber.csproj +++ b/exercises/phone-number/PhoneNumber.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/pig-latin/PigLatin.csproj b/exercises/pig-latin/PigLatin.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/pig-latin/PigLatin.csproj +++ b/exercises/pig-latin/PigLatin.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/poker/Poker.csproj b/exercises/poker/Poker.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/poker/Poker.csproj +++ b/exercises/poker/Poker.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/pov/Pov.csproj b/exercises/pov/Pov.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/pov/Pov.csproj +++ b/exercises/pov/Pov.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/prime-factors/PrimeFactors.csproj b/exercises/prime-factors/PrimeFactors.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/prime-factors/PrimeFactors.csproj +++ b/exercises/prime-factors/PrimeFactors.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/protein-translation/ProteinTranslation.csproj b/exercises/protein-translation/ProteinTranslation.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/protein-translation/ProteinTranslation.csproj +++ b/exercises/protein-translation/ProteinTranslation.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/proverb/Proverb.csproj b/exercises/proverb/Proverb.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/proverb/Proverb.csproj +++ b/exercises/proverb/Proverb.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/pythagorean-triplet/PythagoreanTriplet.csproj b/exercises/pythagorean-triplet/PythagoreanTriplet.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/pythagorean-triplet/PythagoreanTriplet.csproj +++ b/exercises/pythagorean-triplet/PythagoreanTriplet.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/queen-attack/QueenAttack.csproj b/exercises/queen-attack/QueenAttack.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/queen-attack/QueenAttack.csproj +++ b/exercises/queen-attack/QueenAttack.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/rail-fence-cipher/RailFenceCipher.csproj b/exercises/rail-fence-cipher/RailFenceCipher.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/rail-fence-cipher/RailFenceCipher.csproj +++ b/exercises/rail-fence-cipher/RailFenceCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/raindrops/Raindrops.csproj b/exercises/raindrops/Raindrops.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/raindrops/Raindrops.csproj +++ b/exercises/raindrops/Raindrops.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/rational-numbers/RationalNumbers.csproj b/exercises/rational-numbers/RationalNumbers.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/rational-numbers/RationalNumbers.csproj +++ b/exercises/rational-numbers/RationalNumbers.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/react/React.csproj b/exercises/react/React.csproj index 7e147310a3..68ddac124a 100644 --- a/exercises/react/React.csproj +++ b/exercises/react/React.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/rectangles/Rectangles.csproj b/exercises/rectangles/Rectangles.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/rectangles/Rectangles.csproj +++ b/exercises/rectangles/Rectangles.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/reverse-string/ReverseString.csproj b/exercises/reverse-string/ReverseString.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/reverse-string/ReverseString.csproj +++ b/exercises/reverse-string/ReverseString.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/rna-transcription/RnaTranscription.csproj b/exercises/rna-transcription/RnaTranscription.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/rna-transcription/RnaTranscription.csproj +++ b/exercises/rna-transcription/RnaTranscription.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/robot-name/RobotName.csproj b/exercises/robot-name/RobotName.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/robot-name/RobotName.csproj +++ b/exercises/robot-name/RobotName.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/robot-simulator/RobotSimulator.csproj b/exercises/robot-simulator/RobotSimulator.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/robot-simulator/RobotSimulator.csproj +++ b/exercises/robot-simulator/RobotSimulator.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/roman-numerals/RomanNumerals.csproj b/exercises/roman-numerals/RomanNumerals.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/roman-numerals/RomanNumerals.csproj +++ b/exercises/roman-numerals/RomanNumerals.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/rotational-cipher/RotationalCipher.csproj b/exercises/rotational-cipher/RotationalCipher.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/rotational-cipher/RotationalCipher.csproj +++ b/exercises/rotational-cipher/RotationalCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/run-length-encoding/RunLengthEncoding.csproj b/exercises/run-length-encoding/RunLengthEncoding.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/run-length-encoding/RunLengthEncoding.csproj +++ b/exercises/run-length-encoding/RunLengthEncoding.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/saddle-points/SaddlePoints.csproj b/exercises/saddle-points/SaddlePoints.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/saddle-points/SaddlePoints.csproj +++ b/exercises/saddle-points/SaddlePoints.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/say/Say.csproj b/exercises/say/Say.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/say/Say.csproj +++ b/exercises/say/Say.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/scale-generator/ScaleGenerator.csproj b/exercises/scale-generator/ScaleGenerator.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/scale-generator/ScaleGenerator.csproj +++ b/exercises/scale-generator/ScaleGenerator.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/scrabble-score/ScrabbleScore.csproj b/exercises/scrabble-score/ScrabbleScore.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/scrabble-score/ScrabbleScore.csproj +++ b/exercises/scrabble-score/ScrabbleScore.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/secret-handshake/SecretHandshake.csproj b/exercises/secret-handshake/SecretHandshake.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/secret-handshake/SecretHandshake.csproj +++ b/exercises/secret-handshake/SecretHandshake.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/series/Series.csproj b/exercises/series/Series.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/series/Series.csproj +++ b/exercises/series/Series.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/sgf-parsing/SgfParsing.csproj b/exercises/sgf-parsing/SgfParsing.csproj index 2bdd86f8f6..4f66a8eb27 100644 --- a/exercises/sgf-parsing/SgfParsing.csproj +++ b/exercises/sgf-parsing/SgfParsing.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/sieve/Sieve.csproj b/exercises/sieve/Sieve.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/sieve/Sieve.csproj +++ b/exercises/sieve/Sieve.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/simple-cipher/SimpleCipher.csproj b/exercises/simple-cipher/SimpleCipher.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/simple-cipher/SimpleCipher.csproj +++ b/exercises/simple-cipher/SimpleCipher.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/simple-linked-list/SimpleLinkedList.csproj b/exercises/simple-linked-list/SimpleLinkedList.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/simple-linked-list/SimpleLinkedList.csproj +++ b/exercises/simple-linked-list/SimpleLinkedList.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/space-age/SpaceAge.csproj b/exercises/space-age/SpaceAge.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/space-age/SpaceAge.csproj +++ b/exercises/space-age/SpaceAge.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/spiral-matrix/SpiralMatrix.csproj b/exercises/spiral-matrix/SpiralMatrix.csproj index a89af7c4bc..350a96f343 100644 --- a/exercises/spiral-matrix/SpiralMatrix.csproj +++ b/exercises/spiral-matrix/SpiralMatrix.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + \ No newline at end of file diff --git a/exercises/strain/Strain.csproj b/exercises/strain/Strain.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/strain/Strain.csproj +++ b/exercises/strain/Strain.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/sublist/Sublist.csproj b/exercises/sublist/Sublist.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/sublist/Sublist.csproj +++ b/exercises/sublist/Sublist.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/sum-of-multiples/SumOfMultiples.csproj b/exercises/sum-of-multiples/SumOfMultiples.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/sum-of-multiples/SumOfMultiples.csproj +++ b/exercises/sum-of-multiples/SumOfMultiples.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/tournament/Tournament.csproj b/exercises/tournament/Tournament.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/tournament/Tournament.csproj +++ b/exercises/tournament/Tournament.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/transpose/Transpose.csproj b/exercises/transpose/Transpose.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/transpose/Transpose.csproj +++ b/exercises/transpose/Transpose.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/tree-building/TreeBuilding.csproj b/exercises/tree-building/TreeBuilding.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/tree-building/TreeBuilding.csproj +++ b/exercises/tree-building/TreeBuilding.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/triangle/Triangle.csproj b/exercises/triangle/Triangle.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/triangle/Triangle.csproj +++ b/exercises/triangle/Triangle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/trinary/Trinary.csproj b/exercises/trinary/Trinary.csproj index 8b2f24be2f..5b4584e81e 100644 --- a/exercises/trinary/Trinary.csproj +++ b/exercises/trinary/Trinary.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/twelve-days/TwelveDays.csproj b/exercises/twelve-days/TwelveDays.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/twelve-days/TwelveDays.csproj +++ b/exercises/twelve-days/TwelveDays.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/two-bucket/TwoBucket.csproj b/exercises/two-bucket/TwoBucket.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/two-bucket/TwoBucket.csproj +++ b/exercises/two-bucket/TwoBucket.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/two-fer/TwoFer.csproj b/exercises/two-fer/TwoFer.csproj index a89af7c4bc..350a96f343 100644 --- a/exercises/two-fer/TwoFer.csproj +++ b/exercises/two-fer/TwoFer.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + \ No newline at end of file diff --git a/exercises/variable-length-quantity/VariableLengthQuantity.csproj b/exercises/variable-length-quantity/VariableLengthQuantity.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/variable-length-quantity/VariableLengthQuantity.csproj +++ b/exercises/variable-length-quantity/VariableLengthQuantity.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/word-count/WordCount.csproj b/exercises/word-count/WordCount.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/word-count/WordCount.csproj +++ b/exercises/word-count/WordCount.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/word-search/WordSearch.csproj b/exercises/word-search/WordSearch.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/word-search/WordSearch.csproj +++ b/exercises/word-search/WordSearch.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/wordy/Wordy.csproj b/exercises/wordy/Wordy.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/wordy/Wordy.csproj +++ b/exercises/wordy/Wordy.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/yacht/Yacht.csproj b/exercises/yacht/Yacht.csproj index b821ceda98..2ae8862be5 100644 --- a/exercises/yacht/Yacht.csproj +++ b/exercises/yacht/Yacht.csproj @@ -2,7 +2,7 @@ Exe - netcoreapp2.0 + netcoreapp2.1 @@ -11,8 +11,8 @@ - - + + diff --git a/exercises/zebra-puzzle/ZebraPuzzle.csproj b/exercises/zebra-puzzle/ZebraPuzzle.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/zebra-puzzle/ZebraPuzzle.csproj +++ b/exercises/zebra-puzzle/ZebraPuzzle.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/exercises/zipper/Zipper.csproj b/exercises/zipper/Zipper.csproj index 6e635f76a6..09822d292d 100644 --- a/exercises/zipper/Zipper.csproj +++ b/exercises/zipper/Zipper.csproj @@ -1,7 +1,7 @@ - netcoreapp2.0 + netcoreapp2.1 @@ -9,9 +9,9 @@ - - - + + + diff --git a/generators/Generators.csproj b/generators/Generators.csproj index a56c06b6bb..1afd74ca21 100644 --- a/generators/Generators.csproj +++ b/generators/Generators.csproj @@ -1,13 +1,13 @@  Exe - netcoreapp2.0 + netcoreapp2.1 Exercism.CSharp - - + +