From bfeda570720e7a3885f1006413650f10932a541a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tommy=20=C3=96man?= Date: Wed, 25 Jun 2025 09:23:49 +0200 Subject: [PATCH] =?UTF-8?q?Korrigerat=20.net=20niv=C3=A5n?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Async/App.config | 6 +-- Async/Async.csproj | 3 +- Async/Properties/Resources.Designer.cs | 44 ++++++++----------- Async/Properties/Settings.Designer.cs | 22 ++++------ AsyncProgram/App.config | 6 +-- AsyncProgram/AsyncProgram.csproj | 3 +- BooksLambda/App.config | 6 +-- BooksLambda/BooksLambda.csproj | 3 +- Dynamics/App.config | 6 +-- Dynamics/Dynamics.csproj | 3 +- Exceptionhandling/App.config | 6 +-- Exceptionhandling/Exceptionhandling.csproj | 3 +- ExtensionMethods/App.config | 6 +-- ExtensionMethods/ExtensionMethods.csproj | 3 +- Linq_examples/App.config | 6 +-- Linq_examples/Linq_examples.csproj | 3 +- Nullable_types/App.config | 6 +-- Nullable_types/Nullable_types.csproj | 3 +- TrainingAdvancedTechniques/App.config | 6 +-- .../TrainingAdvancedTechniques.csproj | 3 +- VideoEnc/App.config | 6 +-- VideoEnc/VideoEnc.csproj | 3 +- 22 files changed, 77 insertions(+), 79 deletions(-) diff --git a/Async/App.config b/Async/App.config index 731f6de..4bfa005 100644 --- a/Async/App.config +++ b/Async/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Async/Async.csproj b/Async/Async.csproj index 0917358..1e00d00 100644 --- a/Async/Async.csproj +++ b/Async/Async.csproj @@ -8,12 +8,13 @@ WinExe Async Async - v4.6.1 + v4.8 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true true + AnyCPU diff --git a/Async/Properties/Resources.Designer.cs b/Async/Properties/Resources.Designer.cs index 038484c..58a91da 100644 --- a/Async/Properties/Resources.Designer.cs +++ b/Async/Properties/Resources.Designer.cs @@ -8,10 +8,10 @@ // //------------------------------------------------------------------------------ -namespace Async.Properties -{ - - +namespace Async.Properties { + using System; + + /// /// A strongly-typed resource class, for looking up localized strings, etc. /// @@ -19,51 +19,43 @@ namespace Async.Properties // class via a tool like ResGen or Visual Studio. // To add or remove a member, edit your .ResX file then rerun ResGen // with the /str option, or rebuild your VS project. - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - internal class Resources - { - + internal class Resources { + private static global::System.Resources.ResourceManager resourceMan; - + private static global::System.Globalization.CultureInfo resourceCulture; - + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] - internal Resources() - { + internal Resources() { } - + /// /// Returns the cached ResourceManager instance used by this class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Resources.ResourceManager ResourceManager - { - get - { - if ((resourceMan == null)) - { + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Async.Properties.Resources", typeof(Resources).Assembly); resourceMan = temp; } return resourceMan; } } - + /// /// Overrides the current thread's CurrentUICulture property for all /// resource lookups using this strongly typed resource class. /// [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] - internal static global::System.Globalization.CultureInfo Culture - { - get - { + internal static global::System.Globalization.CultureInfo Culture { + get { return resourceCulture; } - set - { + set { resourceCulture = value; } } diff --git a/Async/Properties/Settings.Designer.cs b/Async/Properties/Settings.Designer.cs index 22f6c13..3b7f175 100644 --- a/Async/Properties/Settings.Designer.cs +++ b/Async/Properties/Settings.Designer.cs @@ -8,21 +8,17 @@ // //------------------------------------------------------------------------------ -namespace Async.Properties -{ - - +namespace Async.Properties { + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] - [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] - internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase - { - + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.14.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); - - public static Settings Default - { - get - { + + public static Settings Default { + get { return defaultInstance; } } diff --git a/AsyncProgram/App.config b/AsyncProgram/App.config index 731f6de..4bfa005 100644 --- a/AsyncProgram/App.config +++ b/AsyncProgram/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/AsyncProgram/AsyncProgram.csproj b/AsyncProgram/AsyncProgram.csproj index f938fce..e740cef 100644 --- a/AsyncProgram/AsyncProgram.csproj +++ b/AsyncProgram/AsyncProgram.csproj @@ -8,10 +8,11 @@ Exe AsyncProgram AsyncProgram - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/BooksLambda/App.config b/BooksLambda/App.config index 731f6de..4bfa005 100644 --- a/BooksLambda/App.config +++ b/BooksLambda/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/BooksLambda/BooksLambda.csproj b/BooksLambda/BooksLambda.csproj index b5af9d9..717f013 100644 --- a/BooksLambda/BooksLambda.csproj +++ b/BooksLambda/BooksLambda.csproj @@ -8,10 +8,11 @@ Exe BooksLambda BooksLambda - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/Dynamics/App.config b/Dynamics/App.config index 731f6de..4bfa005 100644 --- a/Dynamics/App.config +++ b/Dynamics/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Dynamics/Dynamics.csproj b/Dynamics/Dynamics.csproj index f8e7a43..c3c7b5b 100644 --- a/Dynamics/Dynamics.csproj +++ b/Dynamics/Dynamics.csproj @@ -8,10 +8,11 @@ Exe Dynamics Dynamics - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/Exceptionhandling/App.config b/Exceptionhandling/App.config index 731f6de..4bfa005 100644 --- a/Exceptionhandling/App.config +++ b/Exceptionhandling/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Exceptionhandling/Exceptionhandling.csproj b/Exceptionhandling/Exceptionhandling.csproj index 545dd9f..0beb980 100644 --- a/Exceptionhandling/Exceptionhandling.csproj +++ b/Exceptionhandling/Exceptionhandling.csproj @@ -8,10 +8,11 @@ Exe Exceptionhandling Exceptionhandling - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/ExtensionMethods/App.config b/ExtensionMethods/App.config index 731f6de..4bfa005 100644 --- a/ExtensionMethods/App.config +++ b/ExtensionMethods/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/ExtensionMethods/ExtensionMethods.csproj b/ExtensionMethods/ExtensionMethods.csproj index 13d9f0a..4c88759 100644 --- a/ExtensionMethods/ExtensionMethods.csproj +++ b/ExtensionMethods/ExtensionMethods.csproj @@ -8,10 +8,11 @@ Exe ExtensionMethods ExtensionMethods - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/Linq_examples/App.config b/Linq_examples/App.config index 731f6de..4bfa005 100644 --- a/Linq_examples/App.config +++ b/Linq_examples/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Linq_examples/Linq_examples.csproj b/Linq_examples/Linq_examples.csproj index 6fada7f..2738d5b 100644 --- a/Linq_examples/Linq_examples.csproj +++ b/Linq_examples/Linq_examples.csproj @@ -8,10 +8,11 @@ Exe Linq_examples Linq_examples - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/Nullable_types/App.config b/Nullable_types/App.config index 731f6de..4bfa005 100644 --- a/Nullable_types/App.config +++ b/Nullable_types/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/Nullable_types/Nullable_types.csproj b/Nullable_types/Nullable_types.csproj index 9ca2cac..edcccf0 100644 --- a/Nullable_types/Nullable_types.csproj +++ b/Nullable_types/Nullable_types.csproj @@ -8,10 +8,11 @@ Exe Nullable_types Nullable_types - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/TrainingAdvancedTechniques/App.config b/TrainingAdvancedTechniques/App.config index 731f6de..4bfa005 100644 --- a/TrainingAdvancedTechniques/App.config +++ b/TrainingAdvancedTechniques/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/TrainingAdvancedTechniques/TrainingAdvancedTechniques.csproj b/TrainingAdvancedTechniques/TrainingAdvancedTechniques.csproj index dd3af61..6e245c0 100644 --- a/TrainingAdvancedTechniques/TrainingAdvancedTechniques.csproj +++ b/TrainingAdvancedTechniques/TrainingAdvancedTechniques.csproj @@ -8,10 +8,11 @@ Exe TrainingAdvancedTechniques TrainingAdvancedTechniques - v4.6.1 + v4.8 512 true true + AnyCPU diff --git a/VideoEnc/App.config b/VideoEnc/App.config index 731f6de..4bfa005 100644 --- a/VideoEnc/App.config +++ b/VideoEnc/App.config @@ -1,6 +1,6 @@ - + - + - \ No newline at end of file + diff --git a/VideoEnc/VideoEnc.csproj b/VideoEnc/VideoEnc.csproj index 9f71c8d..58836c9 100644 --- a/VideoEnc/VideoEnc.csproj +++ b/VideoEnc/VideoEnc.csproj @@ -8,10 +8,11 @@ Exe VideoEnc VideoEnc - v4.6.1 + v4.8 512 true true + AnyCPU