├── .github └── workflows │ └── dotnet.yml ├── .gitignore ├── .idea ├── .idea.FluentAssertionsMigrator │ └── .idea │ │ └── .gitignore └── .idea.fluentassertions-migrator.dir │ └── .idea │ └── .gitignore ├── LICENSE ├── README.md ├── src ├── .idea │ └── .idea.FluentAssertionsMigrator │ │ └── .idea │ │ ├── .gitignore │ │ └── .name ├── FluentAssertionsMigrator.Tests │ ├── FluentAssertionsMigrator.Tests.csproj │ └── FluentAssertionsSolutionMigratorTests.cs ├── FluentAssertionsMigrator.sln └── FluentAssertionsMigrator │ ├── FluentAssertionsMigrator.csproj │ └── Program.cs └── testsolution ├── .idea └── .idea.TestSolution │ └── .idea │ ├── .gitignore │ └── .name ├── TestProject ├── TestAssertions.cs └── TestProject.csproj └── TestSolution.sln /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.FluentAssertionsMigrator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/.idea/.idea.FluentAssertionsMigrator/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.idea.fluentassertions-migrator.dir/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/.idea/.idea.fluentassertions-migrator.dir/.idea/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/README.md -------------------------------------------------------------------------------- /src/.idea/.idea.FluentAssertionsMigrator/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/.idea/.idea.FluentAssertionsMigrator/.idea/.gitignore -------------------------------------------------------------------------------- /src/.idea/.idea.FluentAssertionsMigrator/.idea/.name: -------------------------------------------------------------------------------- 1 | FluentAssertionsMigrator -------------------------------------------------------------------------------- /src/FluentAssertionsMigrator.Tests/FluentAssertionsMigrator.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/FluentAssertionsMigrator.Tests/FluentAssertionsMigrator.Tests.csproj -------------------------------------------------------------------------------- /src/FluentAssertionsMigrator.Tests/FluentAssertionsSolutionMigratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/FluentAssertionsMigrator.Tests/FluentAssertionsSolutionMigratorTests.cs -------------------------------------------------------------------------------- /src/FluentAssertionsMigrator.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/FluentAssertionsMigrator.sln -------------------------------------------------------------------------------- /src/FluentAssertionsMigrator/FluentAssertionsMigrator.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/FluentAssertionsMigrator/FluentAssertionsMigrator.csproj -------------------------------------------------------------------------------- /src/FluentAssertionsMigrator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/src/FluentAssertionsMigrator/Program.cs -------------------------------------------------------------------------------- /testsolution/.idea/.idea.TestSolution/.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/testsolution/.idea/.idea.TestSolution/.idea/.gitignore -------------------------------------------------------------------------------- /testsolution/.idea/.idea.TestSolution/.idea/.name: -------------------------------------------------------------------------------- 1 | TestSolution -------------------------------------------------------------------------------- /testsolution/TestProject/TestAssertions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/testsolution/TestProject/TestAssertions.cs -------------------------------------------------------------------------------- /testsolution/TestProject/TestProject.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/testsolution/TestProject/TestProject.csproj -------------------------------------------------------------------------------- /testsolution/TestSolution.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/amoerie/fluentassertions-migrator/HEAD/testsolution/TestSolution.sln --------------------------------------------------------------------------------