├── .gitignore ├── AOTCompatlyzer ├── .gitignore ├── AOTCompatlyzer.csproj ├── AOTCompatlyzer.sln ├── AssemblyInfo.cs ├── IProcessor.cs ├── Main.cs ├── ProcessorDispatcher.cs ├── Processors │ ├── ReplaceCompareExchange.cs │ └── ReplaceVirtualMethods.cs └── Tests │ └── TestClass.cs ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /AOTCompatlyzer/.gitignore: -------------------------------------------------------------------------------- 1 | *.userprefs 2 | .DS_Store 3 | 4 | -------------------------------------------------------------------------------- /AOTCompatlyzer/AOTCompatlyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/AOTCompatlyzer.csproj -------------------------------------------------------------------------------- /AOTCompatlyzer/AOTCompatlyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/AOTCompatlyzer.sln -------------------------------------------------------------------------------- /AOTCompatlyzer/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/AssemblyInfo.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/IProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/IProcessor.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/Main.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/ProcessorDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/ProcessorDispatcher.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/Processors/ReplaceCompareExchange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/Processors/ReplaceCompareExchange.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/Processors/ReplaceVirtualMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/Processors/ReplaceVirtualMethods.cs -------------------------------------------------------------------------------- /AOTCompatlyzer/Tests/TestClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/AOTCompatlyzer/Tests/TestClass.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jaredthirsk/AOT-Compatlyzer/HEAD/README.md --------------------------------------------------------------------------------