diff --git a/docs/core/tutorials/library-with-visual-studio-code.md b/docs/core/tutorials/library-with-visual-studio-code.md index caee45d4d0943..3139c786814cc 100644 --- a/docs/core/tutorials/library-with-visual-studio-code.md +++ b/docs/core/tutorials/library-with-visual-studio-code.md @@ -58,7 +58,7 @@ Start by creating a .NET class library project named "StringLibrary" and an asso 1. Open *Class1.cs* and replace the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -96,7 +96,7 @@ Add a console application that uses the class library. The app will prompt the u 1. Open *ShowCase/Program.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. @@ -195,7 +195,7 @@ Start by creating a .NET class library project named "StringLibrary" and an asso 1. Open *Class1.cs* and replace the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -231,7 +231,7 @@ Add a console application that uses the class library. The app will prompt the u 1. Open *ShowCase/Program.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. @@ -328,7 +328,7 @@ Start by creating a .NET class library project named "StringLibrary" and an asso 1. Open *Class1.cs* and replace the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -364,7 +364,7 @@ Add a console application that uses the class library. The app will prompt the u 1. Open *ShowCase/Program.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. diff --git a/docs/core/tutorials/library-with-visual-studio.md b/docs/core/tutorials/library-with-visual-studio.md index 754d51a1faad9..f38ddd11005a4 100644 --- a/docs/core/tutorials/library-with-visual-studio.md +++ b/docs/core/tutorials/library-with-visual-studio.md @@ -62,7 +62,7 @@ To create the blank solution: 1. Replace the code in the code window for *Class1.cs* or *Class1.vb* with the following code, and save the file. If the language you want to use isn't shown, change the language selector at the top of the page. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/StringLibrary/Class1.vb"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -89,7 +89,7 @@ Add a console application that uses the class library. The app will prompt the u 1. In the code window for the *Program.cs* or *Program.vb* file, replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/ShowCase/Program.vb"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. @@ -196,7 +196,7 @@ To create the blank solution: 1. Replace the code in the code window for *Class1.cs* or *Class1.vb* with the following code, and save the file. If the language you want to use isn't shown, change the language selector at the top of the page. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/StringLibrary/Class1.vb"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -223,7 +223,7 @@ Add a console application that uses the class library. The app will prompt the u 1. In the code window for the *Program.cs* or *Program.vb* file, replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/ShowCase/Program.vb"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. @@ -330,7 +330,7 @@ To create the blank solution: 1. Replace the code in the code window for *Class1.cs* or *Class1.vb* with the following code, and save the file. If the language you want to use isn't shown, change the language selector at the top of the page. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibrary/Class1.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/StringLibrary/Class1.vb"::: The class library, `UtilityLibraries.StringLibrary`, contains a method named `StartsWithUpper`. This method returns a value that indicates whether the current string instance begins with an uppercase character. The Unicode standard distinguishes uppercase characters from lowercase characters. The method returns `true` if a character is uppercase. @@ -357,7 +357,7 @@ Add a console application that uses the class library. The app will prompt the u 1. In the code window for the *Program.cs* or *Program.vb* file, replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/ShowCase/Program.cs"::: :::code language="vb" source="./snippets/library-with-visual-studio/vb/ShowCase/Program.vb"::: The code uses the `row` variable to maintain a count of the number of rows of data written to the console window. Whenever it's greater than or equal to 25, the code clears the console window and displays a message to the user. diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs deleted file mode 100644 index aabb5011a29d3..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/Program.cs +++ /dev/null @@ -1,37 +0,0 @@ -using UtilityLibraries; - -class Program -{ - static void Main(string[] args) - { - int row = 0; - - do - { - if (row == 0 || row >= 25) - ResetConsole(); - - string? input = Console.ReadLine(); - if (string.IsNullOrEmpty(input)) break; - Console.WriteLine($"Input: {input}"); - Console.WriteLine("Begins with uppercase? " + - $"{(input.StartsWithUpper() ? "Yes" : "No")}"); - Console.WriteLine(); - row += 4; - } while (true); - return; - - // Declare a ResetConsole local method - void ResetConsole() - { - if (row > 0) - { - Console.WriteLine("Press any key to continue..."); - Console.ReadKey(); - } - Console.Clear(); - Console.WriteLine($"{Environment.NewLine}Press only to exit; otherwise, enter a string and press :{Environment.NewLine}"); - row = 3; - } - } -} diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/ShowCase.csproj b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/ShowCase.csproj deleted file mode 100644 index 4c98f8720c509..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/ShowCase/ShowCase.csproj +++ /dev/null @@ -1,14 +0,0 @@ - - - - Exe - net6 - enable - enable - - - - - - - diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs deleted file mode 100644 index 6c49b2e8093c9..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/Class1.cs +++ /dev/null @@ -1,14 +0,0 @@ -namespace UtilityLibraries; - -public static class StringLibrary -{ - public static bool StartsWithUpper(this string? str) - { - if (string.IsNullOrWhiteSpace(str)) - return false; - - char ch = str[0]; - return char.IsUpper(ch); - } -} - diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/StringLibrary.csproj b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/StringLibrary.csproj deleted file mode 100644 index 0da2a6f35b586..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibrary/StringLibrary.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - net6.0 - enable - enable - - - diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/StringLibraryTest.csproj b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/StringLibraryTest.csproj deleted file mode 100644 index a1b44b21c4edb..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/StringLibraryTest.csproj +++ /dev/null @@ -1,21 +0,0 @@ - - - - net6 - enable - enable - false - - - - - - - - - - - - - - diff --git a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs b/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs deleted file mode 100644 index d9248ca96ad20..0000000000000 --- a/docs/core/tutorials/snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs +++ /dev/null @@ -1,52 +0,0 @@ -using Microsoft.VisualStudio.TestTools.UnitTesting; -using UtilityLibraries; - -namespace StringLibraryTest; - -[TestClass] -public class UnitTest1 -{ - [TestMethod] - public void TestStartsWithUpper() - { - // Tests that we expect to return true. - string[] words = { "Alphabet", "Zebra", "ABC", "Αθήνα", "Москва" }; - foreach (var word in words) - { - bool result = word.StartsWithUpper(); - Assert.IsTrue(result, - string.Format("Expected for '{0}': true; Actual: {1}", - word, result)); - } - } - - [TestMethod] - public void TestDoesNotStartWithUpper() - { - // Tests that we expect to return false. - string[] words = { "alphabet", "zebra", "abc", "αυτοκινητοβιομηχανία", "государство", - "1234", ".", ";", " " }; - foreach (var word in words) - { - bool result = word.StartsWithUpper(); - Assert.IsFalse(result, - string.Format("Expected for '{0}': false; Actual: {1}", - word, result)); - } - } - - [TestMethod] - public void DirectCallWithNullOrEmpty() - { - // Tests that we expect to return false. - string?[] words = { string.Empty, null }; - foreach (var word in words) - { - bool result = StringLibrary.StartsWithUpper(word); - Assert.IsFalse(result, - string.Format("Expected for '{0}': false; Actual: {1}", - word == null ? "" : word, result)); - } - } -} - diff --git a/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/HelloWorld.csproj b/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/HelloWorld.csproj deleted file mode 100644 index 9a77342a90c73..0000000000000 --- a/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/HelloWorld.csproj +++ /dev/null @@ -1,9 +0,0 @@ - - - - Exe - net6.0 - enable - enable - - diff --git a/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/Program.cs b/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/Program.cs deleted file mode 100644 index ac9f87f87c99d..0000000000000 --- a/docs/core/tutorials/snippets/with-visual-studio-6-0/csharp/Program.cs +++ /dev/null @@ -1,16 +0,0 @@ -namespace HelloWorld; - -public class HelloWorld -{ - public static void Main(string[] args) - { - // - Console.WriteLine("What is your name?"); - var name = Console.ReadLine(); - var currentDate = DateTime.Now; - Console.WriteLine($"{Environment.NewLine}Hello, {name}, on {currentDate:d} at {currentDate:t}!"); - Console.Write($"{Environment.NewLine}Press any key to exit..."); - Console.ReadKey(true); - // - } -} diff --git a/docs/core/tutorials/testing-library-with-visual-studio-code.md b/docs/core/tutorials/testing-library-with-visual-studio-code.md index 07bcdbe53df41..af3e8cf738f3d 100644 --- a/docs/core/tutorials/testing-library-with-visual-studio-code.md +++ b/docs/core/tutorials/testing-library-with-visual-studio-code.md @@ -82,7 +82,7 @@ To create the test methods: 1. Open *StringLibraryTest/UnitTest1.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibraryTest/UnitTest1.cs"::: The test of uppercase characters in the `TestStartsWithUpper` method includes the Greek capital letter alpha (U+0391) and the Cyrillic capital letter EM (U+041C). The test of lowercase characters in the `TestDoesNotStartWithUpper` method includes the Greek small letter alpha (U+03B1) and the Cyrillic small letter Ghe (U+0433). @@ -242,7 +242,7 @@ To create the test methods: 1. Open *StringLibraryTest/UnitTest1.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibraryTest/UnitTest1.cs"::: The test of uppercase characters in the `TestStartsWithUpper` method includes the Greek capital letter alpha (U+0391) and the Cyrillic capital letter EM (U+041C). The test of lowercase characters in the `TestDoesNotStartWithUpper` method includes the Greek small letter alpha (U+03B1) and the Cyrillic small letter Ghe (U+0433). @@ -395,7 +395,7 @@ To create the test methods: 1. Open *StringLibraryTest/UnitTest1.cs* and replace all of the code with the following code. - :::code language="csharp" source="./snippets/library-with-visual-studio-6-0/csharp/StringLibraryTest/UnitTest1.cs"::: + :::code language="csharp" source="./snippets/library-with-visual-studio/csharp/StringLibraryTest/UnitTest1.cs"::: The test of uppercase characters in the `TestStartsWithUpper` method includes the Greek capital letter alpha (U+0391) and the Cyrillic capital letter EM (U+041C). The test of lowercase characters in the `TestDoesNotStartWithUpper` method includes the Greek small letter alpha (U+03B1) and the Cyrillic small letter Ghe (U+0433). diff --git a/docs/core/tutorials/with-visual-studio-code.md b/docs/core/tutorials/with-visual-studio-code.md index ffe7a95b42b65..9fac2759d11b5 100644 --- a/docs/core/tutorials/with-visual-studio-code.md +++ b/docs/core/tutorials/with-visual-studio-code.md @@ -6,8 +6,6 @@ zone_pivot_groups: dotnet-version --- # Tutorial: Create a .NET console application using Visual Studio Code -::: zone pivot="dotnet-9-0,dotnet-8-0" - This tutorial shows how to create and run a .NET console application by using Visual Studio Code. ## Prerequisites @@ -101,246 +99,3 @@ In this tutorial, you created a .NET console application. In the next tutorial, > [!div class="nextstepaction"] > [Debug a .NET console application using Visual Studio Code](debugging-with-visual-studio-code.md) - -::: zone-end - -::: zone pivot="dotnet-7-0" - -This tutorial shows how to create and run a .NET console application by using Visual Studio Code and the .NET CLI. Project tasks, such as creating, compiling, and running a project are done by using the .NET CLI. You can follow this tutorial with a different code editor and run commands in a terminal if you prefer. - -## Prerequisites - -* [Visual Studio Code](https://code.visualstudio.com/) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) installed. For information about how to install extensions on Visual Studio Code, see [VS Code Extension Marketplace](https://code.visualstudio.com/docs/editor/extension-gallery). -* The [.NET 7 SDK](https://dotnet.microsoft.com/download/dotnet/7.0). - -## Create the app - -Create a .NET console app project named "HelloWorld". - -1. Start Visual Studio Code. - -1. Select **File** > **Open Folder** (**File** > **Open...** on macOS) from the main menu. - -1. In the **Open Folder** dialog, create a *HelloWorld* folder and select it. Then click **Select Folder** (**Open** on macOS). - - The folder name becomes the project name and the namespace name by default. You'll add code later in the tutorial that assumes the project namespace is `HelloWorld`. - -1. In the **Do you trust the authors of the files in this folder?** dialog, select **Yes, I trust the authors**. You can trust the authors because this folder only has files generated by .NET and added or modified by you. - -1. Open the **Terminal** in Visual Studio Code by selecting **View** > **Terminal** from the main menu. - - The **Terminal** opens with the command prompt in the *HelloWorld* folder. - -1. In the **Terminal**, enter the following command: - - ```dotnetcli - dotnet new console --framework net7.0 - ``` - - The project template creates a simple application that displays "Hello, World" in the console window by calling the method in *Program.cs*. - - ```csharp - Console.WriteLine("Hello, World!"); - ``` - -1. Replace the contents of *Program.cs* with the following code: - - ```csharp - namespace HelloWorld - { - class Program - { - static void Main(string[] args) - { - Console.WriteLine("Hello, World!"); - } - } - } - ``` - - The first time you edit a *.cs* file, Visual Studio Code prompts you to add the missing assets to build and debug your app. Select **Yes**, and Visual Studio Code creates a *.vscode* folder with *launch.json* and *tasks.json* files. - - > [!NOTE] - > If you don't get the prompt, or if you accidentally dismiss it without selecting **Yes**, do the following steps to create *launch.json* and *tasks.json*: - > - >* Select **Run** > **Add Configuration** from the menu. - >* Select **.NET 5+ and .NET Core** at the **Select environment** prompt. - - The code defines a class, `Program`, with a single method, `Main`, that takes a array as an argument. `Main` is the application entry point, the method that's called automatically by the runtime when it launches the application. Any command-line arguments supplied when the application is launched are available in the *args* array. - - In the latest version of C#, a new feature named [top-level statements](../../csharp/fundamentals/program-structure/top-level-statements.md) lets you omit the `Program` class and the `Main` method. Most existing C# programs don't use top-level statements, so this tutorial doesn't use this new feature. But it's available in C# 10, and whether you use it in your programs is a matter of style preference. - -## Run the app - -Run the following command in the **Terminal**: - -```dotnetcli -dotnet run -``` - -The program displays "Hello, World!" and ends. - -![The dotnet run command](media/with-visual-studio-code/dotnet-run-command.png) - -## Enhance the app - -Enhance the application to prompt the user for their name and display it along with the date and time. - -1. Open *Program.cs*. - -1. Replace the contents of the `Main` method in *Program.cs*, which is the line that calls `Console.WriteLine`, with the following code: - - :::code language="csharp" source="./snippets/with-visual-studio/csharp/Program.cs" id="MainMethod"::: - - This code displays a prompt in the console window and waits until the user enters a string followed by the Enter key. It stores this string in a variable named `name`. It also retrieves the value of the property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the method to wait for user input. - - is a platform-independent and language-independent way to represent a line break. Alternatives are `\n` in C# and `vbCrLf` in Visual Basic. - - The dollar sign (`$`) in front of a string lets you put expressions such as variable names in curly braces in the string. The expression value is inserted into the string in place of the expression. This syntax is referred to as [interpolated strings](../../csharp/language-reference/tokens/interpolated.md). - -1. Save your changes. - - > [!IMPORTANT] - > In Visual Studio Code, you have to explicitly save changes. Unlike Visual Studio, file changes are not automatically saved when you build and run an app. - -1. Run the program again: - - ```dotnetcli - dotnet run - ``` - -1. Respond to the prompt by entering a name and pressing the Enter key. - - :::image type="content" source="media/debugging-with-visual-studio-code/run-modified-program.png" alt-text="Terminal window with modified program output"::: - -1. Press any key to exit the program. - -## Additional resources - -* [Setting up Visual Studio Code](https://code.visualstudio.com/docs/setup/setup-overview) - -## Next steps - -In this tutorial, you created a .NET console application. In the next tutorial, you debug the app. - -> [!div class="nextstepaction"] -> [Debug a .NET console application using Visual Studio Code](debugging-with-visual-studio-code.md) - -::: zone-end - -::: zone pivot="dotnet-6-0" - -This tutorial shows how to create and run a .NET console application by using Visual Studio Code and the .NET CLI. Project tasks, such as creating, compiling, and running a project are done by using the .NET CLI. You can follow this tutorial with a different code editor and run commands in a terminal if you prefer. - -## Prerequisites - -* [Visual Studio Code](https://code.visualstudio.com/) with the [C# extension](https://marketplace.visualstudio.com/items?itemName=ms-dotnettools.csharp) installed. For information about how to install extensions on Visual Studio Code, see [VS Code Extension Marketplace](https://code.visualstudio.com/docs/editor/extension-gallery). -* The [.NET 6 SDK](https://dotnet.microsoft.com/download/dotnet/6.0). - -## Create the app - -Create a .NET console app project named "HelloWorld". - -1. Start Visual Studio Code. - -1. Select **File** > **Open Folder** (**File** > **Open...** on macOS) from the main menu. - -1. In the **Open Folder** dialog, create a *HelloWorld* folder and select it. Then click **Select Folder** (**Open** on macOS). - - The folder name becomes the project name and the namespace name by default. You'll add code later in the tutorial that assumes the project namespace is `HelloWorld`. - -1. In the **Do you trust the authors of the files in this folder?** dialog, select **Yes, I trust the authors**. You can trust the authors because this folder only has files generated by .NET and added or modified by you. - -1. Open the **Terminal** in Visual Studio Code by selecting **View** > **Terminal** from the main menu. - - The **Terminal** opens with the command prompt in the *HelloWorld* folder. - -1. In the **Terminal**, enter the following command: - - ```dotnetcli - dotnet new console --framework net6.0 --use-program-main - ``` - - The project template creates a simple application that displays "Hello, World" in the console window by calling the method in *Program.cs*. - - ```csharp - namespace HelloWorld; - - class Program - { - static void Main(string[] args) - { - Console.WriteLine("Hello, World!"); - } - } - ``` - - The first time you edit a *.cs* file, Visual Studio Code prompts you to add the missing assets to build and debug your app. Select **Yes**, and Visual Studio Code creates a *.vscode* folder with *launch.json* and *tasks.json* files. - - > [!NOTE] - > If you don't get the prompt, or if you accidentally dismiss it without selecting **Yes**, do the following steps to create *launch.json* and *tasks.json*: - > - >* Select **Run** > **Add Configuration** from the menu. - >* Select **.NET 5+ and .NET Core** at the **Select environment** prompt. - - The code defines a class, `Program`, with a single method, `Main`, that takes a array as an argument. `Main` is the application entry point, the method that's called automatically by the runtime when it launches the application. Any command-line arguments supplied when the application is launched are available in the *args* array. - - In the latest version of C#, a new feature named [top-level statements](../../csharp/fundamentals/program-structure/top-level-statements.md) lets you omit the `Program` class and the `Main` method. Most existing C# programs don't use top-level statements, so this tutorial doesn't use this new feature. But it's available in C# 10, and whether you use it in your programs is a matter of style preference. In the `dotnet new` command that you used to create the project, the `--use-program-main` option prevented top-level statements from being used. - -## Run the app - -Run the following command in the **Terminal**: - -```dotnetcli -dotnet run -``` - -The program displays "Hello, World!" and ends. - -![The dotnet run command](media/with-visual-studio-code/dotnet-run-command.png) - -## Enhance the app - -Enhance the application to prompt the user for their name and display it along with the date and time. - -1. Open *Program.cs*. - -1. Replace the contents of the `Main` method in *Program.cs*, which is the line that calls `Console.WriteLine`, with the following code: - - :::code language="csharp" source="./snippets/with-visual-studio/csharp/Program.cs" id="MainMethod"::: - - This code displays a prompt in the console window and waits until the user enters a string followed by the Enter key. It stores this string in a variable named `name`. It also retrieves the value of the property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the method to wait for user input. - - is a platform-independent and language-independent way to represent a line break. Alternatives are `\n` in C# and `vbCrLf` in Visual Basic. - - The dollar sign (`$`) in front of a string lets you put expressions such as variable names in curly braces in the string. The expression value is inserted into the string in place of the expression. This syntax is referred to as [interpolated strings](../../csharp/language-reference/tokens/interpolated.md). - -1. Save your changes. - - > [!IMPORTANT] - > In Visual Studio Code, you have to explicitly save changes. Unlike Visual Studio, file changes are not automatically saved when you build and run an app. - -1. Run the program again: - - ```dotnetcli - dotnet run - ``` - -1. Respond to the prompt by entering a name and pressing the Enter key. - - :::image type="content" source="media/debugging-with-visual-studio-code/run-modified-program.png" alt-text="Terminal window with modified program output"::: - -1. Press any key to exit the program. - -## Additional resources - -* [Setting up Visual Studio Code](https://code.visualstudio.com/docs/setup/setup-overview) - -## Next steps - -In this tutorial, you created a .NET console application. In the next tutorial, you debug the app. - -> [!div class="nextstepaction"] -> [Debug a .NET console application using Visual Studio Code](debugging-with-visual-studio-code.md) - -::: zone-end diff --git a/docs/core/tutorials/with-visual-studio.md b/docs/core/tutorials/with-visual-studio.md index 0b3f692e29a07..b5effd40328ab 100644 --- a/docs/core/tutorials/with-visual-studio.md +++ b/docs/core/tutorials/with-visual-studio.md @@ -92,7 +92,7 @@ Enhance the application to prompt the user for their name and display it along w 1. In *Program.cs* or *Program.vb*, replace the contents of the `Main` method, which is the line that calls `Console.WriteLine`, with the following code: - :::code language="csharp" source="./snippets/with-visual-studio-6-0/csharp/Program.cs" id="MainMethod"::: + :::code language="csharp" source="./snippets/with-visual-studio/csharp/Program.cs" id="MainMethod"::: :::code language="vb" source="./snippets/with-visual-studio/vb/Program.vb" id="MainMethod"::: This code displays a prompt in the console window and waits until the user enters a string followed by the Enter key. It stores this string in a variable named `name`. It also retrieves the value of the property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the method to wait for user input. @@ -204,7 +204,7 @@ Enhance the application to prompt the user for their name and display it along w 1. In *Program.cs* or *Program.vb*, replace the contents of the `Main` method, which is the line that calls `Console.WriteLine`, with the following code: - :::code language="csharp" source="./snippets/with-visual-studio-6-0/csharp/Program.cs" id="MainMethod"::: + :::code language="csharp" source="./snippets/with-visual-studio/csharp/Program.cs" id="MainMethod"::: :::code language="vb" source="./snippets/with-visual-studio/vb/Program.vb" id="MainMethod"::: This code displays a prompt in the console window and waits until the user enters a string followed by the Enter key. It stores this string in a variable named `name`. It also retrieves the value of the property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the method to wait for user input. @@ -324,7 +324,7 @@ Enhance the application to prompt the user for their name and display it along w 1. In *Program.cs* or *Program.vb*, replace the contents of the `Main` method, which is the line that calls `Console.WriteLine`, with the following code: - :::code language="csharp" source="./snippets/with-visual-studio-6-0/csharp/Program.cs" id="MainMethod"::: + :::code language="csharp" source="./snippets/with-visual-studio/csharp/Program.cs" id="MainMethod"::: :::code language="vb" source="./snippets/with-visual-studio/vb/Program.vb" id="MainMethod"::: This code displays a prompt in the console window and waits until the user enters a string followed by the Enter key. It stores this string in a variable named `name`. It also retrieves the value of the property, which contains the current local time, and assigns it to a variable named `currentDate`. And it displays these values in the console window. Finally, it displays a prompt in the console window and calls the method to wait for user input. diff --git a/docs/csharp/asynchronous-programming/snippets/multiple-tasks-6-0/MultipleTasks.csproj b/docs/csharp/asynchronous-programming/snippets/multiple-tasks-6-0/MultipleTasks.csproj index 74abf5c976649..91b464afeacc1 100644 --- a/docs/csharp/asynchronous-programming/snippets/multiple-tasks-6-0/MultipleTasks.csproj +++ b/docs/csharp/asynchronous-programming/snippets/multiple-tasks-6-0/MultipleTasks.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable enable diff --git a/docs/csharp/fundamentals/coding-style/snippets/coding-conventions/coding-conventions.csproj b/docs/csharp/fundamentals/coding-style/snippets/coding-conventions/coding-conventions.csproj index f44100f7c6494..ea0eaf187a84a 100644 --- a/docs/csharp/fundamentals/coding-style/snippets/coding-conventions/coding-conventions.csproj +++ b/docs/csharp/fundamentals/coding-style/snippets/coding-conventions/coding-conventions.csproj @@ -2,10 +2,10 @@ WinExe - net6.0-windows + net8.0-windows enable enable - Coding_Conventions_Examples.Program + Coding_Conventions_Examples.Program Coding_Conventions_Examples Coding Conventions Examples true diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/List/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/List/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/List/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/List/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/ListT/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/ListT/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/ListT/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Collections.Generic/ListT/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Data/DataTable/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Data/DataTable/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Data/DataTable/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Data/DataTable/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics.Tracing/EventSource/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/CounterCreationData/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/CounterCreationData/Overview/csharp/Project.csproj index 063382ba8f7e5..acadaa6a09f92 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/CounterCreationData/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/CounterCreationData/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounter/NextValue/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounter/NextValue/csharp/Project.csproj index 063382ba8f7e5..acadaa6a09f92 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounter/NextValue/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounter/NextValue/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/csharp/Project.csproj index 063382ba8f7e5..acadaa6a09f92 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/vb/Project.vbproj index 063382ba8f7e5..acadaa6a09f92 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Diagnostics/PerformanceCounterType/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Dynamic/ExpandoObject/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/vb/Project.vbproj index f2ef551a953f3..64a232b092203 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentCulture/vb/Project.vbproj @@ -2,7 +2,7 @@ Exe - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/CurrentUICulture/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Globalization/CultureInfo/InvariantCulture/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/BigInteger/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Numerics/Complex/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/CurrentCulture/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/CurrentCulture/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/CurrentCulture/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/CurrentCulture/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/MissingManifestResourceException/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/NeutralResourcesLanguageAttribute/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/.ctor/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/GetString/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/GetString/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/GetString/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/GetString/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceManager/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/csharp/Project.csproj index a3be3310f7f5d..993845f8dfd38 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Resources/ResourceReader/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/InternalsVisibleToAttribute/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.CompilerServices/RuntimeHelpers/GetHashCode/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.InteropServices/ICustomMarshaler/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Runtime.Versioning/ComponentGuaranteesAttribute/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Match/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Match/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Match/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Match/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text.RegularExpressions/Regex/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/Encoding/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/RegularExpressions/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/RegularExpressions/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/RegularExpressions/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/RegularExpressions/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/Rune/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/Rune/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/Rune/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/Rune/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Text/StringBuilder/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/Task/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/TaskScheduler/FromCurrentSynchronizationContext/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/TaskScheduler/FromCurrentSynchronizationContext/csharp/Project.csproj index adcc408e46f06..74ea662d1d0e3 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/TaskScheduler/FromCurrentSynchronizationContext/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading.Tasks/TaskScheduler/FromCurrentSynchronizationContext/csharp/Project.csproj @@ -2,7 +2,7 @@ Exe - net6.0-windows + net8.0-windows true diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Monitor/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/ReaderWriterLockSlim/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Threading/Thread/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlDocument/Overview/csharp/xmlprocessingapp.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlDocument/Overview/csharp/xmlprocessingapp.csproj index fc37f491db58f..ea644a76cfc2d 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlDocument/Overview/csharp/xmlprocessingapp.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlDocument/Overview/csharp/xmlprocessingapp.csproj @@ -2,7 +2,7 @@ Exe - net6.0-windows + net8.0-windows true XMLProcessingApp.Program diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlParserContext/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlParserContext/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlParserContext/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlParserContext/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Create/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReader/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReaderSettings/ValidationType/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReaderSettings/ValidationType/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReaderSettings/ValidationType/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlReaderSettings/ValidationType/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlResolver/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System.Xml/XmlWriter/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V1/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V1/Project.csproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V1/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V1/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V2/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V2/Project.csproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V2/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V2/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V3/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V3/Project.csproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V3/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/csharp/V3/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V1/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V1/Project.vbproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V1/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V1/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V2/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V2/Project.vbproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V2/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V2/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V3/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V3/Project.vbproj index 741e95a0e8331..8346026280c77 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V3/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/AppContext/Overview/vb/V3/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 false diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/csharp/Project.csproj index 5f18ee1d873bc..f700a96ba36b5 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Boolean/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Byte/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Char/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Console/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Convert/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt32/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt32/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt32/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt32/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt64/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt64/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt64/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Convert/ToInt64/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/FromBinary/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/DateTime/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Decimal/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Delegate/CreateDelegate/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/CompareTo/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Epsilon/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Equals/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Double/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Enum/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Exception/HelpLink/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Exception/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Exception/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Exception/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Exception/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/FlagsAttribute/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/FormatException/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/IDisposable/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Int32/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Int64/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/InvalidCastException/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/InvalidCastException/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/InvalidCastException/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/InvalidCastException/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF1/WPFCrossThreadCS.csproj b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF1/WPFCrossThreadCS.csproj index 0165123cbed2f..f7d48768d1c82 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF1/WPFCrossThreadCS.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF1/WPFCrossThreadCS.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows True diff --git a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF2/WPFCrossThreadDispatcherCS.csproj b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF2/WPFCrossThreadDispatcherCS.csproj index 0165123cbed2f..f7d48768d1c82 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF2/WPFCrossThreadDispatcherCS.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WPF2/WPFCrossThreadDispatcherCS.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows True diff --git a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WinForms/WFCrossThreadCS.csproj b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WinForms/WFCrossThreadCS.csproj index 9aaa759380016..8557eab25f30f 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WinForms/WFCrossThreadCS.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/csharp/WinForms/WFCrossThreadCS.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows True WFCrossThreadCS.Form1 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/vb/Other/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/vb/Other/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/vb/Other/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/InvalidOperationException/Overview/vb/Other/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/NotSupportedException/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/NotSupportedException/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/NotSupportedException/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/NotSupportedException/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/Equals/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/Finalize/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/GetHashCode/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Object/ToString/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Random/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/CompareTo/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Epsilon/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Equals/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Single/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Span/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Span/Overview/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Span/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Span/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/.ctor/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Format/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Format/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Format/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Format/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Format/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Intern/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/IsNullOrEmpty/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/csharp/Project.csproj index 44a42c18ccbab..27cfc05b41c7e 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 true diff --git a/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/String/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/Parse/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/TimeSpan/TryParse/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Type/GetType/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Type/GetType/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Type/GetType/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Type/GetType/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Type/MakeGenericType/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/csharp/Project.csproj b/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/csharp/Project.csproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/csharp/Project.csproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/csharp/Project.csproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/Type/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/fundamentals/runtime-libraries/snippets/System/TypeInitializationException/Overview/vb/Project.vbproj b/docs/fundamentals/runtime-libraries/snippets/System/TypeInitializationException/Overview/vb/Project.vbproj index 251a8cb33ffed..559a5dc808936 100644 --- a/docs/fundamentals/runtime-libraries/snippets/System/TypeInitializationException/Overview/vb/Project.vbproj +++ b/docs/fundamentals/runtime-libraries/snippets/System/TypeInitializationException/Overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net8 + net8.0 diff --git a/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/csharp/projectcs.csproj b/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/csharp/projectcs.csproj index 855c4f05f1f52..34a1d498fe1da 100644 --- a/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/csharp/projectcs.csproj +++ b/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/csharp/projectcs.csproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows true diff --git a/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/vb/projectvb.vbproj b/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/vb/projectvb.vbproj index 1393b9f80d7c5..0a770b95a693c 100644 --- a/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/vb/projectvb.vbproj +++ b/docs/standard/asynchronous-programming-patterns/snippets/component-that-supports-the-event-based-asynchronous-pattern/vb/projectvb.vbproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows true AsyncPattern diff --git a/docs/standard/io/snippets/add-remove-acls/csharp/Project.csproj b/docs/standard/io/snippets/add-remove-acls/csharp/Project.csproj index 004b8fa52d840..5a4ec27d1a694 100644 --- a/docs/standard/io/snippets/add-remove-acls/csharp/Project.csproj +++ b/docs/standard/io/snippets/add-remove-acls/csharp/Project.csproj @@ -2,7 +2,7 @@ Exe - net8-windows + net8.0-windows diff --git a/docs/standard/serialization/snippets/binaryformatter-event-source/csharp/binaryformatter-event-source.csproj b/docs/standard/serialization/snippets/binaryformatter-event-source/csharp/binaryformatter-event-source.csproj index cb44805065520..267b76f632441 100644 --- a/docs/standard/serialization/snippets/binaryformatter-event-source/csharp/binaryformatter-event-source.csproj +++ b/docs/standard/serialization/snippets/binaryformatter-event-source/csharp/binaryformatter-event-source.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable 9.0 diff --git a/docs/standard/serialization/system-text-json/snippets/how-to-6-0/csharp/SystemTextJsonSamples.csproj b/docs/standard/serialization/system-text-json/snippets/how-to-6-0/csharp/SystemTextJsonSamples.csproj index 9d3b3e51287cd..5ac2db608ee85 100644 --- a/docs/standard/serialization/system-text-json/snippets/how-to-6-0/csharp/SystemTextJsonSamples.csproj +++ b/docs/standard/serialization/system-text-json/snippets/how-to-6-0/csharp/SystemTextJsonSamples.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 SystemTextJsonSamples.Program enable enable diff --git a/docs/standard/threading/snippets/scheduling-threads/ThreadSnippets.csproj b/docs/standard/threading/snippets/scheduling-threads/ThreadSnippets.csproj index 16e62dd96d57b..da5c1df56647f 100644 --- a/docs/standard/threading/snippets/scheduling-threads/ThreadSnippets.csproj +++ b/docs/standard/threading/snippets/scheduling-threads/ThreadSnippets.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable enable diff --git a/docs/visual-basic/programming-guide/language-features/procedures/snippets/how-to-call-an-event-handler/CallEventHandler.vbproj b/docs/visual-basic/programming-guide/language-features/procedures/snippets/how-to-call-an-event-handler/CallEventHandler.vbproj index 9febcdad49474..b69507c34eae8 100644 --- a/docs/visual-basic/programming-guide/language-features/procedures/snippets/how-to-call-an-event-handler/CallEventHandler.vbproj +++ b/docs/visual-basic/programming-guide/language-features/procedures/snippets/how-to-call-an-event-handler/CallEventHandler.vbproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows CallEventHandler CallEventHandler.SpecialForm true diff --git a/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/DotNetLib/DotNetLib.csproj b/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/DotNetLib/DotNetLib.csproj index d178b80b5513c..feef8c930045c 100644 --- a/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/DotNetLib/DotNetLib.csproj +++ b/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/DotNetLib/DotNetLib.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable true diff --git a/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/NativeHost/NativeHost.csproj b/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/NativeHost/NativeHost.csproj index 2e440b10d14b8..f5e09783c5ce7 100644 --- a/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/NativeHost/NativeHost.csproj +++ b/samples/snippets/core/tutorials/netcore-hosting/csharp/HostWithHostFxr/src/NativeHost/NativeHost.csproj @@ -1,7 +1,7 @@  - net6.0 + net8.0 @@ -50,7 +50,7 @@ - + diff --git a/samples/snippets/core/tutorials/testing-with-cli/csharp/src/NewTypes/NewTypes.csproj b/samples/snippets/core/tutorials/testing-with-cli/csharp/src/NewTypes/NewTypes.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/core/tutorials/testing-with-cli/csharp/src/NewTypes/NewTypes.csproj +++ b/samples/snippets/core/tutorials/testing-with-cli/csharp/src/NewTypes/NewTypes.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/core/tutorials/testing-with-cli/csharp/test/NewTypesTests/NewTypesTests.csproj b/samples/snippets/core/tutorials/testing-with-cli/csharp/test/NewTypesTests/NewTypesTests.csproj index bc7208d78ec2f..360a117309dec 100644 --- a/samples/snippets/core/tutorials/testing-with-cli/csharp/test/NewTypesTests/NewTypesTests.csproj +++ b/samples/snippets/core/tutorials/testing-with-cli/csharp/test/NewTypesTests/NewTypesTests.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/Classic WebData SqlDataAdapter.SqlDataAdapter Example/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/Classic WebData SqlDataAdapter.SqlDataAdapter Example/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/Classic WebData SqlDataAdapter.SqlDataAdapter Example/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/Classic WebData SqlDataAdapter.SqlDataAdapter Example/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks BulkCopy.Single/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks BulkCopy.Single/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks BulkCopy.Single/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks BulkCopy.Single/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfig/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfig/CS/Project.csproj index ba6a61c778616..6ae2b895a86f3 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfig/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfig/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfigByName/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfigByName/CS/Project.csproj index b2266746e8036..6ae2b895a86f3 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfigByName/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStringSettings.RetrieveFromConfigByName/CS/Project.csproj @@ -2,12 +2,12 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStrings.Encrypt/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStrings.Encrypt/CS/Project.csproj index ba6a61c778616..6ae2b895a86f3 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStrings.Encrypt/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks ConnectionStrings.Encrypt/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.AcceptRejectRule/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.AcceptRejectRule/CS/Project.csproj index b1a5d0362cc4c..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.AcceptRejectRule/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.AcceptRejectRule/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableAdd/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableAdd/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableAdd/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableAdd/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableNavigation/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableNavigation/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableNavigation/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableNavigation/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableRelation/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableRelation/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableRelation/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks Data.DataTableRelation/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.Merge/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.Merge/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.Merge/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.Merge/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.MergeAcceptChanges/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.MergeAcceptChanges/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.MergeAcceptChanges/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataSet.MergeAcceptChanges/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.CreateDataReader/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.CreateDataReader/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.CreateDataReader/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.CreateDataReader/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.Events/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.Events/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.Events/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTable.Events/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTableReader.NextResult/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTableReader.NextResult/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTableReader.NextResult/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DataTableReader.NextResult/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommand/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommand/CS/Project.csproj index d39a45a37e67a..22f87dbcc500a 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommand/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommand/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommandData/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommandData/CS/Project.csproj index ba6a61c778616..6ae2b895a86f3 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommandData/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbCommandData/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapter/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapter/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapter/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapter/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapterModify/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapterModify/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapterModify/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.DbDataAdapterModify/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.GetFactory/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.GetFactory/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.GetFactory/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories.GetFactory/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks DbProviderFactories/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Param/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Param/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Param/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Param/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Photo/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Photo/CS/Project.csproj index 4ec1cbca1066b..a8d55cf86bb70 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Photo/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks LargeValueType.Photo/CS/Project.csproj @@ -2,12 +2,12 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks OleDb.JetAutonumberMerge/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks OleDb.JetAutonumberMerge/CS/Project.csproj index 87fea57456f7d..b7e9de789635d 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks OleDb.JetAutonumberMerge/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks OleDb.JetAutonumberMerge/CS/Project.csproj @@ -2,12 +2,12 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Odbc/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Odbc/CS/Project.csproj index cad91e091d02d..273e8ded36c93 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Odbc/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Odbc/CS/Project.csproj @@ -2,12 +2,12 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.OleDb/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.OleDb/CS/Project.csproj index 1451eb122fc60..b7e9de789635d 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.OleDb/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.OleDb/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Oracle/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Oracle/CS/Project.csproj index abf073487c574..a224c25a99d79 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Oracle/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.Oracle/CS/Project.csproj @@ -2,12 +2,12 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.SqlClient/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.SqlClient/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.SqlClient/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SampleApp.SqlClient/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.Demo/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.Demo/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.Demo/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.Demo/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.DemoUpdate/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.DemoUpdate/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.DemoUpdate/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SnapshotIsolation.DemoUpdate/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.ColumnMappingOrdersDetails/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.ColumnMappingOrdersDetails/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.ColumnMappingOrdersDetails/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.ColumnMappingOrdersDetails/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.DefaultTransaction/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.DefaultTransaction/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.DefaultTransaction/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.DefaultTransaction/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.InternalTransaction/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.InternalTransaction/CS/Project.csproj index b1a5d0362cc4c..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.InternalTransaction/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.InternalTransaction/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.SqlTransaction/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.SqlTransaction/CS/Project.csproj index b1a5d0362cc4c..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.SqlTransaction/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlBulkCopy.SqlTransaction/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.DataAdapterUpdate/CS/SqlAdapter.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.DataAdapterUpdate/CS/SqlAdapter.csproj index c8812d6b73f55..f503809f2c322 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.DataAdapterUpdate/CS/SqlAdapter.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.DataAdapterUpdate/CS/SqlAdapter.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetSchemaTable/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetSchemaTable/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetSchemaTable/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetSchemaTable/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetXmlDataReader/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetXmlDataReader/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetXmlDataReader/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.GetXmlDataReader/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.HasRows/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.HasRows/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.HasRows/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.HasRows/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.MergeIdentity/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.MergeIdentity/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.MergeIdentity/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.MergeIdentity/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.NextResult/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.NextResult/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.NextResult/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.NextResult/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.RetrieveIdentityStoredProcedure/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.RetrieveIdentityStoredProcedure/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.RetrieveIdentityStoredProcedure/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.RetrieveIdentityStoredProcedure/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.SprocIdentityReturn/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.SprocIdentityReturn/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.SprocIdentityReturn/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.SprocIdentityReturn/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.StoredProcedure/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.StoredProcedure/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.StoredProcedure/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlClient.StoredProcedure/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlCommand.ExecuteScalar/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlCommand.ExecuteScalar/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlCommand.ExecuteScalar/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlCommand.ExecuteScalar/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlNotification.Perms/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlNotification.Perms/CS/Project.csproj index d9033f55b0bb3..c527e4605163a 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlNotification.Perms/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlNotification.Perms/CS/Project.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTransaction.Local/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTransaction.Local/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTransaction.Local/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTransaction.Local/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.CompareNulls/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.CompareNulls/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.CompareNulls/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.CompareNulls/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.GetTypeAW/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.GetTypeAW/CS/Project.csproj index cd601686e2257..50c8db8d85dfa 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.GetTypeAW/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.GetTypeAW/CS/Project.csproj @@ -2,11 +2,11 @@ Library - net6.0 + net8.0 enable - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.Guid/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.Guid/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.Guid/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.Guid/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.IsNull/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.IsNull/CS/Project.csproj index c7deb0b8e139c..e90c6d6e93c98 100644 --- a/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.IsNull/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_ADO.NET/DataWorks SqlTypes.IsNull/CS/Project.csproj @@ -2,10 +2,10 @@ Library - net6.0 + net8.0 - + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractenumerations/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractenumerations/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractenumerations/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractenumerations/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractnames/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractnames/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractnames/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractnames/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractversioning/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractversioning/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractversioning/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/c_datacontractversioning/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/c_knowntypeattribute/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/c_knowntypeattribute/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/c_knowntypeattribute/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/c_knowntypeattribute/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/c_standalonedatacontractserializer/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/c_standalonedatacontractserializer/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/c_standalonedatacontractserializer/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/c_standalonedatacontractserializer/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/datacontractattribute/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/datacontractattribute/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/datacontractattribute/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/datacontractattribute/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/datamemberattribute/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/datamemberattribute/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/datamemberattribute/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/datamemberattribute/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CFX/tx_enlist/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CFX/tx_enlist/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CFX/tx_enlist/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CFX/tx_enlist/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/ADCreateDomain/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/ADCreateDomain/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/ADCreateDomain/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/ADCreateDomain/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Asynchronous_File_IO_async/cs/AsynchronousFileIO.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Asynchronous_File_IO_async/cs/AsynchronousFileIO.csproj index 8c027c31d63e6..5520a18838d89 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Asynchronous_File_IO_async/cs/AsynchronousFileIO.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Asynchronous_File_IO_async/cs/AsynchronousFileIO.csproj @@ -1,7 +1,7 @@  - net6.0-windows + net8.0-windows enable true false diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Interop.PInvoke/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Interop.PInvoke/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Interop.PInvoke/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Interop.PInvoke/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Threading.Resuming/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Threading.Resuming/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Threading.Resuming/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Conceptual.Threading.Resuming/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/CryptoWalkThru/cs/cryptowalkthru.csproj b/samples/snippets/csharp/VS_Snippets_CLR/CryptoWalkThru/cs/cryptowalkthru.csproj index 007bda0faf79e..c14ba8326ccb3 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/CryptoWalkThru/cs/cryptowalkthru.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/CryptoWalkThru/cs/cryptowalkthru.csproj @@ -1,6 +1,6 @@ - net6.0-windows + net8.0-windows WinExe false true @@ -10,4 +10,4 @@ - \ No newline at end of file + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Cryptography.SmartCardCSP/CS/cryptography.smartcardcsp.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Cryptography.SmartCardCSP/CS/cryptography.smartcardcsp.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Cryptography.SmartCardCSP/CS/cryptography.smartcardcsp.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Cryptography.SmartCardCSP/CS/cryptography.smartcardcsp.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/DynamicMethodHowTo/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/DynamicMethodHowTo/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/DynamicMethodHowTo/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/DynamicMethodHowTo/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.DateAndTime.Custom/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.DateAndTime.Custom/cs/Project.csproj index c258ea5606282..38c3c5afae2c9 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.DateAndTime.Custom/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.DateAndTime.Custom/cs/Project.csproj @@ -1,6 +1,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.Calendar/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.Calendar/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.Calendar/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.Calendar/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.NumericValue/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.NumericValue/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.NumericValue/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.NumericValue/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.PadNumber/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.PadNumber/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.PadNumber/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.HowTo.PadNumber/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.Numeric.Standard/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.Numeric.Standard/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Formatting.Numeric.Standard/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Formatting.Numeric.Standard/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/GCNotification/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/GCNotification/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/GCNotification/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/GCNotification/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/cs/decryptxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/cs/decryptxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/cs/decryptxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/cs/decryptxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementX509/cs/decryptxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementX509/cs/decryptxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementX509/cs/decryptxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToDecryptXMLElementX509/cs/decryptxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/cs/encryptxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/cs/encryptxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/cs/encryptxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/cs/encryptxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/cs/encryptxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/cs/encryptxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/cs/encryptxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/cs/encryptxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementX509/cs/encryptxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementX509/cs/encryptxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementX509/cs/encryptxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToEncryptXMLElementX509/cs/encryptxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToSignXMLDocumentRSA/cs/signxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToSignXMLDocumentRSA/cs/signxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToSignXMLDocumentRSA/cs/signxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToSignXMLDocumentRSA/cs/signxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/cs/verifyxml.csproj b/samples/snippets/csharp/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/cs/verifyxml.csproj index 0e7b885f09151..ba8fb029b6251 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/cs/verifyxml.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/cs/verifyxml.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/IO.Compression.GZip1/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/IO.Compression.GZip1/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/IO.Compression.GZip1/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/IO.Compression.GZip1/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Classes/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Classes/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Classes/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Classes/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.ChangeDateFormats/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.ChangeDateFormats/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.ChangeDateFormats/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.ChangeDateFormats/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.StripChars/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.StripChars/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.StripChars/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Examples.StripChars/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers.Greedy/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers.Greedy/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers.Greedy/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers.Greedy/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/RegularExpressions.Quantifiers/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Strings.ChangingCase/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Strings.ChangingCase/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Strings.ChangingCase/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Strings.ChangingCase/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/Strings.Creating/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/Strings.Creating/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/Strings.Creating/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/Strings.Creating/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/appcompat.ignoreemptykeysequences/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/appcompat.ignoreemptykeysequences/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/appcompat.ignoreemptykeysequences/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/appcompat.ignoreemptykeysequences/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/appcompat.sslprotocols/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/appcompat.sslprotocols/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/appcompat.sslprotocols/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/appcompat.sslprotocols/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleaction/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleaction/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleaction/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleaction/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleienum/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleienum/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleienum/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontrasimpleienum/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegates/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegates/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegates/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegates/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegatesgenrelaxed/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegatesgenrelaxed/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegatesgenrelaxed/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontravariancedelegatesgenrelaxed/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici2/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici2/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici2/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/cocontravarianceinclrgenerici2/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.cancellation.callback/cs/cs.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.cancellation.callback/cs/cs.csproj index 4de80482caabb..8d2b2325b0b6c 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.cancellation.callback/cs/cs.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.cancellation.callback/cs/cs.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.choosingdates/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.choosingdates/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.choosingdates/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.choosingdates/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.conversion/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.conversion/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.conversion/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.conversion/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.disposable/cs/using.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.disposable/cs/using.csproj index 14459ca104675..b4afd74f50659 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.disposable/cs/using.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.disposable/cs/using.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable SingleStatementMultiple diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.formatting.overview/cs/Formatting-Overview.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.formatting.overview/cs/Formatting-Overview.csproj index 9df5e4bd9c172..28d6a9f729672 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.formatting.overview/cs/Formatting-Overview.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.formatting.overview/cs/Formatting-Overview.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 Formatting_Overview enable enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.generics.overview/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.generics.overview/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.generics.overview/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.generics.overview/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.globalization/cs/globalization.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.globalization/cs/globalization.csproj index 2d9e82c695f37..ad3b8dd97cae4 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.globalization/cs/globalization.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.globalization/cs/globalization.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable Globalization diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.isolatedstorage/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.isolatedstorage/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.isolatedstorage/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.isolatedstorage/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.localizability/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.localizability/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.localizability/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.localizability/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.parallel.for/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.parallel.for/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.parallel.for/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.parallel.for/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.perfcounters.inprosxs/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.perfcounters.inprosxs/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.perfcounters.inprosxs/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.perfcounters.inprosxs/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regex.language.options/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regex.language.options/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regex.language.options/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regex.language.options/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regularexpressions.design/cs/Example.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regularexpressions.design/cs/Example.csproj index 66b7210510a21..4d3cf0ca3a174 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regularexpressions.design/cs/Example.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.regularexpressions.design/cs/Example.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable false diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.packaging/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.packaging/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.packaging/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.packaging/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.textfiles/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.textfiles/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.textfiles/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.resources.textfiles/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.string.parse/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.string.parse/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.string.parse/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.string.parse/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.strings.cultureinsensitivecomparison/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.strings.cultureinsensitivecomparison/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.strings.cultureinsensitivecomparison/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.strings.cultureinsensitivecomparison/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.dynamic/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.dynamic/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.dynamic/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.dynamic/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.enum/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.enum/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.enum/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.enum/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.members.fields/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.members.fields/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.members.fields/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/conceptual.types.members.fields/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/contractexample/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/contractexample/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/contractexample/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/contractexample/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/dg_exceptionDesign/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/dg_exceptionDesign/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/dg_exceptionDesign/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/dg_exceptionDesign/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/eventsoverview/cs/eventsoverview.csproj b/samples/snippets/csharp/VS_Snippets_CLR/eventsoverview/cs/eventsoverview.csproj index d1546c116b01a..6d0d592a5ff2f 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/eventsoverview/cs/eventsoverview.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/eventsoverview/cs/eventsoverview.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable true Exe diff --git a/samples/snippets/csharp/VS_Snippets_CLR/formatting.numeric.custom/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/formatting.numeric.custom/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/formatting.numeric.custom/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/formatting.numeric.custom/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/generatingahash/cs/generatingahash.csproj b/samples/snippets/csharp/VS_Snippets_CLR/generatingahash/cs/generatingahash.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/generatingahash/cs/generatingahash.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/generatingahash/cs/generatingahash.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/listupdates/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/listupdates/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/listupdates/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/listupdates/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.createfromfile/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.createfromfile/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.createfromfile/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.createfromfile/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.openexisting/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.openexisting/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.openexisting/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/memorymappedfiles.memorymappedfile.openexisting/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/regularexpressions.language.escapes/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/regularexpressions.language.escapes/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/regularexpressions.language.escapes/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/regularexpressions.language.escapes/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/string.breakingchanges/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/string.breakingchanges/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/string.breakingchanges/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/string.breakingchanges/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/throwunobservedtaskexceptions/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/throwunobservedtaskexceptions/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/throwunobservedtaskexceptions/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/throwunobservedtaskexceptions/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/timespan.breakingchanges/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/timespan.breakingchanges/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/timespan.breakingchanges/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/timespan.breakingchanges/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/tools.certmgr/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/tools.certmgr/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/tools.certmgr/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/tools.certmgr/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample1/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample1/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample1/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample1/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample2/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample2/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample2/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/tracesourceexample2/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/verifyingahash/cs/verifyingahash.csproj b/samples/snippets/csharp/VS_Snippets_CLR/verifyingahash/cs/verifyingahash.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/verifyingahash/cs/verifyingahash.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/verifyingahash/cs/verifyingahash.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.461.crypto/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.461.crypto/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.461.crypto/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.461.crypto/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.casting/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.casting/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.casting/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR/whatsnew.casting/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/System.Runtime.BypassNGenAttribute/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/System.Runtime.BypassNGenAttribute/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/System.Runtime.BypassNGenAttribute/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/System.Runtime.BypassNGenAttribute/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTime.Conceptual.Formatting/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTime.Conceptual.Formatting/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTime.Conceptual.Formatting/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTime.Conceptual.Formatting/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTimeOffset.Conceptual.Conversions/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTimeOffset.Conceptual.Conversions/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTimeOffset.Conceptual.Conversions/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.DateTimeOffset.Conceptual.Conversions/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Diagnostics.DebuggerBrowsableAttribute/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Diagnostics.DebuggerBrowsableAttribute/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Diagnostics.DebuggerBrowsableAttribute/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Diagnostics.DebuggerBrowsableAttribute/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.ICustomFormatter.Format/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.ICustomFormatter.Format/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.ICustomFormatter.Format/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.ICustomFormatter.Format/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeClientStream_Sample/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeClientStream_Sample/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeClientStream_Sample/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeClientStream_Sample/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeServerStream_Sample/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeServerStream_Sample/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeServerStream_Sample/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.IO.Pipes.AnonymousPipeServerStream_Sample/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Security.Principal.WindowsBuiltInRole Example/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Security.Principal.WindowsBuiltInRole Example/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Security.Principal.WindowsBuiltInRole Example/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Security.Principal.WindowsBuiltInRole Example/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.String.GetHashCode/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.String.GetHashCode/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.String.GetHashCode/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.String.GetHashCode/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Threading.Timer/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Threading.Timer/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.Threading.Timer/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.Threading.Timer/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.CreateTimeZone/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.CreateTimeZone/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.CreateTimeZone/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.CreateTimeZone/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.1/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.1/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.1/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.1/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.2/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.2/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.2/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.TimeZone2.Serialization.2/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.X.ToString-and-Culture/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.X.ToString-and-Culture/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.X.ToString-and-Culture/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.X.ToString-and-Culture/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto_simple/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto_simple/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto_simple/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.appdomain.firstchanceexception_howto_simple/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.globalization.textinfo.totitlecase/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.globalization.textinfo.totitlecase/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.globalization.textinfo.totitlecase/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.globalization.textinfo.totitlecase/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.idisposable/cs/project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.idisposable/cs/project.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.idisposable/cs/project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.idisposable/cs/project.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directory.enumeratefiles/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directory.enumeratefiles/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directory.enumeratefiles/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directory.enumeratefiles/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directoryinfo.enumeratedirectories/cs/enumaratedirectories.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directoryinfo.enumeratedirectories/cs/enumaratedirectories.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directoryinfo.enumeratedirectories/cs/enumaratedirectories.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.directoryinfo.enumeratedirectories/cs/enumaratedirectories.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.enumdirs1/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.enumdirs1/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.enumdirs1/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.enumdirs1/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_a/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_a/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_a/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_a/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_b/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_b/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_b/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_b/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_x/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_x/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_x/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.io.memorymappedfiles_ipc_x/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.text.regularexpressions.regex.ctor/cs/Example.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.text.regularexpressions.regex.ctor/cs/Example.csproj index 74abf5c976649..91b464afeacc1 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.text.regularexpressions.regex.ctor/cs/Example.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.text.regularexpressions.regex.ctor/cs/Example.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable enable diff --git a/samples/snippets/csharp/VS_Snippets_CLR_System/system.threading.tasks.parallel/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_CLR_System/system.threading.tasks.parallel/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_CLR_System/system.threading.tasks.parallel/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_CLR_System/system.threading.tasks.parallel/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/PsciSample/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/PsciSample/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/PsciSample/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/PsciSample/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XML_Migration/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XML_Migration/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XML_Migration/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XML_Migration/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XPathNavigatorMethods/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XPathNavigatorMethods/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XPathNavigatorMethods/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XPathNavigatorMethods/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XSLT_NodeFrag/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XSLT_NodeFrag/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XSLT_NodeFrag/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XSLT_NodeFrag/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XSLT_Param/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XSLT_Param/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XSLT_Param/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XSLT_Param/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XSLT_Script/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XSLT_Script/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XSLT_Script/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XSLT_Script/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Load/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Load/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Load/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Load/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Validate/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Validate/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Validate/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlDocumentValidation.Validate/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaCreateExample/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaCreateExample/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaCreateExample/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaCreateExample/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample1/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample1/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample1/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample1/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample2/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample2/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample2/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaEditExample2/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaImportExample/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaImportExample/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaImportExample/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaImportExample/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaInferenceExamples/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaInferenceExamples/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaInferenceExamples/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaInferenceExamples/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaReadWriteExample/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaReadWriteExample/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaReadWriteExample/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaReadWriteExample/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaSetOverall Example/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaSetOverall Example/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaSetOverall Example/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaSetOverall Example/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaTraverseExample/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaTraverseExample/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaTraverseExample/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaTraverseExample/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaValidatorExamples/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaValidatorExamples/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaValidatorExamples/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XmlSchemaValidatorExamples/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/XslCompiledTransform.Transform2/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/XslCompiledTransform.Transform2/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/XslCompiledTransform.Transform2/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/XslCompiledTransform.Transform2/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Data/xpathextensionfunctions/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Data/xpathextensionfunctions/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Data/xpathextensionfunctions/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Data/xpathextensionfunctions/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/cancellation/cs/cancellation.csproj b/samples/snippets/csharp/VS_Snippets_Misc/cancellation/cs/cancellation.csproj index c014d56d0a34d..410c4a67f2207 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/cancellation/cs/cancellation.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/cancellation/cs/cancellation.csproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_Misc/cds_barrier/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/cds_barrier/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/cds_barrier/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/cds_barrier/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/cds_countdownevent/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/cds_countdownevent/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/cds_countdownevent/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/cds_countdownevent/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/cds_spinlock/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/cds_spinlock/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/cds_spinlock/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/cds_spinlock/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/cds_spinwait/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/cds_spinwait/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/cds_spinwait/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/cds_spinwait/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/fromasync/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/fromasync/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/fromasync/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/fromasync/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/plinq/cs/plinq.csproj b/samples/snippets/csharp/VS_Snippets_Misc/plinq/cs/plinq.csproj index ad64b146d97ac..8b8ba0d6b445f 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/plinq/cs/plinq.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/plinq/cs/plinq.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable ExampleForAll diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_cancellation/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_cancellation/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_cancellation/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_cancellation/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_denychildattach/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_denychildattach/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_denychildattach/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_denychildattach/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_exceptions/cs/handling-tpl-exceptions.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_exceptions/cs/handling-tpl-exceptions.csproj index 835740427d7cb..ddb1b95b31479 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_exceptions/cs/handling-tpl-exceptions.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_exceptions/cs/handling-tpl-exceptions.csproj @@ -2,9 +2,9 @@ Exe - net6.0 + net8.0 enable true - \ No newline at end of file + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/00/partitioners.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/00/partitioners.csproj index cb7ac076203f9..4c454896f30bf 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/00/partitioners.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/00/partitioners.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/01/partitioner02.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/01/partitioner02.csproj index eabb4c02f06a4..08d32eecee723 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/01/partitioner02.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_partitioners/cs/01/partitioner02.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpl_unwrap/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpl_unwrap/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpl_unwrap/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpl_unwrap/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_degreeofparallelism/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_degreeofparallelism/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_degreeofparallelism/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_degreeofparallelism/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_executionblocks/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_executionblocks/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_executionblocks/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_executionblocks/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_nongreedyjoin/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_nongreedyjoin/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_nongreedyjoin/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_nongreedyjoin/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_overview/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_overview/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_overview/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_overview/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_palindromes/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_palindromes/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_palindromes/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_palindromes/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_producerconsumer/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_producerconsumer/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_producerconsumer/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_producerconsumer/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_readwrite/cs/dataflowreadwrite.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_readwrite/cs/dataflowreadwrite.csproj index e4580b5335c47..8f01f6630d07d 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_readwrite/cs/dataflowreadwrite.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_readwrite/cs/dataflowreadwrite.csproj @@ -2,9 +2,9 @@ Exe - net6.0 + net8.0 enable DataflowReadWrite - \ No newline at end of file + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_receiveany/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_receiveany/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_receiveany/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_receiveany/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_slidingwindowblock/cs/Project.csproj b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_slidingwindowblock/cs/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_slidingwindowblock/cs/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_Misc/tpldataflow_slidingwindowblock/cs/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_VBCSharp/csProgGuideProperties/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_VBCSharp/csProgGuideProperties/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_VBCSharp/csProgGuideProperties/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_VBCSharp/csProgGuideProperties/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsAccess/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsAccess/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsAccess/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsAccess/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsLiteral/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsLiteral/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsLiteral/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsLiteral/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsTypes/CS/Project.csproj b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsTypes/CS/Project.csproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsTypes/CS/Project.csproj +++ b/samples/snippets/csharp/VS_Snippets_VBCSharp/csrefKeywordsTypes/CS/Project.csproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/csharp/buffers/MyBuffers.csproj b/samples/snippets/csharp/buffers/MyBuffers.csproj index 4de80482caabb..8d2b2325b0b6c 100644 --- a/samples/snippets/csharp/buffers/MyBuffers.csproj +++ b/samples/snippets/csharp/buffers/MyBuffers.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/delegates-and-events/delegates-and-events.csproj b/samples/snippets/csharp/delegates-and-events/delegates-and-events.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/delegates-and-events/delegates-and-events.csproj +++ b/samples/snippets/csharp/delegates-and-events/delegates-and-events.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/events/events.csproj b/samples/snippets/csharp/events/events.csproj index 3897747193834..f704bf4988fa6 100644 --- a/samples/snippets/csharp/events/events.csproj +++ b/samples/snippets/csharp/events/events.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable enable diff --git a/samples/snippets/csharp/getting-started/console-linq/console-linq.csproj b/samples/snippets/csharp/getting-started/console-linq/console-linq.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/getting-started/console-linq/console-linq.csproj +++ b/samples/snippets/csharp/getting-started/console-linq/console-linq.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/how-to/conversions/conversions.csproj b/samples/snippets/csharp/how-to/conversions/conversions.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/how-to/conversions/conversions.csproj +++ b/samples/snippets/csharp/how-to/conversions/conversions.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/how-to/strings/strings.csproj b/samples/snippets/csharp/how-to/strings/strings.csproj index 86561a6e932d7..bccebfef5e970 100644 --- a/samples/snippets/csharp/how-to/strings/strings.csproj +++ b/samples/snippets/csharp/how-to/strings/strings.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable HowToStrings true diff --git a/samples/snippets/csharp/interfaces/interfaces.csproj b/samples/snippets/csharp/interfaces/interfaces.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/interfaces/interfaces.csproj +++ b/samples/snippets/csharp/interfaces/interfaces.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/language-reference/keywords/volatile/volatile.csproj b/samples/snippets/csharp/language-reference/keywords/volatile/volatile.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/language-reference/keywords/volatile/volatile.csproj +++ b/samples/snippets/csharp/language-reference/keywords/volatile/volatile.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/objectoriented/objectoriented.csproj b/samples/snippets/csharp/objectoriented/objectoriented.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/objectoriented/objectoriented.csproj +++ b/samples/snippets/csharp/objectoriented/objectoriented.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/programming-guide/string-to-number/convert/convert.csproj b/samples/snippets/csharp/programming-guide/string-to-number/convert/convert.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/csharp/programming-guide/string-to-number/convert/convert.csproj +++ b/samples/snippets/csharp/programming-guide/string-to-number/convert/convert.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse/parse-tryparse.csproj b/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse/parse-tryparse.csproj index 137c9ba9a06a3..bdccbb51cf14b 100644 --- a/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse/parse-tryparse.csproj +++ b/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse/parse-tryparse.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable parse_tryparse diff --git a/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse2/parse-tryparse2.csproj b/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse2/parse-tryparse2.csproj index 519f88972e896..f6e67a3f5e651 100644 --- a/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse2/parse-tryparse2.csproj +++ b/samples/snippets/csharp/programming-guide/string-to-number/parse-tryparse2/parse-tryparse2.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable parse_tryparse2 diff --git a/samples/snippets/csharp/roslyn-sdk/SemanticQuickStart/SemanticQuickStart.csproj b/samples/snippets/csharp/roslyn-sdk/SemanticQuickStart/SemanticQuickStart.csproj index 53318e7afaff6..bf7a2d2af5ad3 100644 --- a/samples/snippets/csharp/roslyn-sdk/SemanticQuickStart/SemanticQuickStart.csproj +++ b/samples/snippets/csharp/roslyn-sdk/SemanticQuickStart/SemanticQuickStart.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/HelloSyntaxTree/HelloSyntaxTree.csproj b/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/HelloSyntaxTree/HelloSyntaxTree.csproj index 1d45a07df9ea2..5659e6569c0a9 100644 --- a/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/HelloSyntaxTree/HelloSyntaxTree.csproj +++ b/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/HelloSyntaxTree/HelloSyntaxTree.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/SyntaxWalker/SyntaxWalker.csproj b/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/SyntaxWalker/SyntaxWalker.csproj index 1d45a07df9ea2..5659e6569c0a9 100644 --- a/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/SyntaxWalker/SyntaxWalker.csproj +++ b/samples/snippets/csharp/roslyn-sdk/SyntaxQuickStart/SyntaxWalker/SyntaxWalker.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/csharp/versioning/new/new.csproj b/samples/snippets/csharp/versioning/new/new.csproj index d260053fe007d..af31fefa23aa5 100644 --- a/samples/snippets/csharp/versioning/new/new.csproj +++ b/samples/snippets/csharp/versioning/new/new.csproj @@ -2,8 +2,8 @@ Exe - net6.0 + net8.0 enable - \ No newline at end of file + diff --git a/samples/snippets/csharp/versioning/override/override.csproj b/samples/snippets/csharp/versioning/override/override.csproj index d260053fe007d..af31fefa23aa5 100644 --- a/samples/snippets/csharp/versioning/override/override.csproj +++ b/samples/snippets/csharp/versioning/override/override.csproj @@ -2,8 +2,8 @@ Exe - net6.0 + net8.0 enable - \ No newline at end of file + diff --git a/samples/snippets/csharp/xunit-test/xunit-test.csproj b/samples/snippets/csharp/xunit-test/xunit-test.csproj index 0b434bedaf207..f69c5a87b38a3 100644 --- a/samples/snippets/csharp/xunit-test/xunit-test.csproj +++ b/samples/snippets/csharp/xunit-test/xunit-test.csproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 enable diff --git a/samples/snippets/fsharp/fssamples.fsproj b/samples/snippets/fsharp/fssamples.fsproj index 79367e1a6ca32..d8280b01cbfad 100644 --- a/samples/snippets/fsharp/fssamples.fsproj +++ b/samples/snippets/fsharp/fssamples.fsproj @@ -2,10 +2,10 @@ Exe - net6.0 + net8.0 preview - + diff --git a/samples/snippets/standard/assembly/unloading/unloading.csproj b/samples/snippets/standard/assembly/unloading/unloading.csproj index 3a6eb6dfef849..fc4328de95b15 100644 --- a/samples/snippets/standard/assembly/unloading/unloading.csproj +++ b/samples/snippets/standard/assembly/unloading/unloading.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable test.Program diff --git a/samples/snippets/standard/async/async-and-await/vb/AsyncFirstExampleVB.vbproj b/samples/snippets/standard/async/async-and-await/vb/AsyncFirstExampleVB.vbproj index 49c6173cd820f..8f60045c75501 100644 --- a/samples/snippets/standard/async/async-and-await/vb/AsyncFirstExampleVB.vbproj +++ b/samples/snippets/standard/async/async-and-await/vb/AsyncFirstExampleVB.vbproj @@ -2,7 +2,7 @@ WinExe - net6.0-windows + net8.0-windows AsyncFirstExampleVB true diff --git a/samples/snippets/standard/buffers/memory-t/owner-using/owner-using.csproj b/samples/snippets/standard/buffers/memory-t/owner-using/owner-using.csproj index aa60902b4499f..569185a005cf0 100644 --- a/samples/snippets/standard/buffers/memory-t/owner-using/owner-using.csproj +++ b/samples/snippets/standard/buffers/memory-t/owner-using/owner-using.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable Visual_Studio_Projects diff --git a/samples/snippets/standard/buffers/memory-t/owner/owner.csproj b/samples/snippets/standard/buffers/memory-t/owner/owner.csproj index aa60902b4499f..569185a005cf0 100644 --- a/samples/snippets/standard/buffers/memory-t/owner/owner.csproj +++ b/samples/snippets/standard/buffers/memory-t/owner/owner.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable Visual_Studio_Projects diff --git a/samples/snippets/standard/buffers/memory-t/ownerless/ownerless.csproj b/samples/snippets/standard/buffers/memory-t/ownerless/ownerless.csproj index aa60902b4499f..569185a005cf0 100644 --- a/samples/snippets/standard/buffers/memory-t/ownerless/ownerless.csproj +++ b/samples/snippets/standard/buffers/memory-t/ownerless/ownerless.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable Visual_Studio_Projects diff --git a/samples/snippets/standard/buffers/memory-t/task-returning2/task-returning2.csproj b/samples/snippets/standard/buffers/memory-t/task-returning2/task-returning2.csproj index 749576251025e..3675843c7dfb1 100644 --- a/samples/snippets/standard/buffers/memory-t/task-returning2/task-returning2.csproj +++ b/samples/snippets/standard/buffers/memory-t/task-returning2/task-returning2.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable void_returning diff --git a/samples/snippets/standard/buffers/memory-t/void-returning/void-returning.csproj b/samples/snippets/standard/buffers/memory-t/void-returning/void-returning.csproj index 749576251025e..3675843c7dfb1 100644 --- a/samples/snippets/standard/buffers/memory-t/void-returning/void-returning.csproj +++ b/samples/snippets/standard/buffers/memory-t/void-returning/void-returning.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable void_returning diff --git a/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj b/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj +++ b/samples/snippets/standard/data/sqlite/AggregateFunctionSample/AggregateFunctionSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj b/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj +++ b/samples/snippets/standard/data/sqlite/AsyncSample/AsyncSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj b/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj +++ b/samples/snippets/standard/data/sqlite/BackupSample/BackupSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj b/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj +++ b/samples/snippets/standard/data/sqlite/BatchingSample/BatchingSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj b/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj +++ b/samples/snippets/standard/data/sqlite/BulkInsertSample/BulkInsertSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj b/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj +++ b/samples/snippets/standard/data/sqlite/CollationSample/CollationSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj b/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj index 259d8dc867552..7ca074d801d3d 100644 --- a/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj +++ b/samples/snippets/standard/data/sqlite/DapperSample/DapperSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj b/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj +++ b/samples/snippets/standard/data/sqlite/DateAndTimeSample/DateAndTimeSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj b/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj +++ b/samples/snippets/standard/data/sqlite/DeferredTransactionSample/DeferredTransactionSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj b/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj +++ b/samples/snippets/standard/data/sqlite/DirtyReadSample/DirtyReadSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/EncryptionSample/EncryptionSample.csproj b/samples/snippets/standard/data/sqlite/EncryptionSample/EncryptionSample.csproj index be2892dd9ea6f..cf473c73913bf 100644 --- a/samples/snippets/standard/data/sqlite/EncryptionSample/EncryptionSample.csproj +++ b/samples/snippets/standard/data/sqlite/EncryptionSample/EncryptionSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj b/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj index 3ad952f5a3d02..bac503f6c918d 100644 --- a/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj +++ b/samples/snippets/standard/data/sqlite/ExtensionsSample/ExtensionsSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj b/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj +++ b/samples/snippets/standard/data/sqlite/HelloWorldSample/HelloWorldSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj b/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj +++ b/samples/snippets/standard/data/sqlite/InteropSample/InteropSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj b/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj +++ b/samples/snippets/standard/data/sqlite/RegularExpressionSample/RegularExpressionSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj b/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj +++ b/samples/snippets/standard/data/sqlite/ResultMetadataSample/ResultMetadataSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj b/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj +++ b/samples/snippets/standard/data/sqlite/SavepointSample/SavepointSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj b/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj index b38d9531135c3..331f14ff9b5ea 100644 --- a/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj +++ b/samples/snippets/standard/data/sqlite/ScalarFunctionSample/ScalarFunctionSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj b/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj index 2ddfbb6c37ba4..03df642c7398e 100644 --- a/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj +++ b/samples/snippets/standard/data/sqlite/SqliteProviderSample/SqliteProviderSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj b/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj index fecae739d0a61..35eee0473dd00 100644 --- a/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj +++ b/samples/snippets/standard/data/sqlite/StreamingSample/StreamingSample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj b/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj index efcb0fe8c99bb..d52133f8eb1f1 100644 --- a/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj +++ b/samples/snippets/standard/data/sqlite/SystemLibrarySample/SystemLibrarySample.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/datetime/calendars/current-era/cs/work-with-calendars.csproj b/samples/snippets/standard/datetime/calendars/current-era/cs/work-with-calendars.csproj index 149b4393ed27c..162057a60c7a3 100644 --- a/samples/snippets/standard/datetime/calendars/current-era/cs/work-with-calendars.csproj +++ b/samples/snippets/standard/datetime/calendars/current-era/cs/work-with-calendars.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable work_with_calendars diff --git a/samples/snippets/standard/datetime/calendars/current-era/vb/vb.vbproj b/samples/snippets/standard/datetime/calendars/current-era/vb/vb.vbproj index 7c3e628458075..81a7f0490d284 100644 --- a/samples/snippets/standard/datetime/calendars/current-era/vb/vb.vbproj +++ b/samples/snippets/standard/datetime/calendars/current-era/vb/vb.vbproj @@ -3,7 +3,7 @@ Exe vb - net6.0 + net8.0 diff --git a/samples/snippets/standard/datetime/calendars/gannen/cs/gannen-fmt.csproj b/samples/snippets/standard/datetime/calendars/gannen/cs/gannen-fmt.csproj index 3eea0bbacf5c9..cccd97324f1ed 100644 --- a/samples/snippets/standard/datetime/calendars/gannen/cs/gannen-fmt.csproj +++ b/samples/snippets/standard/datetime/calendars/gannen/cs/gannen-fmt.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable gannen_fmt diff --git a/samples/snippets/standard/datetime/calendars/gannen/vb/gannen-fmt.vbproj b/samples/snippets/standard/datetime/calendars/gannen/vb/gannen-fmt.vbproj index f0323f9bb0ee6..fb6c71a02207b 100644 --- a/samples/snippets/standard/datetime/calendars/gannen/vb/gannen-fmt.vbproj +++ b/samples/snippets/standard/datetime/calendars/gannen/vb/gannen-fmt.vbproj @@ -3,7 +3,7 @@ Exe gannen_fmt_vb - net6.0 + net8.0 diff --git a/samples/snippets/standard/datetime/calendars/gregorian/cs/cs.csproj b/samples/snippets/standard/datetime/calendars/gregorian/cs/cs.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/standard/datetime/calendars/gregorian/cs/cs.csproj +++ b/samples/snippets/standard/datetime/calendars/gregorian/cs/cs.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/datetime/calendars/gregorian/vb/vb.vbproj b/samples/snippets/standard/datetime/calendars/gregorian/vb/vb.vbproj index 7c3e628458075..81a7f0490d284 100644 --- a/samples/snippets/standard/datetime/calendars/gregorian/vb/vb.vbproj +++ b/samples/snippets/standard/datetime/calendars/gregorian/vb/vb.vbproj @@ -3,7 +3,7 @@ Exe vb - net6.0 + net8.0 diff --git a/samples/snippets/standard/datetime/calendars/relaxed-range/cs/cs.csproj b/samples/snippets/standard/datetime/calendars/relaxed-range/cs/cs.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/standard/datetime/calendars/relaxed-range/cs/cs.csproj +++ b/samples/snippets/standard/datetime/calendars/relaxed-range/cs/cs.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/datetime/calendars/relaxed-range/vb/vb.vbproj b/samples/snippets/standard/datetime/calendars/relaxed-range/vb/vb.vbproj index 7c3e628458075..81a7f0490d284 100644 --- a/samples/snippets/standard/datetime/calendars/relaxed-range/vb/vb.vbproj +++ b/samples/snippets/standard/datetime/calendars/relaxed-range/vb/vb.vbproj @@ -3,7 +3,7 @@ Exe vb - net6.0 + net8.0 diff --git a/samples/snippets/standard/datetime/calendars/specify-era/cs/work-with-calendars.csproj b/samples/snippets/standard/datetime/calendars/specify-era/cs/work-with-calendars.csproj index 149b4393ed27c..162057a60c7a3 100644 --- a/samples/snippets/standard/datetime/calendars/specify-era/cs/work-with-calendars.csproj +++ b/samples/snippets/standard/datetime/calendars/specify-era/cs/work-with-calendars.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable work_with_calendars diff --git a/samples/snippets/standard/datetime/calendars/specify-era/vb/vb.vbproj b/samples/snippets/standard/datetime/calendars/specify-era/vb/vb.vbproj index 7c3e628458075..81a7f0490d284 100644 --- a/samples/snippets/standard/datetime/calendars/specify-era/vb/vb.vbproj +++ b/samples/snippets/standard/datetime/calendars/specify-era/vb/vb.vbproj @@ -3,7 +3,7 @@ Exe vb - net6.0 + net8.0 diff --git a/samples/snippets/standard/io/io-exceptions/cs/io-exceptions.csproj b/samples/snippets/standard/io/io-exceptions/cs/io-exceptions.csproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/standard/io/io-exceptions/cs/io-exceptions.csproj +++ b/samples/snippets/standard/io/io-exceptions/cs/io-exceptions.csproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/standard/io/io-exceptions/vb/io-exceptions.vbproj b/samples/snippets/standard/io/io-exceptions/vb/io-exceptions.vbproj index 7c3e628458075..81a7f0490d284 100644 --- a/samples/snippets/standard/io/io-exceptions/vb/io-exceptions.vbproj +++ b/samples/snippets/standard/io/io-exceptions/vb/io-exceptions.vbproj @@ -3,7 +3,7 @@ Exe vb - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/Cryptography.SmartCardCSP/VB/cryptography.smartcardcsp.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/Cryptography.SmartCardCSP/VB/cryptography.smartcardcsp.vbproj index 41f1d5ad4b264..a269962b552f0 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/Cryptography.SmartCardCSP/VB/cryptography.smartcardcsp.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/Cryptography.SmartCardCSP/VB/cryptography.smartcardcsp.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/Formatting.DateAndTime.Custom/vb/Project.csproj b/samples/snippets/visualbasic/VS_Snippets_CLR/Formatting.DateAndTime.Custom/vb/Project.csproj index c258ea5606282..38c3c5afae2c9 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/Formatting.DateAndTime.Custom/vb/Project.csproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/Formatting.DateAndTime.Custom/vb/Project.csproj @@ -1,6 +1,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/vb/decryptxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/vb/decryptxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/vb/decryptxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementAsymmetric/vb/decryptxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementX509/vb/decryptxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementX509/vb/decryptxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementX509/vb/decryptxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToDecryptXMLElementX509/vb/decryptxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/vb/encryptxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/vb/encryptxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/vb/encryptxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementAsymmetric/vb/encryptxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/vb/encryptxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/vb/encryptxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/vb/encryptxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementSymmetric/vb/encryptxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementX509/vb/encryptxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementX509/vb/encryptxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementX509/vb/encryptxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToEncryptXMLElementX509/vb/encryptxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToSignXMLDocumentRSA/vb/signxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToSignXMLDocumentRSA/vb/signxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToSignXMLDocumentRSA/vb/signxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToSignXMLDocumentRSA/vb/signxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/vb/verifyxml.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/vb/verifyxml.vbproj index 227d2199c9161..6bd19fdd677f6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/vb/verifyxml.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/HowToVerifyXMLDocumentRSA/vb/verifyxml.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.cancellation.callback/vb/vb.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.cancellation.callback/vb/vb.vbproj index 8b61c63d81ac5..d79399c343e62 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.cancellation.callback/vb/vb.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.cancellation.callback/vb/vb.vbproj @@ -2,7 +2,7 @@ vb - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.conversion/vb/Project.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.conversion/vb/Project.vbproj index b76fb495a366d..68d9bf17ede53 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.conversion/vb/Project.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.conversion/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.disposable/vb/using.vb.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.disposable/vb/using.vb.vbproj index 80f5c922534e4..8a2034d8c7abf 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.disposable/vb/using.vb.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.disposable/vb/using.vb.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable using.vb.TryExplicitCatchFinally diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.formatting.overview/vb/Formatting-Overview.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.formatting.overview/vb/Formatting-Overview.vbproj index 028553694a8cd..e96eed0f725c9 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.formatting.overview/vb/Formatting-Overview.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.formatting.overview/vb/Formatting-Overview.vbproj @@ -3,7 +3,7 @@ Exe Formatting_Overview - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.generics.overview/vb/Project.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.generics.overview/vb/Project.vbproj index 2acd6fc5b6a03..68d9bf17ede53 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.generics.overview/vb/Project.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.generics.overview/vb/Project.vbproj @@ -2,7 +2,7 @@ Library - net6.0 + net8.0 - \ No newline at end of file + diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.globalization/vb/globalization.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.globalization/vb/globalization.vbproj index e4d31a3c24eff..345977621640f 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.globalization/vb/globalization.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.globalization/vb/globalization.vbproj @@ -3,7 +3,7 @@ Exe Globalization - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.regex.language.options/vb/Project.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.regex.language.options/vb/Project.vbproj index b83f0211b39c5..f0609045a05b6 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.regex.language.options/vb/Project.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/conceptual.regex.language.options/vb/Project.vbproj @@ -2,6 +2,6 @@ Library - net6.0 - + net8.0 + diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/generatingahash/generatingahash.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/generatingahash/generatingahash.vbproj index 41f1d5ad4b264..a269962b552f0 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/generatingahash/generatingahash.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/generatingahash/generatingahash.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR/verifyingahash/vb/verifyingahash.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR/verifyingahash/vb/verifyingahash.vbproj index 41f1d5ad4b264..a269962b552f0 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR/verifyingahash/vb/verifyingahash.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR/verifyingahash/vb/verifyingahash.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.idisposable/vb/project.vb.vbproj b/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.idisposable/vb/project.vb.vbproj index 1d22a36997079..af31fefa23aa5 100644 --- a/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.idisposable/vb/project.vb.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_CLR_System/system.idisposable/vb/project.vb.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 enable diff --git a/samples/snippets/visualbasic/VS_Snippets_Misc/cancellation/vb/cancellation.vbproj b/samples/snippets/visualbasic/VS_Snippets_Misc/cancellation/vb/cancellation.vbproj index 41f1d5ad4b264..a269962b552f0 100644 --- a/samples/snippets/visualbasic/VS_Snippets_Misc/cancellation/vb/cancellation.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_Misc/cancellation/vb/cancellation.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_Misc/plinq/vb/plinq.vbproj b/samples/snippets/visualbasic/VS_Snippets_Misc/plinq/vb/plinq.vbproj index 260a7e0372b19..cc7b97befd9ab 100644 --- a/samples/snippets/visualbasic/VS_Snippets_Misc/plinq/vb/plinq.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_Misc/plinq/vb/plinq.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 plinq.Program diff --git a/samples/snippets/visualbasic/VS_Snippets_Misc/tpl_parallel/vb/simpleforeach.vbproj b/samples/snippets/visualbasic/VS_Snippets_Misc/tpl_parallel/vb/simpleforeach.vbproj index c6abae001785d..58990cd569d25 100644 --- a/samples/snippets/visualbasic/VS_Snippets_Misc/tpl_parallel/vb/simpleforeach.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_Misc/tpl_parallel/vb/simpleforeach.vbproj @@ -1,7 +1,7 @@ - net6.0 + net8.0 - - \ No newline at end of file + + diff --git a/samples/snippets/visualbasic/VS_Snippets_Misc/tpldataflow_readwrite/vb/dataflowreadwrite.vbproj b/samples/snippets/visualbasic/VS_Snippets_Misc/tpldataflow_readwrite/vb/dataflowreadwrite.vbproj index 4a1db8fceb693..ad5a3d640d702 100644 --- a/samples/snippets/visualbasic/VS_Snippets_Misc/tpldataflow_readwrite/vb/dataflowreadwrite.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_Misc/tpldataflow_readwrite/vb/dataflowreadwrite.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 - \ No newline at end of file + diff --git a/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthrough/vb/dynamicwalkthrough.vbproj b/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthrough/vb/dynamicwalkthrough.vbproj index 5c4cc84b7b595..51a227d5c4848 100644 --- a/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthrough/vb/dynamicwalkthrough.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthrough/vb/dynamicwalkthrough.vbproj @@ -3,7 +3,7 @@ Exe DynamicSample - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthroughironpython/vb/ironpythonsample.vbproj b/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthroughironpython/vb/ironpythonsample.vbproj index 65a3cfb431084..e4f9bbd7e5424 100644 --- a/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthroughironpython/vb/ironpythonsample.vbproj +++ b/samples/snippets/visualbasic/VS_Snippets_VBCSharp/vbdynamicwalkthroughironpython/vb/ironpythonsample.vbproj @@ -3,7 +3,7 @@ Exe DynamicIronPythonSample - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/how-to/conversions/conversions.vbproj b/samples/snippets/visualbasic/how-to/conversions/conversions.vbproj index 41f1d5ad4b264..a269962b552f0 100644 --- a/samples/snippets/visualbasic/how-to/conversions/conversions.vbproj +++ b/samples/snippets/visualbasic/how-to/conversions/conversions.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/programming-guide/dynamic-linq-expression-trees/dynamic-linq-expression-trees.vbproj b/samples/snippets/visualbasic/programming-guide/dynamic-linq-expression-trees/dynamic-linq-expression-trees.vbproj index cfa81bd48c7f0..e4e0801e8226c 100644 --- a/samples/snippets/visualbasic/programming-guide/dynamic-linq-expression-trees/dynamic-linq-expression-trees.vbproj +++ b/samples/snippets/visualbasic/programming-guide/dynamic-linq-expression-trees/dynamic-linq-expression-trees.vbproj @@ -3,7 +3,7 @@ Exe dynamic_linq_expression_trees - net6.0 + net8.0 diff --git a/samples/snippets/visualbasic/programming-guide/language-features/data-types/named-tuples/tupleinfer.vbproj b/samples/snippets/visualbasic/programming-guide/language-features/data-types/named-tuples/tupleinfer.vbproj index 235bee113c6f9..622470452fff4 100644 --- a/samples/snippets/visualbasic/programming-guide/language-features/data-types/named-tuples/tupleinfer.vbproj +++ b/samples/snippets/visualbasic/programming-guide/language-features/data-types/named-tuples/tupleinfer.vbproj @@ -2,8 +2,8 @@ Exe - net6.0 + net8.0 15.3 - + diff --git a/samples/snippets/visualbasic/programming-guide/language-features/data-types/tuples/tuples.vbproj b/samples/snippets/visualbasic/programming-guide/language-features/data-types/tuples/tuples.vbproj index 9a84a9450ef1d..d721a8a494147 100644 --- a/samples/snippets/visualbasic/programming-guide/language-features/data-types/tuples/tuples.vbproj +++ b/samples/snippets/visualbasic/programming-guide/language-features/data-types/tuples/tuples.vbproj @@ -1,7 +1,7 @@ Exe - net6.0 + net8.0 On diff --git a/samples/snippets/visualbasic/programming-guide/language-features/passing-named-arguments/namedargs.vbproj b/samples/snippets/visualbasic/programming-guide/language-features/passing-named-arguments/namedargs.vbproj index fe22db6bef5ca..9baa01558d3df 100644 --- a/samples/snippets/visualbasic/programming-guide/language-features/passing-named-arguments/namedargs.vbproj +++ b/samples/snippets/visualbasic/programming-guide/language-features/passing-named-arguments/namedargs.vbproj @@ -2,7 +2,7 @@ Exe - net6.0 + net8.0 15.5