gitextract_e7pohamh/ ├── .gitignore ├── BuildAndPack.ps1 ├── Directory.Build.props ├── README.md ├── Release.ps1 ├── StackExchange.Precompilation/ │ ├── AfterCompileContext.cs │ ├── AppDomainHelper.cs │ ├── Attributes.cs │ ├── BeforeCompileContext.cs │ ├── CompileContext.cs │ ├── CompileModuleElement.cs │ ├── CompileModulesCollection.cs │ ├── CompiledFromDirectoryAttribute.cs │ ├── CompiledFromFileAttribute.cs │ ├── ICompileContext.cs │ ├── ICompileModule.cs │ ├── IMetadataReference.cs │ ├── PrecompilationModuleLoader.cs │ ├── PrecompilerSection.cs │ ├── RazorCacheElement.cs │ └── StackExchange.Precompilation.csproj ├── StackExchange.Precompilation.Build/ │ ├── App.config │ ├── Attributes.cs │ ├── Compilation.cs │ ├── CompilationAssemblyResolver.cs │ ├── CompilationProxy.cs │ ├── ICompilationProxy.cs │ ├── PrecompilationCommandLineArgs.cs │ ├── PrecompilationCommandLineParser.cs │ ├── Program.cs │ ├── StackExchange.Precompilation.Build.csproj │ ├── StackExchange.Precompilation.Build.packages.config │ └── StackExchange.Precompilation.Build.targets ├── StackExchange.Precompilation.Tests/ │ ├── CommandLineTests.cs │ └── StackExchange.Precompilation.Tests.csproj ├── StackExchange.Precompilation.sln ├── StackExhcange.Precompilation.MVC5/ │ ├── Hacks.cs │ ├── PrecompilationView.cs │ ├── PrecompilationVirtualPathFactory.cs │ ├── PrecompiledViewEngine.cs │ ├── ProfiledVirtualPathProviderViewEngine.cs │ ├── RazorParser.cs │ ├── RoslynRazorViewEngine.cs │ └── StackExchange.Precompilation.MVC5.csproj ├── Test.ConsoleApp/ │ ├── AliasTest.cs │ ├── App.config │ ├── Program.cs │ └── Test.ConsoleApp.csproj ├── Test.Module/ │ ├── Test.Module.csproj │ └── TestCompileModule.cs ├── Test.WebApp/ │ ├── Content/ │ │ └── PartialExternalContent.cshtml │ ├── Controllers/ │ │ └── HomeController.cs │ ├── Models/ │ │ └── SampleModel.cs │ ├── MvcApplication.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Test.WebApp.csproj │ ├── Views/ │ │ ├── Home/ │ │ │ ├── ExcludedLayout.cshtml │ │ │ ├── Index.Mobile.cshtml │ │ │ └── Index.cshtml │ │ ├── Other/ │ │ │ └── RelativePartial.cshtml │ │ ├── Shared/ │ │ │ ├── EditorTemplates/ │ │ │ │ ├── SampleModel.Mobile.cshtml │ │ │ │ ├── SampleModel.cshtml │ │ │ │ └── String.cshtml │ │ │ ├── _Footer.Mobile.cshtml │ │ │ ├── _Footer.cshtml │ │ │ ├── _Layout.Excluded.cshtml │ │ │ ├── _Layout.Mobile.cshtml │ │ │ ├── _Layout.Overridden.cshtml │ │ │ └── _Layout.cshtml │ │ ├── Web.config │ │ └── _ViewStart.cshtml │ └── Web.config ├── Test.WebApp.ExternalViews/ │ ├── App_Code/ │ │ └── Helpers.cshtml │ ├── ExternalViews.cs │ ├── Test.WebApp.ExternalViews.csproj │ └── Views/ │ ├── Shared/ │ │ ├── ExternalPartial.cshtml │ │ └── ExternalView.cshtml │ └── Web.config ├── appveyor.yml ├── license.txt └── semver.txt