From 5131f3a4d9543e60b3e3ab8a41c8faefc0c4ba9c Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:00:06 -0600 Subject: [PATCH 1/9] Ignore per-user folder from Visual Studio 2015+ --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 21fee68..c74c4a3 100644 --- a/.gitignore +++ b/.gitignore @@ -5,6 +5,7 @@ *.suo *.user *.sln.docstates +.vs/ # Build results From d2dcd5dc69f7897086608460193e8be179259f2b Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:00:59 -0600 Subject: [PATCH 2/9] Update projects to .NET Framework 4.5 --- .../NBug.Destinations.AzureBlobStorage.csproj | 4 ++-- Documentation/Documentation.csproj | 4 ++-- Examples/NBug.Examples.Console/NBug.Examples.Console.csproj | 4 ++-- Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj | 4 ++-- Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj | 4 ++-- NBug.Configurator/NBug.Configurator.csproj | 4 ++-- NBug.Tests/NBug.Tests.csproj | 3 ++- 7 files changed, 14 insertions(+), 13 deletions(-) diff --git a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj index 0602f40..c763de8 100644 --- a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj +++ b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj @@ -9,9 +9,9 @@ Properties NBug.Destinations.AzureBlobStorage NBug.Destinations.AzureBlobStorage - v4.0 + v4.5 512 - Client + true diff --git a/Documentation/Documentation.csproj b/Documentation/Documentation.csproj index 5b068ef..624d635 100644 --- a/Documentation/Documentation.csproj +++ b/Documentation/Documentation.csproj @@ -10,8 +10,8 @@ Properties Documentation Documentation - v4.0 - Client + v4.5 + 512 diff --git a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj index f0fc671..926d707 100644 --- a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj +++ b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj @@ -10,8 +10,8 @@ Properties NBug.Examples.Console NBug.Examples.Console - v4.0 - Client + v4.5 + 512 diff --git a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj index cbde959..a57e96c 100644 --- a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj +++ b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj @@ -10,8 +10,8 @@ Properties NBug.Examples.WPF NBug.Examples.WPF - v4.0 - Client + v4.5 + 512 {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index 8538a42..73d0ece 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -10,8 +10,8 @@ Properties NBug.Examples.WinForms NBug.Examples.WinForms - v4.0 - Client + v4.5 + 512 diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index 341133e..3b0a505 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -10,8 +10,8 @@ Properties NBug.Configurator NBug.Configurator - v4.0 - Client + v4.5 + 512 diff --git a/NBug.Tests/NBug.Tests.csproj b/NBug.Tests/NBug.Tests.csproj index f4c0c72..ca079db 100644 --- a/NBug.Tests/NBug.Tests.csproj +++ b/NBug.Tests/NBug.Tests.csproj @@ -10,7 +10,8 @@ Properties NBug.Tests NBug.Tests - v4.0 + v4.5 + 512 From 0a65d32bc26942dc27f067a9fbc2742e26dd399e Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:08:35 -0600 Subject: [PATCH 3/9] Switch to PackageReference --- .../NBug.Destinations.AzureBlobStorage.csproj | 29 +++++-------------- .../packages.config | 9 ------ Documentation/Documentation.csproj | 1 + .../NBug.Examples.Console.csproj | 1 + .../NBug.Examples.WPF.csproj | 1 + .../NBug.Examples.WinForms.csproj | 1 + NBug.Configurator/NBug.Configurator.csproj | 1 + NBug.Tests/NBug.Tests.csproj | 21 ++++---------- NBug.Tests/packages.config | 7 ----- 9 files changed, 19 insertions(+), 52 deletions(-) delete mode 100644 Destinations/NBug.Destinations.AzureBlobStorage/packages.config delete mode 100644 NBug.Tests/packages.config diff --git a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj index c763de8..ad2b6b1 100644 --- a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj +++ b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj @@ -12,6 +12,7 @@ v4.5 512 + PackageReference true @@ -39,35 +40,22 @@ Signing.snk - - ..\..\packages\Microsoft.Data.Edm.5.2.0\lib\net40\Microsoft.Data.Edm.dll - True - - - ..\..\packages\Microsoft.Data.OData.5.2.0\lib\net40\Microsoft.Data.OData.dll - True - - - ..\..\packages\Microsoft.WindowsAzure.ConfigurationManager.1.8.0.0\lib\net35-full\Microsoft.WindowsAzure.Configuration.dll - True - - - ..\..\packages\WindowsAzure.Storage.2.0.5.1\lib\net40\Microsoft.WindowsAzure.Storage.dll - True - - - ..\..\packages\System.Spatial.5.2.0\lib\net40\System.Spatial.dll - True - + + + + + + + @@ -80,7 +68,6 @@ - diff --git a/Destinations/NBug.Destinations.AzureBlobStorage/packages.config b/Destinations/NBug.Destinations.AzureBlobStorage/packages.config deleted file mode 100644 index f3a5e34..0000000 --- a/Destinations/NBug.Destinations.AzureBlobStorage/packages.config +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - \ No newline at end of file diff --git a/Documentation/Documentation.csproj b/Documentation/Documentation.csproj index 624d635..6185f00 100644 --- a/Documentation/Documentation.csproj +++ b/Documentation/Documentation.csproj @@ -21,6 +21,7 @@ + PackageReference true diff --git a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj index 926d707..7cf6859 100644 --- a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj +++ b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj @@ -36,6 +36,7 @@ true false true + PackageReference true diff --git a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj index a57e96c..a82a148 100644 --- a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj +++ b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj @@ -39,6 +39,7 @@ 1.0.0.%2a false true + PackageReference ..\..\NBug\resources\icon.ico diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index 73d0ece..daab670 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -36,6 +36,7 @@ true false true + PackageReference ..\..\NBug\resources\icon.ico diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index 3b0a505..bedf461 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -36,6 +36,7 @@ true false true + PackageReference true diff --git a/NBug.Tests/NBug.Tests.csproj b/NBug.Tests/NBug.Tests.csproj index ca079db..bf25145 100644 --- a/NBug.Tests/NBug.Tests.csproj +++ b/NBug.Tests/NBug.Tests.csproj @@ -13,6 +13,7 @@ v4.5 512 + PackageReference true @@ -44,10 +45,6 @@ ..\Signing.snk - - ..\packages\Moq.4.0.10827\lib\NET40\Moq.dll - True - @@ -56,14 +53,11 @@ - - ..\packages\xunit.1.9.0.1566\lib\xunit.dll - True - - - ..\packages\xunit.extensions.1.9.0.1566\lib\xunit.extensions.dll - True - + + + + + @@ -92,9 +86,6 @@ NBug - - - diff --git a/NBug.Tests/packages.config b/NBug.Tests/packages.config deleted file mode 100644 index 2df7273..0000000 --- a/NBug.Tests/packages.config +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - \ No newline at end of file From a74d717a7183813c00f2249108b7d49dc6d1b9b6 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:09:42 -0600 Subject: [PATCH 4/9] Fix violations of VSTHRD105 --- Examples/NBug.Examples.WPF/MainWindow.xaml.cs | 2 +- Examples/NBug.Examples.WinForms/MainForm.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/NBug.Examples.WPF/MainWindow.xaml.cs b/Examples/NBug.Examples.WPF/MainWindow.xaml.cs index 774214b..4a5c0e2 100644 --- a/Examples/NBug.Examples.WPF/MainWindow.xaml.cs +++ b/Examples/NBug.Examples.WPF/MainWindow.xaml.cs @@ -51,7 +51,7 @@ private void CrashButton_Click(object sender, RoutedEventArgs e) case "UI Thread: System.ArgumentException": throw new ArgumentException("Selected exception: '" + this.crashTypeComboBox.Text + "' was thrown.", "MyInvalidParameter"); case "Background Thread (Task): System.Exception": - Task.Factory.StartNew(() => { throw new Exception(); }); + Task.Run(() => { throw new Exception(); }); // Below code makes sure that exception is thrown as only after finalization, the aggregateexception is thrown. // As a side affect, unlike the normal behavior, the applicaiton will note continue its execution but will shut diff --git a/Examples/NBug.Examples.WinForms/MainForm.cs b/Examples/NBug.Examples.WinForms/MainForm.cs index 890a961..d42fa7d 100644 --- a/Examples/NBug.Examples.WinForms/MainForm.cs +++ b/Examples/NBug.Examples.WinForms/MainForm.cs @@ -52,7 +52,7 @@ private void CrashButton_Click(object sender, EventArgs e) "MyInvalidParameter", new Exception("Test inner exception for argument exception.")); case "Background Thread (Task): System.Exception": - Task.Factory.StartNew(() => { throw new Exception(); }); + Task.Run(() => { throw new Exception(); }); // Below code makes sure that exception is thrown as only after finalization, the aggregateexception is thrown. // As a side affect, unlike the normal behavior, the applicaiton will note continue its execution but will shut From deff5bd45563de15b006338bd78627f67c5cb1bc Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:10:30 -0600 Subject: [PATCH 5/9] Fix violations of VSTHRD110 --- Examples/NBug.Examples.WPF/MainWindow.xaml.cs | 2 +- Examples/NBug.Examples.WinForms/MainForm.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/NBug.Examples.WPF/MainWindow.xaml.cs b/Examples/NBug.Examples.WPF/MainWindow.xaml.cs index 4a5c0e2..96b4e9e 100644 --- a/Examples/NBug.Examples.WPF/MainWindow.xaml.cs +++ b/Examples/NBug.Examples.WPF/MainWindow.xaml.cs @@ -51,7 +51,7 @@ private void CrashButton_Click(object sender, RoutedEventArgs e) case "UI Thread: System.ArgumentException": throw new ArgumentException("Selected exception: '" + this.crashTypeComboBox.Text + "' was thrown.", "MyInvalidParameter"); case "Background Thread (Task): System.Exception": - Task.Run(() => { throw new Exception(); }); + _ = Task.Run(() => { throw new Exception(); }); // Below code makes sure that exception is thrown as only after finalization, the aggregateexception is thrown. // As a side affect, unlike the normal behavior, the applicaiton will note continue its execution but will shut diff --git a/Examples/NBug.Examples.WinForms/MainForm.cs b/Examples/NBug.Examples.WinForms/MainForm.cs index d42fa7d..b823388 100644 --- a/Examples/NBug.Examples.WinForms/MainForm.cs +++ b/Examples/NBug.Examples.WinForms/MainForm.cs @@ -52,7 +52,7 @@ private void CrashButton_Click(object sender, EventArgs e) "MyInvalidParameter", new Exception("Test inner exception for argument exception.")); case "Background Thread (Task): System.Exception": - Task.Run(() => { throw new Exception(); }); + _ = Task.Run(() => { throw new Exception(); }); // Below code makes sure that exception is thrown as only after finalization, the aggregateexception is thrown. // As a side affect, unlike the normal behavior, the applicaiton will note continue its execution but will shut From 578a6f703105d40e72a8cb85ad5d2e1da7d5c5fb Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:15:31 -0600 Subject: [PATCH 6/9] Remove unused properties from project files --- Documentation/Documentation.csproj | 15 ----- .../NBug.Examples.Console.csproj | 52 ----------------- .../NBug.Examples.WPF.csproj | 56 ------------------- .../NBug.Examples.WinForms.csproj | 52 ----------------- NBug.Configurator/NBug.Configurator.csproj | 56 ------------------- 5 files changed, 231 deletions(-) diff --git a/Documentation/Documentation.csproj b/Documentation/Documentation.csproj index 6185f00..29d7434 100644 --- a/Documentation/Documentation.csproj +++ b/Documentation/Documentation.csproj @@ -13,14 +13,6 @@ v4.5 512 - - - - - - - - PackageReference @@ -68,11 +60,4 @@ - \ No newline at end of file diff --git a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj index 7cf6859..e963848 100644 --- a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj +++ b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj @@ -13,29 +13,6 @@ v4.5 512 - - - - - - - - - http://localhost/NBug.Examples.Console/ - true - Web - true - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - true - false - true PackageReference @@ -100,28 +77,6 @@ - - - False - Microsoft .NET Framework 4 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - false - - - False - Windows Installer 3.1 - true - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} @@ -129,11 +84,4 @@ - \ No newline at end of file diff --git a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj index a82a148..ceacae4 100644 --- a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj +++ b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj @@ -16,29 +16,6 @@ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} 4 true - - - - - - - - - true - http://localhost/NBug.WPF.TestApp/ - true - Web - true - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - false - true PackageReference @@ -147,28 +124,6 @@ - - - False - Microsoft .NET Framework 4 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - false - - - False - Windows Installer 3.1 - true - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} @@ -176,15 +131,4 @@ - - - - - \ No newline at end of file diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index daab670..738bbfb 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -13,29 +13,6 @@ v4.5 512 - - - - - - - - - http://localhost/NBug.Examples.WinForms/ - true - Web - true - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - true - false - true PackageReference @@ -144,38 +121,9 @@ NBug - - - False - Microsoft .NET Framework 4 %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - false - - - False - Windows Installer 3.1 - true - - if $(ConfigurationName)==Release copy "$(TargetPath)" "$(SolutionDir)packages\NBug\tools" /Y if $(ConfigurationName)==Release copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)packages\NBug\tools" /Y - \ No newline at end of file diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index bedf461..8c56184 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -13,29 +13,6 @@ v4.5 512 - - - - - - - - - http://localhost/NBug.Configurator/ - true - Web - true - Foreground - 7 - Days - false - false - true - 0 - 1.0.0.%2a - true - false - true PackageReference @@ -220,28 +197,6 @@ True - - - False - Microsoft .NET Framework 4 Client Profile %28x86 and x64%29 - true - - - False - .NET Framework 3.5 SP1 Client Profile - false - - - False - .NET Framework 3.5 SP1 - false - - - False - Windows Installer 3.1 - true - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} @@ -252,19 +207,8 @@ - - - - if $(ConfigurationName)==Release copy "$(TargetPath)" "$(SolutionDir)packages\NBug\tools" /Y if $(ConfigurationName)==Release copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)packages\NBug\tools" /Y - \ No newline at end of file From 9ac287134eb864eaf30692d3152ff7b1d5646bdb Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:16:50 -0600 Subject: [PATCH 7/9] Avoid corrupting NuGet package cache on build --- Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj | 4 ---- NBug.Configurator/NBug.Configurator.csproj | 4 ---- 2 files changed, 8 deletions(-) diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index 738bbfb..dcc33cd 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -122,8 +122,4 @@ - - if $(ConfigurationName)==Release copy "$(TargetPath)" "$(SolutionDir)packages\NBug\tools" /Y -if $(ConfigurationName)==Release copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)packages\NBug\tools" /Y - \ No newline at end of file diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index 8c56184..52ef025 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -207,8 +207,4 @@ - - if $(ConfigurationName)==Release copy "$(TargetPath)" "$(SolutionDir)packages\NBug\tools" /Y -if $(ConfigurationName)==Release copy "$(TargetDir)$(TargetName).pdb" "$(SolutionDir)packages\NBug\tools" /Y - \ No newline at end of file From 54541058823a13cdd3d47ee750be317625dd2899 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:22:32 -0600 Subject: [PATCH 8/9] Remove legacy FXCop configuration --- Documentation/Documentation.csproj | 16 ---------------- .../NBug.Examples.Console.csproj | 16 ---------------- .../NBug.Examples.WPF/NBug.Examples.WPF.csproj | 17 ----------------- .../NBug.Examples.WinForms.csproj | 16 ---------------- NBug.Configurator/NBug.Configurator.csproj | 16 ---------------- NBug.Tests/NBug.Tests.csproj | 1 - NBug/NBug.csproj | 1 - 7 files changed, 83 deletions(-) diff --git a/Documentation/Documentation.csproj b/Documentation/Documentation.csproj index 29d7434..8eebb4f 100644 --- a/Documentation/Documentation.csproj +++ b/Documentation/Documentation.csproj @@ -21,15 +21,7 @@ DEBUG;TRACE full AnyCPU - bin\Debug\Documentation.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true bin\Release\ @@ -37,15 +29,7 @@ true pdbonly AnyCPU - bin\Release\Documentation.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files (x86)\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true diff --git a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj index e963848..9df1d83 100644 --- a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj +++ b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj @@ -31,15 +31,7 @@ true full AnyCPU - bin\Debug\NBug.Examples.Console.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - AllRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true bin\Release\ @@ -48,15 +40,7 @@ true pdbonly AnyCPU - bin\Release\NBug.Examples.Console.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - false - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - false diff --git a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj index ceacae4..ad44081 100644 --- a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj +++ b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj @@ -27,16 +27,7 @@ TRACE;DEBUG full AnyCPU - bin\Debug\NBug.WPF.TestApp.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - AllRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true - false true true @@ -46,15 +37,7 @@ true pdbonly AnyCPU - bin\Release\NBug.WPF.TestApp.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true true diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index dcc33cd..eb35f31 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -30,16 +30,7 @@ TRACE;DEBUG full AnyCPU - bin\Debug\NBug.Examples.WinForms.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - AllRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - false - false true @@ -48,14 +39,7 @@ true pdbonly AnyCPU - bin\Release\NBug.Examples.WinForms.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true true diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index 52ef025..1c9ac6e 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -31,15 +31,7 @@ true full AnyCPU - bin\Debug\NBug.Configurator.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - AllRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - true - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - true bin\Release\ @@ -47,15 +39,7 @@ true pdbonly AnyCPU - bin\Release\NBug.Configurator.exe.CodeAnalysisLog.xml - true - GlobalSuppressions.cs prompt - MinimumRecommendedRules.ruleset - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\\Rule Sets - ;C:\Program Files\Microsoft Visual Studio 10.0\Team Tools\Static Analysis Tools\FxCop\\Rules - false - false diff --git a/NBug.Tests/NBug.Tests.csproj b/NBug.Tests/NBug.Tests.csproj index bf25145..5d13b25 100644 --- a/NBug.Tests/NBug.Tests.csproj +++ b/NBug.Tests/NBug.Tests.csproj @@ -25,7 +25,6 @@ 4 true true - AllRules.ruleset pdbonly diff --git a/NBug/NBug.csproj b/NBug/NBug.csproj index 53abbbb..7befb8c 100644 --- a/NBug/NBug.csproj +++ b/NBug/NBug.csproj @@ -26,7 +26,6 @@ true true false - AllRules.ruleset From 2a2cd06f8a307f43022b2ee8dc0ff46acf35b1f6 Mon Sep 17 00:00:00 2001 From: Sam Harwell Date: Thu, 29 Nov 2018 08:53:42 -0600 Subject: [PATCH 9/9] Convert solution to CPS --- .../NBug.Destinations.AzureBlobStorage.csproj | 64 +--- Documentation/Documentation.csproj | 49 +-- .../NBug.Examples.Console.csproj | 65 +--- .../NBug.Examples.WPF.csproj | 128 ++----- .../NBug.Examples.WinForms.csproj | 110 ++---- NBug.Configurator/NBug.Configurator.csproj | 192 ++--------- NBug.Tests/NBug.Tests.csproj | 82 +---- NBug.sln | 23 +- NBug/NBug.csproj | 322 ++---------------- NBug/Properties/Localization.de.Designer.cs | 0 .../Properties/Localization.es-MX.Designer.cs | 0 .../Properties/Localization.fi-FI.Designer.cs | 0 NBug/Properties/Localization.hr.Designer.cs | 0 NBug/Properties/Localization.ja.Designer.cs | 0 .../Properties/Localization.ko-KR.Designer.cs | 0 .../Properties/Localization.pt-BR.Designer.cs | 0 .../Properties/Localization.ru-RU.Designer.cs | 0 global.json | 5 + 18 files changed, 176 insertions(+), 864 deletions(-) delete mode 100644 NBug/Properties/Localization.de.Designer.cs delete mode 100644 NBug/Properties/Localization.es-MX.Designer.cs delete mode 100644 NBug/Properties/Localization.fi-FI.Designer.cs delete mode 100644 NBug/Properties/Localization.hr.Designer.cs delete mode 100644 NBug/Properties/Localization.ja.Designer.cs delete mode 100644 NBug/Properties/Localization.ko-KR.Designer.cs delete mode 100644 NBug/Properties/Localization.pt-BR.Designer.cs delete mode 100644 NBug/Properties/Localization.ru-RU.Designer.cs create mode 100644 global.json diff --git a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj index ad2b6b1..e958aa1 100644 --- a/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj +++ b/Destinations/NBug.Destinations.AzureBlobStorage/NBug.Destinations.AzureBlobStorage.csproj @@ -1,54 +1,18 @@  - - + + - Debug - AnyCPU - {B5F98A29-817D-4186-A812-1B6A7B08108D} - Library - Properties - NBug.Destinations.AzureBlobStorage - NBug.Destinations.AzureBlobStorage - v4.5 - 512 - - PackageReference - - - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - true - - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 + net45 + + False true + true - - Signing.snk - - - - - - - - - - + @@ -56,19 +20,13 @@ + - - - - - - - {62ced1d5-f603-40de-8bf5-3e49d3a392f4} - NBug - + + - + \ No newline at end of file diff --git a/Documentation/Documentation.csproj b/Documentation/Documentation.csproj index 8eebb4f..cde8b49 100644 --- a/Documentation/Documentation.csproj +++ b/Documentation/Documentation.csproj @@ -1,47 +1,16 @@  - + + - Debug - x86 - 8.0.30703 - 2.0 - {975E1EA6-EDA8-4E5D-AC56-7A741022C89A} + net45 Exe - Properties - Documentation - Documentation - v4.5 - - 512 - PackageReference + + False + $(NoWarn),1591,1574 - - true - bin\Debug\ - DEBUG;TRACE - full - AnyCPU - prompt - - - bin\Release\ - TRACE - true - pdbonly - AnyCPU - prompt - - - - - - - - - - + - + - + \ No newline at end of file diff --git a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj index 9df1d83..82a5af3 100644 --- a/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj +++ b/Examples/NBug.Examples.Console/NBug.Examples.Console.csproj @@ -1,71 +1,36 @@  - + + - Debug - x86 - 8.0.30703 - 2.0 - {37281C42-C5CC-456D-B817-D81E6D866121} + net45 Exe - Properties - NBug.Examples.Console - NBug.Examples.Console - v4.5 - - 512 - PackageReference + + False + true + $(NoWarn),1591,1574 + true - - ..\..\Signing.snk + ..\..\NBug\resources\icon.ico - - true - bin\Debug\ - DEBUG;TRACE + + true - full - AnyCPU - prompt - - - bin\Release\ - TRACE - bin\Release\NBug.Examples.Console.XML - true - pdbonly - AnyCPU - prompt - - - - - - - - - + Properties\GlobalAssemblyInfo.cs - - - - - + - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - NBug - + - + \ No newline at end of file diff --git a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj index ad44081..35ae367 100644 --- a/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj +++ b/Examples/NBug.Examples.WPF/NBug.Examples.WPF.csproj @@ -1,117 +1,55 @@  - + + - Debug - x86 - 8.0.30703 - 2.0 - {33B22A3A-8188-42BE-BAD6-40046019EA73} + net45 WinExe - Properties - NBug.Examples.WPF - NBug.Examples.WPF - v4.5 - - 512 - {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC} - 4 - true - PackageReference - - - ..\..\NBug\resources\icon.ico - - - true - bin\Debug\ - TRACE;DEBUG - full - AnyCPU - prompt - true true + + False - - bin\Release\ - TRACE - true - pdbonly - AnyCPU - prompt - true + + + true + - true + ..\..\NBug\resources\icon.ico + + true ..\..\Signing.snk + - - - - - - - - - 4.0 - - + + + + + + + + + + + + + + - - MSBuild:Compile - Designer - - - MSBuild:Compile - Designer - - - Properties\GlobalAssemblyInfo.cs - - - App.xaml - Code - - - MainWindow.xaml - Code - + + - - Code - - - True - True - Resources.resx - - - True - Settings.settings - True - - - ResXFileCodeGenerator - Resources.Designer.cs - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - + + - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - NBug - + - + \ No newline at end of file diff --git a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj index eb35f31..29524ba 100644 --- a/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj +++ b/Examples/NBug.Examples.WinForms/NBug.Examples.WinForms.csproj @@ -1,109 +1,45 @@  - + + - Debug - x86 - 8.0.30703 - 2.0 - {1A387F18-8DEA-4EF8-8399-B808F1B1F3AD} + net45 WinExe - Properties - NBug.Examples.WinForms - NBug.Examples.WinForms - v4.5 - - 512 - PackageReference + true + + False + ..\..\NBug\resources\icon.ico + true - - ..\..\Signing.snk - - true - bin\Debug\ - TRACE;DEBUG - full - AnyCPU - prompt - true - - - bin\Release\ - TRACE - true - pdbonly - AnyCPU - prompt - true - + - - - - - - - - - + Properties\GlobalAssemblyInfo.cs - - Form - - - MainForm.cs - - - Form - - - Normal.cs - - - - - MainForm.cs - - - Normal.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - + + + + + + + + + + + - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - NBug - + - + \ No newline at end of file diff --git a/NBug.Configurator/NBug.Configurator.csproj b/NBug.Configurator/NBug.Configurator.csproj index 1c9ac6e..0c5d580 100644 --- a/NBug.Configurator/NBug.Configurator.csproj +++ b/NBug.Configurator/NBug.Configurator.csproj @@ -1,194 +1,46 @@  - + + - Debug - x86 - 8.0.30703 - 2.0 - {84D5B54B-7546-44C5-95F7-CDDBFB3F31B3} + net45 WinExe - Properties - NBug.Configurator - NBug.Configurator - v4.5 - - 512 - PackageReference + + False - - true + + + true + + true ..\Signing.snk + ..\NBug\resources\icon.ico - - true - bin\Debug\ - DEBUG;TRACE - true - full - AnyCPU - prompt - - - bin\Release\ - TRACE - true - pdbonly - AnyCPU - prompt - + - - - - - - - - - + Properties\GlobalAssemblyInfo.cs - - Form - - - AboutBox.cs - - - Form - - - MainForm.cs - - - Form - - - CustomPreviewForm.cs - - - Form - - - PreviewForm.cs - - - - - UserControl - - - Custom.cs - - - - UserControl - - - Mantis.cs - - - UserControl - - - Ftp.cs - - - UserControl - - - Http.cs - - - UserControl - - - Mail.cs - - - UserControl - - - PanelLoader.cs - - - UserControl - - - Redmine.cs - - - AboutBox.cs - Designer - - - MainForm.cs - - - CustomPreviewForm.cs - - - PreviewForm.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - True - Resources.resx - True - - - Custom.cs - - - Mantis.cs - - - Ftp.cs - - - Http.cs - - - Mail.cs - - - PanelLoader.cs - - - Redmine.cs - - - - SettingsSingleFileGenerator - Settings.Designer.cs - - - True - Settings.settings - True - + + + + + - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - NBug - + + - + - + \ No newline at end of file diff --git a/NBug.Tests/NBug.Tests.csproj b/NBug.Tests/NBug.Tests.csproj index 5d13b25..9c1e9d7 100644 --- a/NBug.Tests/NBug.Tests.csproj +++ b/NBug.Tests/NBug.Tests.csproj @@ -1,92 +1,40 @@  - + + - Debug - AnyCPU - 8.0.30703 - 2.0 - {3CE73395-EECA-465B-B77F-227F164E92EB} - Library - Properties - NBug.Tests - NBug.Tests - v4.5 - - 512 - PackageReference - - - true - full - false - bin\Debug\ - TRACE;DEBUG - prompt - 4 + net45 + + False true - true - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - true - - + + + true + true - - ..\Signing.snk + - - - - - - - + + Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - NBug - + - + - + \ No newline at end of file diff --git a/NBug.sln b/NBug.sln index 02bab00..43ddf2c 100644 --- a/NBug.sln +++ b/NBug.sln @@ -1,19 +1,21 @@  Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug", "NBug\NBug.csproj", "{62CED1D5-F603-40DE-8BF5-3E49D3A392F4}" +# Visual Studio 15 +VisualStudioVersion = 15.0.28307.106 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug", "NBug\NBug.csproj", "{62CED1D5-F603-40DE-8BF5-3E49D3A392F4}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Configurator", "NBug.Configurator\NBug.Configurator.csproj", "{84D5B54B-7546-44C5-95F7-CDDBFB3F31B3}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Configurator", "NBug.Configurator\NBug.Configurator.csproj", "{84D5B54B-7546-44C5-95F7-CDDBFB3F31B3}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Examples", "Examples", "{06E05029-1FB3-4122-9524-E81DC884A94E}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Examples.WPF", "Examples\NBug.Examples.WPF\NBug.Examples.WPF.csproj", "{33B22A3A-8188-42BE-BAD6-40046019EA73}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Examples.WPF", "Examples\NBug.Examples.WPF\NBug.Examples.WPF.csproj", "{33B22A3A-8188-42BE-BAD6-40046019EA73}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Examples.Console", "Examples\NBug.Examples.Console\NBug.Examples.Console.csproj", "{37281C42-C5CC-456D-B817-D81E6D866121}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Examples.Console", "Examples\NBug.Examples.Console\NBug.Examples.Console.csproj", "{37281C42-C5CC-456D-B817-D81E6D866121}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Examples.WinForms", "Examples\NBug.Examples.WinForms\NBug.Examples.WinForms.csproj", "{1A387F18-8DEA-4EF8-8399-B808F1B1F3AD}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Examples.WinForms", "Examples\NBug.Examples.WinForms\NBug.Examples.WinForms.csproj", "{1A387F18-8DEA-4EF8-8399-B808F1B1F3AD}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Tests", "NBug.Tests\NBug.Tests.csproj", "{3CE73395-EECA-465B-B77F-227F164E92EB}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Tests", "NBug.Tests\NBug.Tests.csproj", "{3CE73395-EECA-465B-B77F-227F164E92EB}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{26B9F5D5-286F-4C6E-AB2C-5B817053D8DC}" ProjectSection(SolutionItems) = preProject @@ -23,7 +25,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution ToDo.txt = ToDo.txt EndProjectSection EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Documentation", "Documentation\Documentation.csproj", "{975E1EA6-EDA8-4E5D-AC56-7A741022C89A}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Documentation", "Documentation\Documentation.csproj", "{975E1EA6-EDA8-4E5D-AC56-7A741022C89A}" EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{27B24A78-ADE1-4109-A077-F712912B1A78}" ProjectSection(SolutionItems) = preProject @@ -32,7 +34,7 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{27B24A EndProject Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Destinations", "Destinations", "{643C26DA-0C14-4F95-9F95-4A3A946D03D4}" EndProject -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "NBug.Destinations.AzureBlobStorage", "Destinations\NBug.Destinations.AzureBlobStorage\NBug.Destinations.AzureBlobStorage.csproj", "{B5F98A29-817D-4186-A812-1B6A7B08108D}" +Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NBug.Destinations.AzureBlobStorage", "Destinations\NBug.Destinations.AzureBlobStorage\NBug.Destinations.AzureBlobStorage.csproj", "{B5F98A29-817D-4186-A812-1B6A7B08108D}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution @@ -80,4 +82,7 @@ Global {1A387F18-8DEA-4EF8-8399-B808F1B1F3AD} = {06E05029-1FB3-4122-9524-E81DC884A94E} {B5F98A29-817D-4186-A812-1B6A7B08108D} = {643C26DA-0C14-4F95-9F95-4A3A946D03D4} EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {3077AB15-2963-44FC-B860-965ED4865709} + EndGlobalSection EndGlobal diff --git a/NBug/NBug.csproj b/NBug/NBug.csproj index 7befb8c..a87c98d 100644 --- a/NBug/NBug.csproj +++ b/NBug/NBug.csproj @@ -1,317 +1,53 @@  - + + - Debug - AnyCPU - 8.0.30703 - 2.0 - {62CED1D5-F603-40DE-8BF5-3E49D3A392F4} - Library - Properties - NBug - NBug - v4.5 - 512 - - PackageReference - - - true - full - false - bin\Debug\ - TRACE;DEBUG - prompt - 4 + net45 + + False + true true - true - false - - + $(NoWarn),1591,1574 - - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - true - bin\Release\NBug.XML - 1591;1574 + + + true + true - - ..\Signing.snk + - - - - + + + + + + + - - Core\Util\DpiUtil.cs - - - Properties\GlobalAssemblyInfo.cs - - - - - - - - - - - - - - - - - - - - Form - - - InternalExceptionViewer.cs - - - Form - - - InternalLogViewer.cs - - - UserControl - - - ExceptionDetails.cs - - - - - - - - - - - - - - - Localization.de.resx - True - True - - - Localization.es-MX.resx - True - True - - - True - True - Localization.fi-FI.resx - - - Localization.hr.resx - True - True - - - Localization.ja.resx - True - True - - - True - True - Localization.ko-KR.resx - - - Localization.pt-BR.resx - True - True - - - True - True - Localization.ru-RU.resx - - - True - True - Localization.resx - - - - True - True - Resources.resx - - - True - True - Settings.settings - - - - - - - - - - - - - - - - - - - - - - - - - - - - - Form - - - Feedback.cs - - - Form - - - Full.cs - - - Form - - - ExceptionDetailView.cs - - - - Form - - - Normal.cs - - - - - - - - - - - - - - - - - - + + - - Designer - - - SettingsSingleFileGenerator - Settings.Designer.cs - Designer - + + + + - - InternalExceptionViewer.cs - - - InternalLogViewer.cs - - - ExceptionDetails.cs - - - ResXFileCodeGenerator - Localization.es-MX.Designer.cs - Designer - - - ResXFileCodeGenerator - Localization.de.Designer.cs - - - ResXFileCodeGenerator - Localization.fi-FI.Designer.cs - - - ResXFileCodeGenerator - Localization.hr.Designer.cs - Designer - - - ResXFileCodeGenerator - Localization.ko-KR.Designer.cs - - - ResXFileCodeGenerator - Localization.ja.Designer.cs - - - ResXFileCodeGenerator - Localization.pt-BR.Designer.cs - - - ResXFileCodeGenerator - Localization.ru-RU.Designer.cs - - - ResXFileCodeGenerator - Localization.Designer.cs - - - ResXFileCodeGenerator - Designer - Resources.Designer.cs - - - Feedback.cs - - - Full.cs - - - ExceptionDetailView.cs - - - Normal.cs - + + + - + \ No newline at end of file diff --git a/NBug/Properties/Localization.de.Designer.cs b/NBug/Properties/Localization.de.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.es-MX.Designer.cs b/NBug/Properties/Localization.es-MX.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.fi-FI.Designer.cs b/NBug/Properties/Localization.fi-FI.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.hr.Designer.cs b/NBug/Properties/Localization.hr.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.ja.Designer.cs b/NBug/Properties/Localization.ja.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.ko-KR.Designer.cs b/NBug/Properties/Localization.ko-KR.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.pt-BR.Designer.cs b/NBug/Properties/Localization.pt-BR.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/NBug/Properties/Localization.ru-RU.Designer.cs b/NBug/Properties/Localization.ru-RU.Designer.cs deleted file mode 100644 index e69de29..0000000 diff --git a/global.json b/global.json new file mode 100644 index 0000000..2120c2f --- /dev/null +++ b/global.json @@ -0,0 +1,5 @@ +{ + "msbuild-sdks": { + "MSBuild.Sdk.Extras": "1.6.65" + } +}