diff --git a/src/.editorconfig b/src/.editorconfig index 4c90807d..24f3ec46 100644 --- a/src/.editorconfig +++ b/src/.editorconfig @@ -6,6 +6,15 @@ dotnet_diagnostic.CA1031.severity = suggestion # CA1062: Validate arguments of public methods dotnet_diagnostic.CA1062.severity = none +# CA1859: Use concrete types when possible for improved performance +dotnet_diagnostic.CA1859.severity = none + +# CA1860: Avoid using 'Enumerable.Any()' extension method +dotnet_diagnostic.CA1860.severity = none + +# CA1863: Use 'CompositeFormat' +dotnet_diagnostic.CA1863.severity = none + # CA2007: Consider calling ConfigureAwait on the awaited task dotnet_diagnostic.CA2007.severity = suggestion diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/BookLibrary.Library.Applications.Test.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/BookLibrary.Library.Applications.Test.csproj index 5b6edd5c..82b742e9 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/BookLibrary.Library.Applications.Test.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications.Test/BookLibrary.Library.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.BookLibrary.Library.Applications Waf.BookLibrary.Library.Applications.Test diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/BookLibrary.Library.Applications.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/BookLibrary.Library.Applications.csproj index 31f91185..17402a0f 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/BookLibrary.Library.Applications.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Applications/BookLibrary.Library.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.BookLibrary.Library.Applications Waf.BookLibrary.Library.Applications diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookLibrary.Library.Domain.Test.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookLibrary.Library.Domain.Test.csproj index 490f690c..c374bbfb 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookLibrary.Library.Domain.Test.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain.Test/BookLibrary.Library.Domain.Test.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Test.BookLibrary.Library.Domain Waf.BookLibrary.Library.Domain.Test diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/BookLibrary.Library.Domain.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/BookLibrary.Library.Domain.csproj index 2440515d..770d8374 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/BookLibrary.Library.Domain.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Domain/BookLibrary.Library.Domain.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Waf.BookLibrary.Library.Domain Waf.BookLibrary.Library.Domain diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation.Test/BookLibrary.Library.Presentation.Test.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation.Test/BookLibrary.Library.Presentation.Test.csproj index 0cf293d2..f9681f78 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation.Test/BookLibrary.Library.Presentation.Test.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation.Test/BookLibrary.Library.Presentation.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.BookLibrary.Library.Presentation Waf.BookLibrary.Library.Presentation.Test true diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/BookLibrary.Library.Presentation.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/BookLibrary.Library.Presentation.csproj index 17896929..c01f0883 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/BookLibrary.Library.Presentation.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Library.Presentation/BookLibrary.Library.Presentation.csproj @@ -1,7 +1,7 @@  WinExe - net6.0-windows + net8.0-windows Waf.BookLibrary.Library.Presentation BookLibrary true diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/BookLibrary.Reporting.Applications.Test.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/BookLibrary.Reporting.Applications.Test.csproj index 8461e288..d288b163 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/BookLibrary.Reporting.Applications.Test.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications.Test/BookLibrary.Reporting.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.BookLibrary.Reporting.Applications Waf.BookLibrary.Reporting.Applications.Test diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/BookLibrary.Reporting.Applications.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/BookLibrary.Reporting.Applications.csproj index 4e50a8cc..e5f2f3f7 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/BookLibrary.Reporting.Applications.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Applications/BookLibrary.Reporting.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.BookLibrary.Reporting.Applications Waf.BookLibrary.Reporting.Applications diff --git a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/BookLibrary.Reporting.Presentation.csproj b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/BookLibrary.Reporting.Presentation.csproj index 483aee39..599da667 100644 --- a/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/BookLibrary.Reporting.Presentation.csproj +++ b/src/System.Waf/Samples/BookLibrary/BookLibrary.Reporting.Presentation/BookLibrary.Reporting.Presentation.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.BookLibrary.Reporting.Presentation Waf.BookLibrary.Reporting.Presentation true diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/AddressBook.Interfaces.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/AddressBook.Interfaces.csproj index b2b20b44..2f7b9504 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/AddressBook.Interfaces.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Interfaces/AddressBook.Interfaces.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Waf.InformationManager.AddressBook.Interfaces Waf.InformationManager.AddressBook.Interfaces true diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications.Test/AddressBook.Modules.Applications.Test.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications.Test/AddressBook.Modules.Applications.Test.csproj index e589d899..8db2de6f 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications.Test/AddressBook.Modules.Applications.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications.Test/AddressBook.Modules.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.AddressBook.Modules.Applications Waf.InformationManager.AddressBook.Modules.Applications.Test diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/AddressBook.Modules.Applications.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/AddressBook.Modules.Applications.csproj index 33516ecf..d279238f 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/AddressBook.Modules.Applications.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Applications/AddressBook.Modules.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.AddressBook.Modules.Applications Waf.InformationManager.AddressBook.Modules.Applications diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressBook.Modules.Domain.Test.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressBook.Modules.Domain.Test.csproj index 21a71921..789b2e00 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressBook.Modules.Domain.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain.Test/AddressBook.Modules.Domain.Test.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Test.InformationManager.AddressBook.Modules.Domain Waf.InformationManager.AddressBook.Modules.Domain.Test diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBook.Modules.Domain.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBook.Modules.Domain.csproj index 8b9df7e2..01967db9 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBook.Modules.Domain.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Domain/AddressBook.Modules.Domain.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Waf.InformationManager.AddressBook.Modules.Domain Waf.InformationManager.AddressBook.Modules.Domain diff --git a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/AddressBook.Modules.Presentation.csproj b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/AddressBook.Modules.Presentation.csproj index e196c9e0..f5cc896e 100644 --- a/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/AddressBook.Modules.Presentation.csproj +++ b/src/System.Waf/Samples/InformationManager/AddressBook.Modules.Presentation/AddressBook.Modules.Presentation.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.AddressBook.Modules.Presentation Waf.InformationManager.AddressBook.Modules.Presentation true diff --git a/src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj b/src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj index 3db679e0..ddf79f31 100644 --- a/src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj +++ b/src/System.Waf/Samples/InformationManager/Assembler/Assembler.csproj @@ -1,7 +1,7 @@  WinExe - net6.0-windows + net8.0-windows Waf.InformationManager.Assembler InformationManager true diff --git a/src/System.Waf/Samples/InformationManager/Common.Applications.Test/Common.Applications.Test.csproj b/src/System.Waf/Samples/InformationManager/Common.Applications.Test/Common.Applications.Test.csproj index fc9914f0..ea1c12ba 100644 --- a/src/System.Waf/Samples/InformationManager/Common.Applications.Test/Common.Applications.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/Common.Applications.Test/Common.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.Common.Applications Waf.InformationManager.Common.Applications.Test diff --git a/src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj b/src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj index 247957be..6656c7a0 100644 --- a/src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj +++ b/src/System.Waf/Samples/InformationManager/Common.Applications/Common.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.Common.Applications Waf.InformationManager.Common.Applications true diff --git a/src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj b/src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj index d6732356..a84a88aa 100644 --- a/src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/Common.Domain.Test/Common.Domain.Test.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Test.InformationManager.Common.Domain Waf.InformationManager.Common.Domain.Test diff --git a/src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj b/src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj index 7916e04c..91d7d337 100644 --- a/src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj +++ b/src/System.Waf/Samples/InformationManager/Common.Presentation/Common.Presentation.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.Common.Presentation Waf.InformationManager.Common.Presentation true diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications.Test/EmailClient.Modules.Applications.Test.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications.Test/EmailClient.Modules.Applications.Test.csproj index 3046623f..603ae2f0 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications.Test/EmailClient.Modules.Applications.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications.Test/EmailClient.Modules.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.EmailClient.Modules.Applications Waf.InformationManager.EmailClient.Modules.Applications.Test diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/EmailClient.Modules.Applications.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/EmailClient.Modules.Applications.csproj index dabaf0c5..f31b64fa 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/EmailClient.Modules.Applications.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Applications/EmailClient.Modules.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.EmailClient.Modules.Applications Waf.InformationManager.EmailClient.Modules.Applications diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/EmailClient.Modules.Domain.Test.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/EmailClient.Modules.Domain.Test.csproj index fac625da..387c2e42 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/EmailClient.Modules.Domain.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain.Test/EmailClient.Modules.Domain.Test.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Test.InformationManager.EmailClient.Modules.Domain Waf.InformationManager.EmailClient.Modules.Domain.Test diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/EmailClient.Modules.Domain.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/EmailClient.Modules.Domain.csproj index 3ef5d3b3..44f6dca2 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/EmailClient.Modules.Domain.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Domain/EmailClient.Modules.Domain.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Waf.InformationManager.EmailClient.Modules.Domain Waf.InformationManager.EmailClient.Modules.Domain diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation.Test/EmailClient.Modules.Presentation.Test.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation.Test/EmailClient.Modules.Presentation.Test.csproj index a593a271..7f002fba 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation.Test/EmailClient.Modules.Presentation.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation.Test/EmailClient.Modules.Presentation.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.EmailClient.Modules.Presentation Waf.InformationManager.EmailClient.Modules.Presentation.Test true diff --git a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/EmailClient.Modules.Presentation.csproj b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/EmailClient.Modules.Presentation.csproj index 3d6b26a6..89130e65 100644 --- a/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/EmailClient.Modules.Presentation.csproj +++ b/src/System.Waf/Samples/InformationManager/EmailClient.Modules.Presentation/EmailClient.Modules.Presentation.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.EmailClient.Modules.Presentation Waf.InformationManager.EmailClient.Modules.Presentation true diff --git a/src/System.Waf/Samples/InformationManager/Infrastructure.Interfaces/Infrastructure.Interfaces.csproj b/src/System.Waf/Samples/InformationManager/Infrastructure.Interfaces/Infrastructure.Interfaces.csproj index a4e840db..861a0525 100644 --- a/src/System.Waf/Samples/InformationManager/Infrastructure.Interfaces/Infrastructure.Interfaces.csproj +++ b/src/System.Waf/Samples/InformationManager/Infrastructure.Interfaces/Infrastructure.Interfaces.csproj @@ -1,6 +1,6 @@  - net6.0 + net8.0 Waf.InformationManager.Infrastructure.Interfaces Waf.InformationManager.Infrastructure.Interfaces true diff --git a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications.Test/Infrastructure.Modules.Applications.Test.csproj b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications.Test/Infrastructure.Modules.Applications.Test.csproj index 8fbfa33b..131358ac 100644 --- a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications.Test/Infrastructure.Modules.Applications.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications.Test/Infrastructure.Modules.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.Infrastructure.Modules.Applications Waf.InformationManager.Infrastructure.Modules.Applications.Test diff --git a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Infrastructure.Modules.Applications.csproj b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Infrastructure.Modules.Applications.csproj index b037e805..16e4397f 100644 --- a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Infrastructure.Modules.Applications.csproj +++ b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Applications/Infrastructure.Modules.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.Infrastructure.Modules.Applications Waf.InformationManager.Infrastructure.Modules.Applications diff --git a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation.Test/Infrastructure.Modules.Presentation.Test.csproj b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation.Test/Infrastructure.Modules.Presentation.Test.csproj index c6c009e0..a2a4a4c6 100644 --- a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation.Test/Infrastructure.Modules.Presentation.Test.csproj +++ b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation.Test/Infrastructure.Modules.Presentation.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.InformationManager.Infrastructure.Modules.Presentation Waf.InformationManager.Infrastructure.Modules.Presentation.Test true diff --git a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Infrastructure.Modules.Presentation.csproj b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Infrastructure.Modules.Presentation.csproj index 9c7d0e6c..5517455a 100644 --- a/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Infrastructure.Modules.Presentation.csproj +++ b/src/System.Waf/Samples/InformationManager/Infrastructure.Modules.Presentation/Infrastructure.Modules.Presentation.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.InformationManager.Infrastructure.Modules.Presentation Waf.InformationManager.Infrastructure.Modules.Presentation true diff --git a/src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj b/src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj index d50a01cf..e6c4af70 100644 --- a/src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj +++ b/src/System.Waf/Samples/Localization/LocalizationSample/LocalizationSample.csproj @@ -1,7 +1,7 @@  WinExe - net6.0-windows + net8.0-windows true Waf Localization Sample enable diff --git a/src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj b/src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj index b162cf71..98939207 100644 --- a/src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj +++ b/src/System.Waf/Samples/Writer/Writer.Applications.Test/Writer.Applications.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.Writer.Applications Waf.Writer.Applications.Test diff --git a/src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj b/src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj index 5b7e7e24..a3e1bc83 100644 --- a/src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj +++ b/src/System.Waf/Samples/Writer/Writer.Applications/Writer.Applications.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Waf.Writer.Applications Waf.Writer.Applications diff --git a/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj b/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj index 692a8931..1a029558 100644 --- a/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj +++ b/src/System.Waf/Samples/Writer/Writer.Presentation.Test/Writer.Presentation.Test.csproj @@ -1,6 +1,6 @@  - net6.0-windows + net8.0-windows Test.Writer.Presentation Waf.Writer.Presentation.Test true diff --git a/src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj b/src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj index 93172ea0..90acf82f 100644 --- a/src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj +++ b/src/System.Waf/Samples/Writer/Writer.Presentation/Writer.Presentation.csproj @@ -1,7 +1,7 @@  WinExe - net6.0-windows + net8.0-windows Waf.Writer.Presentation Writer true