From 7496302a57b8b74e7bab06f8d0950a65ec9355a9 Mon Sep 17 00:00:00 2001 From: Romfos Date: Thu, 29 May 2025 07:49:37 +0200 Subject: [PATCH 1/3] Migrate to slnx --- NSubstitute.sln | 60 ------------------------------------------------ NSubstitute.slnx | 20 ++++++++++++++++ 2 files changed, 20 insertions(+), 60 deletions(-) delete mode 100644 NSubstitute.sln create mode 100644 NSubstitute.slnx diff --git a/NSubstitute.sln b/NSubstitute.sln deleted file mode 100644 index eae31164..00000000 --- a/NSubstitute.sln +++ /dev/null @@ -1,60 +0,0 @@ -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio Version 17 -VisualStudioVersion = 17.8.34309.116 -MinimumVisualStudioVersion = 10.0.40219.1 -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NSubstitute", "src\NSubstitute\NSubstitute.csproj", "{F59BF5FC-52D8-492E-BDE8-244C183B4C92}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{CFB6BF4B-381D-4884-A8E8-D1FA71315BDE}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{0E2B9095-7548-462F-9BCC-CD6765B3ED60}" -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{A8AF7D01-6CE4-47B2-9E23-689A53991C3D}" - ProjectSection(SolutionItems) = preProject - build\build.fs = build\build.fs - build\ExtractDocs.fs = build\ExtractDocs.fs - EndProjectSection -EndProject -Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{CA2DD4AA-8DCD-42FB-8081-243281AD2956}" - ProjectSection(SolutionItems) = preProject - .editorconfig = .editorconfig - BreakingChanges.md = BreakingChanges.md - CHANGELOG.md = CHANGELOG.md - Directory.Build.props = Directory.Build.props - README.md = README.md - EndProjectSection -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NSubstitute.Acceptance.Specs", "tests\NSubstitute.Acceptance.Specs\NSubstitute.Acceptance.Specs.csproj", "{8C2300AA-F94C-4005-A359-257C5EAD338E}" -EndProject -Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "NSubstitute.Benchmarks", "tests\NSubstitute.Benchmarks\NSubstitute.Benchmarks.csproj", "{D2D162D4-EF1D-4B40-8736-9228C2FEA16C}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {F59BF5FC-52D8-492E-BDE8-244C183B4C92}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {F59BF5FC-52D8-492E-BDE8-244C183B4C92}.Debug|Any CPU.Build.0 = Debug|Any CPU - {F59BF5FC-52D8-492E-BDE8-244C183B4C92}.Release|Any CPU.ActiveCfg = Release|Any CPU - {F59BF5FC-52D8-492E-BDE8-244C183B4C92}.Release|Any CPU.Build.0 = Release|Any CPU - {8C2300AA-F94C-4005-A359-257C5EAD338E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {8C2300AA-F94C-4005-A359-257C5EAD338E}.Debug|Any CPU.Build.0 = Debug|Any CPU - {8C2300AA-F94C-4005-A359-257C5EAD338E}.Release|Any CPU.ActiveCfg = Release|Any CPU - {8C2300AA-F94C-4005-A359-257C5EAD338E}.Release|Any CPU.Build.0 = Release|Any CPU - {D2D162D4-EF1D-4B40-8736-9228C2FEA16C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {D2D162D4-EF1D-4B40-8736-9228C2FEA16C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {D2D162D4-EF1D-4B40-8736-9228C2FEA16C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {D2D162D4-EF1D-4B40-8736-9228C2FEA16C}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection - GlobalSection(SolutionProperties) = preSolution - HideSolutionNode = FALSE - EndGlobalSection - GlobalSection(NestedProjects) = preSolution - {F59BF5FC-52D8-492E-BDE8-244C183B4C92} = {CFB6BF4B-381D-4884-A8E8-D1FA71315BDE} - {8C2300AA-F94C-4005-A359-257C5EAD338E} = {0E2B9095-7548-462F-9BCC-CD6765B3ED60} - {D2D162D4-EF1D-4B40-8736-9228C2FEA16C} = {0E2B9095-7548-462F-9BCC-CD6765B3ED60} - EndGlobalSection - GlobalSection(ExtensibilityGlobals) = postSolution - SolutionGuid = {230E97F1-5246-4D49-8ED9-065F2B154E93} - EndGlobalSection -EndGlobal diff --git a/NSubstitute.slnx b/NSubstitute.slnx new file mode 100644 index 00000000..f4a719ad --- /dev/null +++ b/NSubstitute.slnx @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + From affe3442eba337d370143a7adaf2e54833fabf26 Mon Sep 17 00:00:00 2001 From: Romfos Date: Fri, 16 May 2025 08:19:04 +0200 Subject: [PATCH 2/3] Update readme to show build status for main branch --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index a3210e00..29cfad4f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ NSubstitute ======== -[![Build, Test, and Format verification](https://github.com/nsubstitute/NSubstitute/actions/workflows/test.yml/badge.svg)](https://github.com/nsubstitute/NSubstitute/actions/workflows/test.yml) +[![Build, Test, and Format verification](https://github.com/nsubstitute/NSubstitute/actions/workflows/test.yml/badge.svg?branch=main)](https://github.com/nsubstitute/NSubstitute/actions/workflows/test.yml) [![Nuget](https://img.shields.io/nuget/v/NSubstitute.svg)](https://www.nuget.org/packages/NSubstitute) Visit the [NSubstitute website](https://nsubstitute.github.io) for more information. From 6e44aa1d6cfdbb7259d107a4de25283c8086a986 Mon Sep 17 00:00:00 2001 From: Romfos Date: Thu, 29 May 2025 08:00:16 +0200 Subject: [PATCH 3/3] Update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index afa8dcea..b0d7b3a6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ * [NEW] Added .NET 9 to test matrix * [UPDATE] Migrate documentation to docfx platform. https://github.com/dotnet/docfx * [UPDATE][BREAKING] Nullability is enabled for public api for .NET Core TFMs +* [UPDATE] Migrate to slnx format for solution file ### 5.3.0 (October 2024)