From 9555a14ddfc2493fafaff63b381d2ffde4e83fb5 Mon Sep 17 00:00:00 2001 From: Nitsch Alexander Date: Wed, 10 Aug 2022 14:39:22 +0200 Subject: [PATCH 1/2] Update to .NET6 --- .../YuriyGuts.RegexBuilder.TestApp.csproj | 55 ++-------------- .../YuriyGuts.RegexBuilder.Tests.csproj | 64 ++++--------------- .../YuriyGuts.RegexBuilder.csproj | 64 ++----------------- 3 files changed, 24 insertions(+), 159 deletions(-) diff --git a/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj b/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj index 6a64456..57463b0 100644 --- a/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj +++ b/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj @@ -1,58 +1,17 @@ - - + - Debug + net6.0 x86 - 8.0.30703 - 2.0 - {DCD71530-7D6D-49E0-8893-CB119B358A57} Exe - Properties YuriyGuts.RegexBuilder.Tests - YuriyGuts.RegexBuilder.TestApp - v4.0 - Client - 512 + false - - x86 - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - x86 - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - + - - {A8F68F40-BDBD-4C68-A91A-A11B25682846} - YuriyGuts.RegexBuilder - + + all + - - \ No newline at end of file diff --git a/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj b/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj index 373fa8a..7965641 100644 --- a/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj +++ b/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj @@ -1,41 +1,12 @@ - - + - Debug - AnyCPU - - - 2.0 - {6B67AA82-B0A9-4DF3-8556-026903159C6F} + net6.0 Library - Properties - YuriyGuts.RegexBuilder.Tests - YuriyGuts.RegexBuilder.Tests - v4.0 - 512 - {3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + false - - + 3.5 @@ -45,27 +16,14 @@ - - - - - - - - + - - {A8F68F40-BDBD-4C68-A91A-A11B25682846} - YuriyGuts.RegexBuilder - + + all + + + + - - \ No newline at end of file diff --git a/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj b/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj index 0cac5db..c3f88b0 100644 --- a/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj +++ b/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj @@ -1,72 +1,20 @@ - - + - Debug - AnyCPU - 8.0.30703 - 2.0 - {A8F68F40-BDBD-4C68-A91A-A11B25682846} + net6.0 Library - Properties - YuriyGuts.RegexBuilder - YuriyGuts.RegexBuilder - v4.0 - 512 + false - true - full - false ..\~BuildOutput\Debug\ - DEBUG;TRACE - prompt - 4 - pdbonly - true ..\~BuildOutput\Release\ - TRACE - prompt - 4 true AllRules.ruleset - - + + all + - - - - - - - - - - - - - - - - - - - - - - - - - echo F|xcopy /y "$(TargetPath)" "$(TargetDir)..\..\NuGetPackage\lib\net40\$(TargetFileName)" - - \ No newline at end of file From b72543698c9b25505aa2d575c697c8c632f4a5b0 Mon Sep 17 00:00:00 2001 From: Nitsch Alexander Date: Wed, 10 Aug 2022 15:14:14 +0200 Subject: [PATCH 2/2] Change target framework to .netstandard 2.0 --- .../YuriyGuts.RegexBuilder.TestApp.csproj | 8 +------- .../YuriyGuts.RegexBuilder.Tests.csproj | 11 +---------- .../YuriyGuts.RegexBuilder.csproj | 10 ++++------ 3 files changed, 6 insertions(+), 23 deletions(-) diff --git a/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj b/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj index 57463b0..36ab5c0 100644 --- a/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj +++ b/src/YuriyGuts.RegexBuilder.TestApp/YuriyGuts.RegexBuilder.TestApp.csproj @@ -1,17 +1,11 @@  - net6.0 x86 - Exe YuriyGuts.RegexBuilder.Tests false + net6.0 - - - all - - \ No newline at end of file diff --git a/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj b/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj index 7965641..d61443a 100644 --- a/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj +++ b/src/YuriyGuts.RegexBuilder.Tests/YuriyGuts.RegexBuilder.Tests.csproj @@ -1,15 +1,9 @@  - net6.0 Library false + net6.0 - - - - 3.5 - - False @@ -19,9 +13,6 @@ - - all - diff --git a/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj b/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj index c3f88b0..8156ac6 100644 --- a/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj +++ b/src/YuriyGuts.RegexBuilder/YuriyGuts.RegexBuilder.csproj @@ -1,8 +1,11 @@  - net6.0 Library false + true + 1.0.1 + Support .netstandard 2.0 + netstandard2.0 ..\~BuildOutput\Debug\ @@ -12,9 +15,4 @@ true AllRules.ruleset - - - all - - \ No newline at end of file