├── .appveyor.yml ├── .gitattributes ├── .github ├── ISSUE_TEMPALTE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── .vsts-pipelines └── builds │ ├── ci-internal.yml │ └── ci-public.yml ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.Build.targets ├── LICENSE.txt ├── NuGet.config ├── NuGetPackageVerifier.json ├── README.md ├── RazorViewCompilation.sln ├── korebuild-lock.txt ├── korebuild.json ├── run.cmd ├── run.ps1 ├── run.sh ├── src ├── Directory.Build.props ├── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks │ ├── GetDotNetHost.cs │ └── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.csproj └── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation │ ├── Internal │ ├── AssemblyMetadataGenerator.cs │ ├── CompilationOptions.cs │ ├── DebugHelper.cs │ ├── MvcServiceProvider.cs │ ├── PrecompilationApplication.cs │ ├── PrecompileRunCommand.cs │ ├── SnkUtils.cs │ ├── ViewCompilationInfo.cs │ └── ViewFileInfo.cs │ ├── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.csproj │ ├── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.nuspec │ ├── Program.cs │ ├── Properties │ └── AssemblyInfo.cs │ ├── baseline.netcore.json │ ├── build │ └── netstandard2.0 │ │ └── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets │ └── lib │ ├── net461 │ └── _._ │ └── netcoreapp2.0 │ └── _._ ├── test ├── Directory.Build.props ├── FunctionalTests │ ├── CoreCLRTests │ │ ├── ApplicationWithConfigureMvcTest_CoreCLR.cs │ │ ├── ApplicationWithCustomInputFilesTest_CoreCLR.cs │ │ ├── ApplicationWithParseErrorsTest_CoreCLR.cs │ │ ├── ApplicationWithTagHelpersTest_CoreCLR.cs │ │ ├── CoreCLRApplicationTestFixture.cs │ │ ├── PublishWithEmbedViewSourcesTest_CoreCLR.cs │ │ ├── RazorPagesAppTest_CoreCLR.cs │ │ ├── RazorSdkNeitherUsedTest_CoreCLR.cs │ │ ├── RazorSdkPrecompilationUsedTest_CoreCLR.cs │ │ ├── RazorSdkUsedTest_CoreCLR.cs │ │ ├── SimpleAppTest_CoreCLR.cs │ │ ├── SimpleAppWithAssemblyRenameTest_CoreCLR.cs │ │ ├── StrongNamedAppTest_CoreCLR.cs │ │ └── ViewCompilationOptionsTest_CoreCLR.cs │ ├── DesktopTests │ │ ├── ApplicationWithConfigureMvcTest_Desktop.cs │ │ ├── ApplicationWithCustomInputFilesTest_Desktop.cs │ │ ├── ApplicationWithParseErrorsTest_Desktop.cs │ │ ├── ApplicationWithTagHelpersTest_Desktop.cs │ │ ├── DesktopApplicationTestFixture.cs │ │ ├── PublishWithEmbedViewSourcesTest_Desktop.cs │ │ ├── RazorPagesAppTest_Desktop.cs │ │ ├── SimpleAppTestWithPlatformx86_Desktop.cs │ │ ├── SimpleAppTest_Desktop.cs │ │ ├── SimpleAppWithAssemblyRenameTest_Desktop.cs │ │ ├── StrongNamedAppTest_Desktop.cs │ │ └── ViewCompilationOptionsTest_Desktop.cs │ ├── FunctionalTests.csproj │ ├── Infrastructure │ │ ├── ApplicationPaths.cs │ │ ├── ApplicationTestFixture.cs │ │ ├── HttpClientExtensions.cs │ │ ├── PublishOnlyDeployer.cs │ │ └── TestEmbeddedResource.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Resources │ │ ├── ApplicationConsumingPrecompiledViews.Manage.Home.Index.txt │ │ ├── ApplicationUsingRelativePaths.Home.About.txt │ │ ├── ApplicationUsingRelativePaths.Home.Index.txt │ │ ├── ApplicationWithConfigureMvc.Home.Index.txt │ │ ├── ApplicationWithConfigureMvc.Home.ViewWithPreprocessor.txt │ │ ├── ApplicationWithRazorSdkPrecompilationUsed.Home.Index.txt │ │ ├── ApplicationWithRazorSdkUsed.Home.Index.txt │ │ ├── ApplicationWithTagHelpers.Home.ClassLibraryTagHelper.txt │ │ ├── ApplicationWithTagHelpers.Home.LocalTagHelper.txt │ │ ├── RazorPages.Index.txt │ │ ├── RazorPages.Nested1.Nested2.PageWithTagHelper.txt │ │ ├── RazorPages.PageWithModel.txt │ │ ├── RazorPages.PageWithRoute.txt │ │ ├── SimpleAppTest.Home.Index.txt │ │ ├── SimpleAppWithAssemblyRenameTest.Home.Index.txt │ │ └── StrongNamedApp.Home.Index.txt └── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test │ ├── Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test.csproj │ └── PrecompileRunCommandTest.cs ├── testapps ├── ApplicationWithConfigureMvc │ ├── ApplicationWithConfigureMvc.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── RazorRewriter.cs │ ├── Startup.cs │ └── Views │ │ └── Home │ │ ├── Index.cshtml │ │ └── ViewWithPreprocessor.cshtml ├── ApplicationWithCustomInputFiles │ ├── ApplicationWithCustomInputFiles.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ └── Views │ │ └── Home │ │ ├── About.cshtml │ │ ├── Index.cshtml │ │ └── NotIncluded.cshtml ├── ApplicationWithParseErrors │ ├── ApplicationWithParseErrors.csproj │ ├── Program.cs │ ├── Startup.cs │ └── Views │ │ └── Home │ │ ├── About.cshtml │ │ └── Index.cshtml ├── ApplicationWithRazorSdkNeitherUsed │ ├── ApplicationWithRazorSdkNeitherUsed.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── ApplicationWithRazorSdkPrecompilationUsed │ ├── ApplicationWithRazorSdkPrecompilationUsed.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── ApplicationWithRazorSdkUsed │ ├── ApplicationWithRazorSdkUsed.csproj │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── ApplicationWithTagHelpers │ ├── ApplicationWithTagHelpers.csproj │ ├── Components │ │ └── CopyrightViewComponent.cs │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── TagHelpers │ │ └── TestTagHelper.cs │ └── Views │ │ ├── Home │ │ ├── ClassLibraryTagHelper.cshtml │ │ └── LocalTagHelper.cshtml │ │ ├── Shared │ │ ├── Components │ │ │ └── Copyright │ │ │ │ └── Default.cshtml │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── ClassLibraryTagHelper │ ├── BoldTagHelper.cs │ └── ClassLibraryTagHelper.csproj ├── Directory.Build.props ├── Directory.Build.targets ├── PublishWithEmbedViewSources │ ├── Areas │ │ └── TestArea │ │ │ └── Views │ │ │ └── Home │ │ │ └── Index.cshtml │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── PublishWithEmbedViewSources.csproj │ ├── Startup.cs │ └── Views │ │ └── Home │ │ ├── About.cshtml │ │ └── Index.cshtml ├── RazorPagesApp │ ├── Pages │ │ ├── Auth │ │ │ └── Index.cshtml │ │ ├── Index.cshtml │ │ ├── Login.cshtml │ │ ├── MyPageModel.cs │ │ ├── Nested1 │ │ │ ├── Nested2 │ │ │ │ └── PageWithTagHelper.cshtml │ │ │ └── _ViewImports.cshtml │ │ ├── PageWithModel.cshtml │ │ ├── PageWithRoute.cshtml │ │ ├── _PageStart.cshtml │ │ └── _ViewImports.cshtml │ ├── Program.cs │ ├── RazorPagesApp.csproj │ ├── Startup.cs │ └── Views │ │ └── Shared │ │ └── _Layout.cshtml ├── SimpleApp │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── SimpleApp.csproj │ ├── Startup.cs │ └── Views │ │ ├── Home │ │ ├── About.cshtml │ │ └── Index.cshtml │ │ ├── Shared │ │ └── _Layout.cshtml │ │ ├── _ViewImports.cshtml │ │ └── _ViewStart.cshtml ├── SimpleAppWithAssemblyRename │ ├── Controllers │ │ └── HomeController.cs │ ├── Program.cs │ ├── SimpleAppWithAssemblyRename.csproj │ ├── Startup.cs │ └── Views │ │ ├── Home │ │ └── Index.cshtml │ │ └── _ViewImports.cshtml └── StrongNamedApp │ ├── Controllers │ └── HomeController.cs │ ├── Program.cs │ ├── Startup.cs │ ├── StrongNamedApp.csproj │ └── Views │ └── Home │ └── Index.cshtml └── version.props /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPALTE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.github/ISSUE_TEMPALTE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-internal.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.vsts-pipelines/builds/ci-internal.yml -------------------------------------------------------------------------------- /.vsts-pipelines/builds/ci-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/.vsts-pipelines/builds/ci-public.yml -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/NuGet.config -------------------------------------------------------------------------------- /NuGetPackageVerifier.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/NuGetPackageVerifier.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/README.md -------------------------------------------------------------------------------- /RazorViewCompilation.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/RazorViewCompilation.sln -------------------------------------------------------------------------------- /korebuild-lock.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/korebuild-lock.txt -------------------------------------------------------------------------------- /korebuild.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/korebuild.json -------------------------------------------------------------------------------- /run.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/run.cmd -------------------------------------------------------------------------------- /run.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/run.ps1 -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/run.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks/GetDotNetHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks/GetDotNetHost.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Tasks.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/AssemblyMetadataGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/AssemblyMetadataGenerator.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/CompilationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/CompilationOptions.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/DebugHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/DebugHelper.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/MvcServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/MvcServiceProvider.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/PrecompilationApplication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/PrecompilationApplication.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/PrecompileRunCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/PrecompileRunCommand.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/SnkUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/SnkUtils.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/ViewCompilationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/ViewCompilationInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/ViewFileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Internal/ViewFileInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.csproj -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.nuspec -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Program.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/baseline.netcore.json -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/build/netstandard2.0/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.targets -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/lib/net461/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation/lib/netcoreapp2.0/_._: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/ApplicationWithConfigureMvcTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/ApplicationWithConfigureMvcTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/ApplicationWithCustomInputFilesTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/ApplicationWithCustomInputFilesTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/ApplicationWithParseErrorsTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/ApplicationWithParseErrorsTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/ApplicationWithTagHelpersTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/ApplicationWithTagHelpersTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/CoreCLRApplicationTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/CoreCLRApplicationTestFixture.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/PublishWithEmbedViewSourcesTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/PublishWithEmbedViewSourcesTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/RazorPagesAppTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/RazorPagesAppTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/RazorSdkNeitherUsedTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/RazorSdkNeitherUsedTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/RazorSdkPrecompilationUsedTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/RazorSdkPrecompilationUsedTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/RazorSdkUsedTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/RazorSdkUsedTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/SimpleAppTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/SimpleAppTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/SimpleAppWithAssemblyRenameTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/SimpleAppWithAssemblyRenameTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/StrongNamedAppTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/StrongNamedAppTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/CoreCLRTests/ViewCompilationOptionsTest_CoreCLR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/CoreCLRTests/ViewCompilationOptionsTest_CoreCLR.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/ApplicationWithConfigureMvcTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/ApplicationWithConfigureMvcTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/ApplicationWithCustomInputFilesTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/ApplicationWithCustomInputFilesTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/ApplicationWithParseErrorsTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/ApplicationWithParseErrorsTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/ApplicationWithTagHelpersTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/ApplicationWithTagHelpersTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/DesktopApplicationTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/DesktopApplicationTestFixture.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/PublishWithEmbedViewSourcesTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/PublishWithEmbedViewSourcesTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/RazorPagesAppTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/RazorPagesAppTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/SimpleAppTestWithPlatformx86_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/SimpleAppTestWithPlatformx86_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/SimpleAppTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/SimpleAppTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/SimpleAppWithAssemblyRenameTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/SimpleAppWithAssemblyRenameTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/StrongNamedAppTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/StrongNamedAppTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/DesktopTests/ViewCompilationOptionsTest_Desktop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/DesktopTests/ViewCompilationOptionsTest_Desktop.cs -------------------------------------------------------------------------------- /test/FunctionalTests/FunctionalTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/FunctionalTests.csproj -------------------------------------------------------------------------------- /test/FunctionalTests/Infrastructure/ApplicationPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Infrastructure/ApplicationPaths.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Infrastructure/ApplicationTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Infrastructure/ApplicationTestFixture.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Infrastructure/HttpClientExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Infrastructure/HttpClientExtensions.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Infrastructure/PublishOnlyDeployer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Infrastructure/PublishOnlyDeployer.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Infrastructure/TestEmbeddedResource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Infrastructure/TestEmbeddedResource.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationConsumingPrecompiledViews.Manage.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationConsumingPrecompiledViews.Manage.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationUsingRelativePaths.Home.About.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationUsingRelativePaths.Home.About.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationUsingRelativePaths.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationUsingRelativePaths.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithConfigureMvc.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationWithConfigureMvc.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithConfigureMvc.Home.ViewWithPreprocessor.txt: -------------------------------------------------------------------------------- 1 | Hello from Test123 -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithRazorSdkPrecompilationUsed.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationWithRazorSdkPrecompilationUsed.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithRazorSdkUsed.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationWithRazorSdkUsed.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithTagHelpers.Home.ClassLibraryTagHelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationWithTagHelpers.Home.ClassLibraryTagHelper.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/ApplicationWithTagHelpers.Home.LocalTagHelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/ApplicationWithTagHelpers.Home.LocalTagHelper.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/RazorPages.Index.txt: -------------------------------------------------------------------------------- 1 | 2 | Hello world! -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/RazorPages.Nested1.Nested2.PageWithTagHelper.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/RazorPages.Nested1.Nested2.PageWithTagHelper.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/RazorPages.PageWithModel.txt: -------------------------------------------------------------------------------- 1 | 2 | Greetings Dan! -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/RazorPages.PageWithRoute.txt: -------------------------------------------------------------------------------- 1 | 2 | Greetings Dan! -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/SimpleAppTest.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/SimpleAppTest.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/SimpleAppWithAssemblyRenameTest.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/SimpleAppWithAssemblyRenameTest.Home.Index.txt -------------------------------------------------------------------------------- /test/FunctionalTests/Resources/StrongNamedApp.Home.Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/FunctionalTests/Resources/StrongNamedApp.Home.Index.txt -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test.csproj -------------------------------------------------------------------------------- /test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test/PrecompileRunCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/test/Microsoft.AspNetCore.Mvc.Razor.ViewCompilation.Test/PrecompileRunCommandTest.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/ApplicationWithConfigureMvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/ApplicationWithConfigureMvc.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/RazorRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/RazorRewriter.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @GetType().Assembly.FullName 2 | Hello world! -------------------------------------------------------------------------------- /testapps/ApplicationWithConfigureMvc/Views/Home/ViewWithPreprocessor.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithConfigureMvc/Views/Home/ViewWithPreprocessor.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/ApplicationWithCustomInputFiles.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithCustomInputFiles/ApplicationWithCustomInputFiles.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithCustomInputFiles/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithCustomInputFiles/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithCustomInputFiles/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | Hello from About -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | Hello Index! -------------------------------------------------------------------------------- /testapps/ApplicationWithCustomInputFiles/Views/Home/NotIncluded.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithCustomInputFiles/Views/Home/NotIncluded.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithParseErrors/ApplicationWithParseErrors.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithParseErrors/ApplicationWithParseErrors.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithParseErrors/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithParseErrors/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithParseErrors/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithParseErrors/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithParseErrors/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | @using ApplicationWithParseErrors 2 | @ 3 | -------------------------------------------------------------------------------- /testapps/ApplicationWithParseErrors/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithParseErrors/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/ApplicationWithRazorSdkNeitherUsed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/ApplicationWithRazorSdkNeitherUsed.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Views/Home/About.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | @GetType().AssemblyQualifiedName 6 | Hello from Index! -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkNeitherUsed/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkNeitherUsed/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/ApplicationWithRazorSdkPrecompilationUsed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/ApplicationWithRazorSdkPrecompilationUsed.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/Home/About.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | @GetType().Assembly.FullName 6 | Hello from Index! -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkPrecompilationUsed/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/ApplicationWithRazorSdkUsed.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/ApplicationWithRazorSdkUsed.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Views/Home/About.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | @GetType().Assembly.FullName 6 | Hello from Index! -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithRazorSdkUsed/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithRazorSdkUsed/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/ApplicationWithTagHelpers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/ApplicationWithTagHelpers.csproj -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Components/CopyrightViewComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Components/CopyrightViewComponent.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Program.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Startup.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/TagHelpers/TestTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/TagHelpers/TestTagHelper.cs -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/Home/ClassLibraryTagHelper.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/Home/ClassLibraryTagHelper.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/Home/LocalTagHelper.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/Home/LocalTagHelper.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/Shared/Components/Copyright/Default.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/Shared/Components/Copyright/Default.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/ApplicationWithTagHelpers/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ApplicationWithTagHelpers/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /testapps/ClassLibraryTagHelper/BoldTagHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ClassLibraryTagHelper/BoldTagHelper.cs -------------------------------------------------------------------------------- /testapps/ClassLibraryTagHelper/ClassLibraryTagHelper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/ClassLibraryTagHelper/ClassLibraryTagHelper.csproj -------------------------------------------------------------------------------- /testapps/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/Directory.Build.props -------------------------------------------------------------------------------- /testapps/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/Directory.Build.targets -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Areas/TestArea/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | Hello Index! -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/PublishWithEmbedViewSources/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/PublishWithEmbedViewSources/Program.cs -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/PublishWithEmbedViewSources.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/PublishWithEmbedViewSources/PublishWithEmbedViewSources.csproj -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/PublishWithEmbedViewSources/Startup.cs -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Views/Home/About.cshtml: -------------------------------------------------------------------------------- 1 | Hello About! -------------------------------------------------------------------------------- /testapps/PublishWithEmbedViewSources/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | Hello Index! -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/Auth/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | Can't see me 3 | -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/Index.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | Hello world! -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/Login.cshtml: -------------------------------------------------------------------------------- 1 | @page 2 | 3 | Hello world! -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/MyPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/MyPageModel.cs -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/Nested1/Nested2/PageWithTagHelper.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/Nested1/Nested2/PageWithTagHelper.cshtml -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/Nested1/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/Nested1/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/PageWithModel.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/PageWithModel.cshtml -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/PageWithRoute.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/PageWithRoute.cshtml -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/_PageStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Pages/_PageStart.cshtml -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Pages/_ViewImports.cshtml: -------------------------------------------------------------------------------- 1 | @using RazorPagesApp 2 | -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Program.cs -------------------------------------------------------------------------------- /testapps/RazorPagesApp/RazorPagesApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/RazorPagesApp.csproj -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Startup.cs -------------------------------------------------------------------------------- /testapps/RazorPagesApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/RazorPagesApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/SimpleApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/SimpleApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Program.cs -------------------------------------------------------------------------------- /testapps/SimpleApp/SimpleApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/SimpleApp.csproj -------------------------------------------------------------------------------- /testapps/SimpleApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Startup.cs -------------------------------------------------------------------------------- /testapps/SimpleApp/Views/Home/About.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Views/Home/About.cshtml -------------------------------------------------------------------------------- /testapps/SimpleApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Views/Home/Index.cshtml -------------------------------------------------------------------------------- /testapps/SimpleApp/Views/Shared/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Views/Shared/_Layout.cshtml -------------------------------------------------------------------------------- /testapps/SimpleApp/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/SimpleApp/Views/_ViewStart.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleApp/Views/_ViewStart.cshtml -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleAppWithAssemblyRename/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleAppWithAssemblyRename/Program.cs -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/SimpleAppWithAssemblyRename.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleAppWithAssemblyRename/SimpleAppWithAssemblyRename.csproj -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleAppWithAssemblyRename/Startup.cs -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | @{ 2 | ViewData["Title"] = "Home Page"; 3 | } 4 | 5 | @GetType().Assembly.FullName -------------------------------------------------------------------------------- /testapps/SimpleAppWithAssemblyRename/Views/_ViewImports.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/SimpleAppWithAssemblyRename/Views/_ViewImports.cshtml -------------------------------------------------------------------------------- /testapps/StrongNamedApp/Controllers/HomeController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/StrongNamedApp/Controllers/HomeController.cs -------------------------------------------------------------------------------- /testapps/StrongNamedApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/StrongNamedApp/Program.cs -------------------------------------------------------------------------------- /testapps/StrongNamedApp/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/StrongNamedApp/Startup.cs -------------------------------------------------------------------------------- /testapps/StrongNamedApp/StrongNamedApp.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/testapps/StrongNamedApp/StrongNamedApp.csproj -------------------------------------------------------------------------------- /testapps/StrongNamedApp/Views/Home/Index.cshtml: -------------------------------------------------------------------------------- 1 | Hello from view in @GetType().Assembly.FullName 2 | -------------------------------------------------------------------------------- /version.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aspnet/MvcPrecompilation/HEAD/version.props --------------------------------------------------------------------------------