├── .azuredevops └── dependabot.yml ├── .config └── tsaoptions.json ├── .editorconfig ├── .gitattributes ├── .github ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE │ ├── ask_a_question.md │ ├── bug_report_msidentityscaffolding.md │ ├── bug_report_scaffolding.md │ ├── config.yml │ └── feature_request.md ├── PULL_REQUEST_TEMPLATE.md ├── SECURITY.md ├── SUPPORT.md └── workflows │ └── backport.yml ├── .gitignore ├── All.sln ├── CODE-OF-CONDUCT.md ├── Directory.Build.props ├── Directory.Build.targets ├── Directory.Packages.props ├── Getting-Started.md ├── LICENSE ├── LoginOrLogout.tt ├── MSIdentityScaffolding.slnf ├── NOTICE.txt ├── NuGet.config ├── README.md ├── Scaffolding.slnf ├── azure-pipelines-codeql.yml ├── azure-pipelines-pr.yml ├── azure-pipelines.yml ├── eng ├── Package.props ├── Publishing.props ├── SignCheckExclusionsFile.txt ├── Signing.props ├── Version.Details.xml ├── Versions.DotNetScaffold.props ├── Versions.MSIdentity.props ├── Versions.props ├── common │ ├── BuildConfiguration │ │ └── build-configuration.json │ ├── CIBuild.cmd │ ├── PSScriptAnalyzerSettings.psd1 │ ├── README.md │ ├── SetupNugetSources.ps1 │ ├── SetupNugetSources.sh │ ├── build.cmd │ ├── build.ps1 │ ├── build.sh │ ├── cibuild.sh │ ├── core-templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── cleanup-microbuild.yml │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── install-microbuild-impl.yml │ │ │ ├── install-microbuild.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── arm │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── arm64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── armel │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── install-debs.py │ │ ├── riscv64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── tizen-build-rootfs.sh │ │ ├── tizen-fetch.sh │ │ ├── toolchain.cmake │ │ ├── x64 │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ └── x86 │ │ │ └── tizen │ │ │ └── tizen.patch │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.sh │ ├── dotnet.cmd │ ├── dotnet.ps1 │ ├── dotnet.sh │ ├── enable-cross-org-publishing.ps1 │ ├── generate-locproject.ps1 │ ├── generate-sbom-prep.ps1 │ ├── generate-sbom-prep.sh │ ├── helixpublish.proj │ ├── init-tools-native.cmd │ ├── init-tools-native.ps1 │ ├── init-tools-native.sh │ ├── internal-feed-operations.ps1 │ ├── internal-feed-operations.sh │ ├── internal │ │ ├── Directory.Build.props │ │ ├── NuGet.config │ │ └── Tools.csproj │ ├── loc │ │ └── P22DotNetHtmlLocalization.lss │ ├── msbuild.ps1 │ ├── msbuild.sh │ ├── native │ │ ├── CommonLibrary.psm1 │ │ ├── common-library.sh │ │ ├── init-compiler.sh │ │ ├── init-distro-rid.sh │ │ ├── init-os-and-arch.sh │ │ ├── install-cmake-test.sh │ │ ├── install-cmake.sh │ │ ├── install-dependencies.sh │ │ └── install-tool.ps1 │ ├── pipeline-logging-functions.ps1 │ ├── pipeline-logging-functions.sh │ ├── post-build │ │ ├── check-channel-consistency.ps1 │ │ ├── nuget-validation.ps1 │ │ ├── nuget-verification.ps1 │ │ ├── publish-using-darc.ps1 │ │ ├── redact-logs.ps1 │ │ ├── sourcelink-validation.ps1 │ │ └── symbols-validation.ps1 │ ├── retain-build.ps1 │ ├── sdk-task.ps1 │ ├── sdk-task.sh │ ├── sdl │ │ ├── NuGet.config │ │ ├── configure-sdl-tool.ps1 │ │ ├── execute-all-sdl-tools.ps1 │ │ ├── extract-artifact-archives.ps1 │ │ ├── extract-artifact-packages.ps1 │ │ ├── init-sdl.ps1 │ │ ├── packages.config │ │ ├── run-sdl.ps1 │ │ ├── sdl.ps1 │ │ └── trim-assets-version.ps1 │ ├── template-guidance.md │ ├── templates-official │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1-publish.yml │ │ └── variables │ │ │ ├── pool-providers.yml │ │ │ └── sdl-variables.yml │ ├── templates │ │ ├── job │ │ │ ├── job.yml │ │ │ ├── onelocbuild.yml │ │ │ ├── publish-build-assets.yml │ │ │ ├── source-build.yml │ │ │ └── source-index-stage1.yml │ │ ├── jobs │ │ │ ├── codeql-build.yml │ │ │ ├── jobs.yml │ │ │ └── source-build.yml │ │ ├── post-build │ │ │ ├── common-variables.yml │ │ │ ├── post-build.yml │ │ │ └── setup-maestro-vars.yml │ │ ├── steps │ │ │ ├── component-governance.yml │ │ │ ├── enable-internal-runtimes.yml │ │ │ ├── enable-internal-sources.yml │ │ │ ├── generate-sbom.yml │ │ │ ├── get-delegation-sas.yml │ │ │ ├── get-federated-access-token.yml │ │ │ ├── publish-build-artifacts.yml │ │ │ ├── publish-logs.yml │ │ │ ├── publish-pipeline-artifacts.yml │ │ │ ├── retain-build.yml │ │ │ ├── send-to-helix.yml │ │ │ ├── source-build.yml │ │ │ ├── source-index-stage1-publish.yml │ │ │ └── vmr-sync.yml │ │ ├── variables │ │ │ └── pool-providers.yml │ │ └── vmr-build-pr.yml │ ├── tools.ps1 │ ├── tools.sh │ ├── vmr-sync.ps1 │ └── vmr-sync.sh ├── validate-sdk.cmd └── validate-sdk.ps1 ├── es-metadata.yml ├── global.json ├── scripts ├── download-artifacts.ps1 ├── get-shipping-packages.ps1 ├── install-aspnet-codegenerator.cmd ├── install-aspnet-codegenerator.sh ├── install-msidentity.cmd ├── install-msidentity.sh ├── install-scaffold.cmd └── install-scaffold.sh ├── src ├── MSIdentityScaffolding │ ├── Microsoft.DotNet.MSIdentity │ │ ├── AuthenticationParameters │ │ │ ├── ApiPermission.cs │ │ │ ├── ApplicationParameters.cs │ │ │ ├── AzureAdProperties.cs │ │ │ └── PlatformType.cs │ │ ├── CodeReaderWriter │ │ │ ├── CodeFiles │ │ │ │ ├── Blazor │ │ │ │ │ ├── Server │ │ │ │ │ │ ├── CallWebApi.razor.txt │ │ │ │ │ │ ├── LoginDisplay.razor.txt │ │ │ │ │ │ └── ShowProfile.razor.txt │ │ │ │ │ └── wasm │ │ │ │ │ │ ├── Authentication.razor.txt │ │ │ │ │ │ ├── GraphClientExtensions.cs.txt │ │ │ │ │ │ ├── LoginDisplay.razor.txt │ │ │ │ │ │ ├── RedirectToLogin.razor.txt │ │ │ │ │ │ └── UserProfile.razor.txt │ │ │ │ └── WebApp │ │ │ │ │ └── _LoginPartial.cshtml.txt │ │ │ ├── CodeModifierConfigs │ │ │ │ ├── README.md │ │ │ │ ├── cm_dotnet_blazorserver.json │ │ │ │ ├── cm_dotnet_blazorwasm.json │ │ │ │ ├── cm_dotnet_blazorwasm_client.json │ │ │ │ ├── cm_dotnet_blazorwasm_hosted.json │ │ │ │ ├── cm_dotnet_minimal_api.json │ │ │ │ ├── cm_dotnet_webapi.json │ │ │ │ ├── cm_dotnet_webapp.json │ │ │ │ └── cm_dotnet_webapp_mvc.json │ │ │ ├── CodeReader.cs │ │ │ ├── CodeWriter.cs │ │ │ ├── ProjectAuthenticationSettings.cs │ │ │ └── ProjectModifier.cs │ │ ├── DeveloperCredentials │ │ │ ├── AzureManagementAuthenticationProvider.cs │ │ │ ├── DeveloperCredentialsReader.cs │ │ │ ├── IAzureManagementAuthenticationProvider.cs │ │ │ ├── IDeveloperCredentialsOptions.cs │ │ │ └── MsalTokenCredential.cs │ │ ├── Microsoft.DotNet.MSIdentity.csproj │ │ ├── MicrosoftIdentityPlatform │ │ │ ├── AppSettingsModifier.cs │ │ │ ├── MicrosoftIdentityPlatformApplicationManager.cs │ │ │ ├── ResourceAndScope.cs │ │ │ ├── TenantInformation.cs │ │ │ └── TokenCredentialAuthenticationProvider.cs │ │ ├── ProjectDescription │ │ │ ├── ConfigurationProperties.cs │ │ │ ├── DependencyGraphService.cs │ │ │ ├── IDependencyGraphService.cs │ │ │ ├── MatchesForProjectType.cs │ │ │ ├── ProjectDescription.cs │ │ │ ├── ProjectDescriptionReader.cs │ │ │ ├── PropertyMapping.cs │ │ │ └── Replacement.cs │ │ ├── ProjectDescriptions │ │ │ ├── ProjectTypes.cs │ │ │ ├── dotnet_blazor_server.json │ │ │ ├── dotnet_blazorwasm.json │ │ │ ├── dotnet_blazorwasm_client.json │ │ │ ├── dotnet_blazorwasm_hosted.json │ │ │ ├── dotnet_minimal_api.json │ │ │ ├── dotnet_web.json │ │ │ ├── dotnet_webapi.json │ │ │ ├── dotnet_webapp.json │ │ │ └── dotnet_webapp_mvc.json │ │ ├── Properties │ │ │ ├── AssemblyInfo.cs │ │ │ ├── Resources.Designer.cs │ │ │ └── Resources.resx │ │ ├── Resources │ │ │ └── Policies.txt │ │ ├── Summary │ │ │ ├── Change.cs │ │ │ └── Summary.cs │ │ └── Tool │ │ │ ├── AppProvisioningTool.cs │ │ │ ├── Commands.cs │ │ │ ├── GraphObjectRetriever.cs │ │ │ ├── IMsAADTool.cs │ │ │ ├── MsAADTool.cs │ │ │ └── ProvisioningToolOptions.cs │ ├── README.md │ └── dotnet-msidentity │ │ ├── MsAADToolFactory.cs │ │ ├── Program.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── ProvisioningToolOptionsBinder.cs │ │ ├── README.md │ │ └── dotnet-msidentity.csproj ├── Scaffolding │ ├── Directory.Build.props │ ├── README.md │ ├── Shared.props │ ├── VS.Web.CG.Core │ │ ├── ActionDescriptor.cs │ │ ├── ActionInvoker.cs │ │ ├── CodeGeneratorActionsService.cs │ │ ├── CodeGeneratorDescriptor.cs │ │ ├── CodeGeneratorsLocator.cs │ │ ├── CommandLine │ │ │ ├── AliasAttribute.cs │ │ │ ├── ArgumentAttribute.cs │ │ │ └── OptionAttribute.cs │ │ ├── DefaultCodeGeneratorAssemblyProvider.cs │ │ ├── ExceptionExtensions.cs │ │ ├── FilesLocator.cs │ │ ├── ICodeGenerator.cs │ │ ├── ICodeGeneratorActionsService.cs │ │ ├── ICodeGeneratorAssemblyProvider.cs │ │ ├── ICodeGeneratorLocator.cs │ │ ├── IFilesLocator.cs │ │ ├── IPackageInstaller.cs │ │ ├── MemberInfoExtensions.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── PackageInstaller.cs │ │ ├── PackageMetadata.cs │ │ ├── ParameterDescriptor.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── VS.Web.CG.Core.csproj │ │ └── baseline.netcore.json │ ├── VS.Web.CG.Design-anycpu │ │ └── VS.Web.CG.Design-anycpu.csproj │ ├── VS.Web.CG.Design-arm64 │ │ └── VS.Web.CG.Design-arm64.csproj │ ├── VS.Web.CG.Design │ │ ├── CodeGenCommandExecutor.cs │ │ ├── CodeGenerationEnvironmentHelper.cs │ │ ├── MessageOrchestrator.cs │ │ ├── Program.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── ScaffoldingClient.cs │ │ ├── ServiceProvider.cs │ │ ├── Shared.props │ │ ├── ToolCommandLineHelper.cs │ │ └── VS.Web.CG.Design.csproj │ ├── VS.Web.CG.EFCore │ │ ├── AssemblyAttributeGenerator.cs │ │ ├── ClassNameModel.cs │ │ ├── CodeModelMetadata.cs │ │ ├── CodeModelService.cs │ │ ├── ConnectionStringsWriter.cs │ │ ├── ContextProcessingResult.cs │ │ ├── DbContextEditorServices.cs │ │ ├── EditSyntaxTreeResult.cs │ │ ├── EntityFrameworkModelProcessor.cs │ │ ├── EntityFrameworkServices.cs │ │ ├── ICodeModelService.cs │ │ ├── IConnectionStringsWriter.cs │ │ ├── IDbContextEditorServices.cs │ │ ├── IEntityFrameworkService.cs │ │ ├── IModelMetadata.cs │ │ ├── INavigationMetadata.cs │ │ ├── IPropertyExtensions.cs │ │ ├── IPropertyMetadata.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── ModelMetadata.cs │ │ ├── NavigationMetadata.cs │ │ ├── NewDbContextTemplateModel.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── PropertyMetadata.cs │ │ ├── ReflectedTypesProvider.cs │ │ ├── RoslynCodeEditUtilities.cs │ │ ├── Templates │ │ │ └── DbContext │ │ │ │ └── NewLocalDbContext.cshtml │ │ ├── TypeUtil.cs │ │ ├── VS.Web.CG.EFCore.csproj │ │ └── baseline.netcore.json │ ├── VS.Web.CG.Msbuild │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── ProjectContextWriter.cs │ │ ├── ProjectReferenceInformationProvider.cs │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── Target │ │ │ ├── build │ │ │ │ └── Microsoft.VisualStudio.Web.CodeGeneration.Tools.targets │ │ │ └── buildMultiTargeting │ │ │ │ └── Microsoft.VisualStudio.Web.CodeGeneration.Tools.targets │ │ └── VS.Web.CG.Msbuild.csproj │ ├── VS.Web.CG.Mvc │ │ ├── Areas │ │ │ ├── AreaGenerator.cs │ │ │ └── AreaGeneratorCommandLine.cs │ │ ├── Blazor │ │ │ ├── BlazorModel.cs │ │ │ ├── BlazorWebCRUDGenerator.cs │ │ │ ├── BlazorWebCRUDGeneratorCommandLineModel.cs │ │ │ ├── BlazorWebCRUDHelper.cs │ │ │ └── blazorWebCrudChanges.json │ │ ├── BlazorIdentity │ │ │ ├── BlazorIdentityCommandLineModel.cs │ │ │ ├── BlazorIdentityGenerator.cs │ │ │ ├── BlazorIdentityHelper.cs │ │ │ ├── BlazorIdentityModel.cs │ │ │ └── blazorIdentityChanges.json │ │ ├── Common │ │ │ ├── ClassNameModel.cs │ │ │ ├── CommonCommandLineModel.cs │ │ │ ├── CommonGeneratorBase.cs │ │ │ ├── ModelTypeAndContextModel.cs │ │ │ ├── RequiredFileEntity.cs │ │ │ └── ValidationUtil.cs │ │ ├── Constants.cs │ │ ├── Controller │ │ │ ├── CommandLineGenerator.cs │ │ │ ├── CommandLineGeneratorModel.cs │ │ │ ├── ControllerEmpty.cs │ │ │ ├── ControllerGeneratorBase.cs │ │ │ ├── ControllerWithContextGenerator.cs │ │ │ ├── ControllerWithContextTemplateModel.cs │ │ │ └── MvcController.cs │ │ ├── Dependency │ │ │ ├── ReadMeGenerator.cs │ │ │ └── StartupContent.cs │ │ ├── Identity │ │ │ ├── IdentityGenerator.cs │ │ │ ├── IdentityGeneratorCommandLineModel.cs │ │ │ ├── IdentityGeneratorFile.cs │ │ │ ├── IdentityGeneratorFileComparer.cs │ │ │ ├── IdentityGeneratorFilesConfig.cs │ │ │ ├── IdentityGeneratorTemplateModel.cs │ │ │ ├── IdentityGeneratorTemplateModel2.cs │ │ │ ├── IdentityGeneratorTemplateModelBuilder.cs │ │ │ ├── IdentityHelper.cs │ │ │ ├── bootstrap4_identitygeneratorfilesconfig.json │ │ │ ├── bootstrap5_identitygeneratorfilesconfig.json │ │ │ └── identityMinimalHostingChanges.json │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── Minimal Api │ │ │ ├── MinimalApiGenerator.cs │ │ │ ├── MinimalApiGeneratorCommandLineModel.cs │ │ │ ├── MinimalApiModel.cs │ │ │ └── minimalApiChanges.json │ │ ├── ModelMetadataUtilities.cs │ │ ├── NameSpaceUtilities.cs │ │ ├── OverWriteCondition.cs │ │ ├── PackageConstants.cs │ │ ├── ParameterDefinitions │ │ │ ├── area.json │ │ │ ├── blazor-identity.json │ │ │ ├── blazor.json │ │ │ ├── controller.json │ │ │ ├── identity.json │ │ │ ├── minimalapi.json │ │ │ ├── razorpage.json │ │ │ └── view.json │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RazorPage │ │ │ ├── EFModelBasedRazorPageScaffolder.cs │ │ │ ├── EmptyRazorPageScaffolder.cs │ │ │ ├── RazorPageGenerator.cs │ │ │ ├── RazorPageGeneratorModel.cs │ │ │ ├── RazorPageGeneratorTemplateModel.cs │ │ │ ├── RazorPageGeneratorTemplateModel2.cs │ │ │ ├── RazorPageScaffolderBase.cs │ │ │ ├── RazorPageWithContextTemplateModel.cs │ │ │ └── RazorPageWithContextTemplateModel2.cs │ │ ├── THIRDPARTYNOTICE ASP.NET_Preview.rtf │ │ ├── Templates │ │ │ ├── Blazor │ │ │ │ ├── Create.Interfaces.cs │ │ │ │ ├── Create.cs │ │ │ │ ├── Create.tt │ │ │ │ ├── Delete.Interfaces.cs │ │ │ │ ├── Delete.cs │ │ │ │ ├── Delete.tt │ │ │ │ ├── Details.Interfaces.cs │ │ │ │ ├── Details.cs │ │ │ │ ├── Details.tt │ │ │ │ ├── Edit.Interfaces.cs │ │ │ │ ├── Edit.cs │ │ │ │ ├── Edit.tt │ │ │ │ ├── Index.Interfaces.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── Index.tt │ │ │ │ ├── NotFound.Interfaces.cs │ │ │ │ ├── NotFound.cs │ │ │ │ └── NotFound.tt │ │ │ ├── BlazorIdentity │ │ │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.Interfaces.cs │ │ │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.cs │ │ │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.tt │ │ │ │ ├── IdentityNoOpEmailSender.Interfaces.cs │ │ │ │ ├── IdentityNoOpEmailSender.cs │ │ │ │ ├── IdentityNoOpEmailSender.tt │ │ │ │ ├── IdentityRedirectManager.Interfaces.cs │ │ │ │ ├── IdentityRedirectManager.cs │ │ │ │ ├── IdentityRedirectManager.tt │ │ │ │ ├── IdentityRevalidatingAuthenticationStateProvider.Interfaces.cs │ │ │ │ ├── IdentityRevalidatingAuthenticationStateProvider.cs │ │ │ │ ├── IdentityRevalidatingAuthenticationStateProvider.tt │ │ │ │ ├── Pages │ │ │ │ │ ├── AccessDenied.Interfaces.cs │ │ │ │ │ ├── AccessDenied.cs │ │ │ │ │ ├── AccessDenied.tt │ │ │ │ │ ├── ConfirmEmail.Interfaces.cs │ │ │ │ │ ├── ConfirmEmail.cs │ │ │ │ │ ├── ConfirmEmail.tt │ │ │ │ │ ├── ConfirmEmailChange.Interfaces.cs │ │ │ │ │ ├── ConfirmEmailChange.cs │ │ │ │ │ ├── ConfirmEmailChange.tt │ │ │ │ │ ├── ExternalLogin.Interfaces.cs │ │ │ │ │ ├── ExternalLogin.cs │ │ │ │ │ ├── ExternalLogin.tt │ │ │ │ │ ├── ForgotPassword.Interfaces.cs │ │ │ │ │ ├── ForgotPassword.cs │ │ │ │ │ ├── ForgotPassword.tt │ │ │ │ │ ├── ForgotPasswordConfirmation.Interfaces.cs │ │ │ │ │ ├── ForgotPasswordConfirmation.cs │ │ │ │ │ ├── ForgotPasswordConfirmation.tt │ │ │ │ │ ├── InvalidPasswordReset.Interfaces.cs │ │ │ │ │ ├── InvalidPasswordReset.cs │ │ │ │ │ ├── InvalidPasswordReset.tt │ │ │ │ │ ├── InvalidUser.Interfaces.cs │ │ │ │ │ ├── InvalidUser.cs │ │ │ │ │ ├── InvalidUser.tt │ │ │ │ │ ├── Lockout.Interfaces.cs │ │ │ │ │ ├── Lockout.cs │ │ │ │ │ ├── Lockout.tt │ │ │ │ │ ├── Login.Interfaces.cs │ │ │ │ │ ├── Login.cs │ │ │ │ │ ├── Login.tt │ │ │ │ │ ├── LoginWith2fa.Interfaces.cs │ │ │ │ │ ├── LoginWith2fa.cs │ │ │ │ │ ├── LoginWith2fa.tt │ │ │ │ │ ├── LoginWithRecoveryCode.Interfaces.cs │ │ │ │ │ ├── LoginWithRecoveryCode.cs │ │ │ │ │ ├── LoginWithRecoveryCode.tt │ │ │ │ │ ├── Manage │ │ │ │ │ │ ├── ChangePassword.Interfaces.cs │ │ │ │ │ │ ├── ChangePassword.cs │ │ │ │ │ │ ├── ChangePassword.tt │ │ │ │ │ │ ├── DeletePersonalData.Interfaces.cs │ │ │ │ │ │ ├── DeletePersonalData.cs │ │ │ │ │ │ ├── DeletePersonalData.tt │ │ │ │ │ │ ├── Disable2fa.Interfaces.cs │ │ │ │ │ │ ├── Disable2fa.cs │ │ │ │ │ │ ├── Disable2fa.tt │ │ │ │ │ │ ├── Email.Interfaces.cs │ │ │ │ │ │ ├── Email.cs │ │ │ │ │ │ ├── Email.tt │ │ │ │ │ │ ├── EnableAuthenticator.Interfaces.cs │ │ │ │ │ │ ├── EnableAuthenticator.cs │ │ │ │ │ │ ├── EnableAuthenticator.tt │ │ │ │ │ │ ├── ExternalLogins.Interfaces.cs │ │ │ │ │ │ ├── ExternalLogins.cs │ │ │ │ │ │ ├── ExternalLogins.tt │ │ │ │ │ │ ├── GenerateRecoveryCodes.Interfaces.cs │ │ │ │ │ │ ├── GenerateRecoveryCodes.cs │ │ │ │ │ │ ├── GenerateRecoveryCodes.tt │ │ │ │ │ │ ├── Index.Interfaces.cs │ │ │ │ │ │ ├── Index.cs │ │ │ │ │ │ ├── Index.tt │ │ │ │ │ │ ├── Passkeys.Interfaces.cs │ │ │ │ │ │ ├── Passkeys.cs │ │ │ │ │ │ ├── Passkeys.tt │ │ │ │ │ │ ├── PersonalData.Interfaces.cs │ │ │ │ │ │ ├── PersonalData.cs │ │ │ │ │ │ ├── PersonalData.tt │ │ │ │ │ │ ├── RenamePasskey.Interfaces.cs │ │ │ │ │ │ ├── RenamePasskey.cs │ │ │ │ │ │ ├── RenamePasskey.tt │ │ │ │ │ │ ├── ResetAuthenticator.Interfaces.cs │ │ │ │ │ │ ├── ResetAuthenticator.cs │ │ │ │ │ │ ├── ResetAuthenticator.tt │ │ │ │ │ │ ├── SetPassword.Interfaces.cs │ │ │ │ │ │ ├── SetPassword.cs │ │ │ │ │ │ ├── SetPassword.tt │ │ │ │ │ │ ├── TwoFactorAuthentication.Interfaces.cs │ │ │ │ │ │ ├── TwoFactorAuthentication.cs │ │ │ │ │ │ ├── TwoFactorAuthentication.tt │ │ │ │ │ │ ├── _Imports.Interfaces.cs │ │ │ │ │ │ ├── _Imports.cs │ │ │ │ │ │ └── _Imports.tt │ │ │ │ │ ├── Register.Interfaces.cs │ │ │ │ │ ├── Register.cs │ │ │ │ │ ├── Register.tt │ │ │ │ │ ├── RegisterConfirmation.Interfaces.cs │ │ │ │ │ ├── RegisterConfirmation.cs │ │ │ │ │ ├── RegisterConfirmation.tt │ │ │ │ │ ├── ResendEmailConfirmation.Interfaces.cs │ │ │ │ │ ├── ResendEmailConfirmation.cs │ │ │ │ │ ├── ResendEmailConfirmation.tt │ │ │ │ │ ├── ResetPassword.Interfaces.cs │ │ │ │ │ ├── ResetPassword.cs │ │ │ │ │ ├── ResetPassword.tt │ │ │ │ │ ├── ResetPasswordConfirmation.Interfaces.cs │ │ │ │ │ ├── ResetPasswordConfirmation.cs │ │ │ │ │ ├── ResetPasswordConfirmation.tt │ │ │ │ │ ├── _Imports.Interfaces.cs │ │ │ │ │ ├── _Imports.cs │ │ │ │ │ └── _Imports.tt │ │ │ │ ├── PasskeyInputModel.Interfaces.cs │ │ │ │ ├── PasskeyInputModel.cs │ │ │ │ ├── PasskeyInputModel.tt │ │ │ │ ├── PasskeyOperation.Interfaces.cs │ │ │ │ ├── PasskeyOperation.cs │ │ │ │ ├── PasskeyOperation.tt │ │ │ │ └── Shared │ │ │ │ │ ├── ExternalLoginPicker.Interfaces.cs │ │ │ │ │ ├── ExternalLoginPicker.cs │ │ │ │ │ ├── ExternalLoginPicker.tt │ │ │ │ │ ├── ManageLayout.Interfaces.cs │ │ │ │ │ ├── ManageLayout.cs │ │ │ │ │ ├── ManageLayout.tt │ │ │ │ │ ├── ManageNavMenu.Interfaces.cs │ │ │ │ │ ├── ManageNavMenu.cs │ │ │ │ │ ├── ManageNavMenu.tt │ │ │ │ │ ├── PasskeySubmit.Interfaces.cs │ │ │ │ │ ├── PasskeySubmit.cs │ │ │ │ │ ├── PasskeySubmit.razor.js │ │ │ │ │ ├── PasskeySubmit.tt │ │ │ │ │ ├── RedirectToLogin.Interfaces.cs │ │ │ │ │ ├── RedirectToLogin.cs │ │ │ │ │ ├── RedirectToLogin.tt │ │ │ │ │ ├── ShowRecoveryCodes.Interfaces.cs │ │ │ │ │ ├── ShowRecoveryCodes.cs │ │ │ │ │ ├── ShowRecoveryCodes.tt │ │ │ │ │ ├── StatusMessage.Interfaces.cs │ │ │ │ │ ├── StatusMessage.cs │ │ │ │ │ └── StatusMessage.tt │ │ │ ├── ControllerGenerator │ │ │ │ ├── ApiControllerWithContext.cshtml │ │ │ │ └── MvcControllerWithContext.cshtml │ │ │ ├── General │ │ │ │ ├── IdentityApplicationUser.Interfaces.cs │ │ │ │ ├── IdentityApplicationUser.cs │ │ │ │ ├── IdentityApplicationUser.tt │ │ │ │ ├── IdentityApplicationUserModel.cs │ │ │ │ ├── IdentityDbContext.Interfaces.cs │ │ │ │ ├── IdentityDbContext.cs │ │ │ │ ├── IdentityDbContext.tt │ │ │ │ └── IdentityDbContextModel.cs │ │ │ ├── Identity │ │ │ │ ├── Bootstrap4 │ │ │ │ │ ├── Data │ │ │ │ │ │ ├── ApplicationDbContext.cshtml │ │ │ │ │ │ └── ApplicationUser.cshtml │ │ │ │ │ ├── IdentityHostingStartup.cshtml │ │ │ │ │ ├── Pages │ │ │ │ │ │ ├── Account │ │ │ │ │ │ │ ├── Account.AccessDenied.cs.cshtml │ │ │ │ │ │ │ ├── Account.AccessDenied.cshtml │ │ │ │ │ │ │ ├── Account.ConfirmEmail.cs.cshtml │ │ │ │ │ │ │ ├── Account.ConfirmEmail.cshtml │ │ │ │ │ │ │ ├── Account.ConfirmEmailChange.cs.cshtml │ │ │ │ │ │ │ ├── Account.ConfirmEmailChange.cshtml │ │ │ │ │ │ │ ├── Account.ExternalLogin.cs.cshtml │ │ │ │ │ │ │ ├── Account.ExternalLogin.cshtml │ │ │ │ │ │ │ ├── Account.ForgotPassword.cs.cshtml │ │ │ │ │ │ │ ├── Account.ForgotPassword.cshtml │ │ │ │ │ │ │ ├── Account.ForgotPasswordConfirmation.cs.cshtml │ │ │ │ │ │ │ ├── Account.ForgotPasswordConfirmation.cshtml │ │ │ │ │ │ │ ├── Account.Lockout.cs.cshtml │ │ │ │ │ │ │ ├── Account.Lockout.cshtml │ │ │ │ │ │ │ ├── Account.Login.cs.cshtml │ │ │ │ │ │ │ ├── Account.Login.cshtml │ │ │ │ │ │ │ ├── Account.LoginWith2fa.cs.cshtml │ │ │ │ │ │ │ ├── Account.LoginWith2fa.cshtml │ │ │ │ │ │ │ ├── Account.LoginWithRecoveryCode.cs.cshtml │ │ │ │ │ │ │ ├── Account.LoginWithRecoveryCode.cshtml │ │ │ │ │ │ │ ├── Account.Logout.cs.cshtml │ │ │ │ │ │ │ ├── Account.Logout.cshtml │ │ │ │ │ │ │ ├── Account.Register.cs.cshtml │ │ │ │ │ │ │ ├── Account.Register.cshtml │ │ │ │ │ │ │ ├── Account.RegisterConfirmation.cs.cshtml │ │ │ │ │ │ │ ├── Account.RegisterConfirmation.cshtml │ │ │ │ │ │ │ ├── Account.ResendEmailConfirmation.cs.cshtml │ │ │ │ │ │ │ ├── Account.ResendEmailConfirmation.cshtml │ │ │ │ │ │ │ ├── Account.ResetPassword.cs.cshtml │ │ │ │ │ │ │ ├── Account.ResetPassword.cshtml │ │ │ │ │ │ │ ├── Account.ResetPasswordConfirmation.cs.cshtml │ │ │ │ │ │ │ ├── Account.ResetPasswordConfirmation.cshtml │ │ │ │ │ │ │ ├── Account._StatusMessage.cshtml │ │ │ │ │ │ │ ├── Account._ViewImports.cshtml │ │ │ │ │ │ │ └── Manage │ │ │ │ │ │ │ │ ├── Account.Manage.ChangePassword.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ChangePassword.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.DeletePersonalData.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.DeletePersonalData.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Disable2fa.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Disable2fa.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.DownloadPersonalData.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.DownloadPersonalData.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Email.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Email.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.EnableAuthenticator.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.EnableAuthenticator.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ExternalLogins.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ExternalLogins.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.GenerateRecoveryCodes.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.GenerateRecoveryCodes.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Index.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.Index.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ManageNavPages.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.PersonalData.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.PersonalData.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ResetAuthenticator.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ResetAuthenticator.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.SetPassword.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.SetPassword.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ShowRecoveryCodes.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.ShowRecoveryCodes.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.TwoFactorAuthentication.cs.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage.TwoFactorAuthentication.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage._Layout.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage._ManageNav.cshtml │ │ │ │ │ │ │ │ ├── Account.Manage._StatusMessage.cshtml │ │ │ │ │ │ │ │ └── Account.Manage._ViewImports.cshtml │ │ │ │ │ │ ├── Error.cs.cshtml │ │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ ├── ScaffoldingReadme.cshtml │ │ │ │ │ ├── SupportPages._CookieConsentPartial.cshtml │ │ │ │ │ ├── SupportPages._ViewImports.cshtml │ │ │ │ │ ├── SupportPages._ViewStart.cshtml │ │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── wwwroot │ │ │ │ │ │ ├── css │ │ │ │ │ │ └── site.css │ │ │ │ │ │ ├── favicon.ico │ │ │ │ │ │ ├── js │ │ │ │ │ │ └── site.js │ │ │ │ │ │ └── lib │ │ │ │ │ │ ├── bootstrap │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ ├── css │ │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ │ └── bootstrap.min.css.map │ │ │ │ │ │ │ └── js │ │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ │ ├── jquery-validation │ │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ │ └── dist │ │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ │ └── jquery │ │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ │ └── dist │ │ │ │ │ │ ├── jquery.js │ │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ │ └── jquery.slim.min.map │ │ │ │ └── Bootstrap5 │ │ │ │ │ ├── Data │ │ │ │ │ ├── ApplicationDbContext.cshtml │ │ │ │ │ └── ApplicationUser.cshtml │ │ │ │ │ ├── IdentityHostingStartup.cshtml │ │ │ │ │ ├── Pages │ │ │ │ │ ├── Account │ │ │ │ │ │ ├── Account.AccessDenied.cs.cshtml │ │ │ │ │ │ ├── Account.AccessDenied.cshtml │ │ │ │ │ │ ├── Account.ConfirmEmail.cs.cshtml │ │ │ │ │ │ ├── Account.ConfirmEmail.cshtml │ │ │ │ │ │ ├── Account.ConfirmEmailChange.cs.cshtml │ │ │ │ │ │ ├── Account.ConfirmEmailChange.cshtml │ │ │ │ │ │ ├── Account.ExternalLogin.cs.cshtml │ │ │ │ │ │ ├── Account.ExternalLogin.cshtml │ │ │ │ │ │ ├── Account.ForgotPassword.cs.cshtml │ │ │ │ │ │ ├── Account.ForgotPassword.cshtml │ │ │ │ │ │ ├── Account.ForgotPasswordConfirmation.cs.cshtml │ │ │ │ │ │ ├── Account.ForgotPasswordConfirmation.cshtml │ │ │ │ │ │ ├── Account.Lockout.cs.cshtml │ │ │ │ │ │ ├── Account.Lockout.cshtml │ │ │ │ │ │ ├── Account.Login.cs.cshtml │ │ │ │ │ │ ├── Account.Login.cshtml │ │ │ │ │ │ ├── Account.LoginWith2fa.cs.cshtml │ │ │ │ │ │ ├── Account.LoginWith2fa.cshtml │ │ │ │ │ │ ├── Account.LoginWithRecoveryCode.cs.cshtml │ │ │ │ │ │ ├── Account.LoginWithRecoveryCode.cshtml │ │ │ │ │ │ ├── Account.Logout.cs.cshtml │ │ │ │ │ │ ├── Account.Logout.cshtml │ │ │ │ │ │ ├── Account.Register.cs.cshtml │ │ │ │ │ │ ├── Account.Register.cshtml │ │ │ │ │ │ ├── Account.RegisterConfirmation.cs.cshtml │ │ │ │ │ │ ├── Account.RegisterConfirmation.cshtml │ │ │ │ │ │ ├── Account.ResendEmailConfirmation.cs.cshtml │ │ │ │ │ │ ├── Account.ResendEmailConfirmation.cshtml │ │ │ │ │ │ ├── Account.ResetPassword.cs.cshtml │ │ │ │ │ │ ├── Account.ResetPassword.cshtml │ │ │ │ │ │ ├── Account.ResetPasswordConfirmation.cs.cshtml │ │ │ │ │ │ ├── Account.ResetPasswordConfirmation.cshtml │ │ │ │ │ │ ├── Account._StatusMessage.cshtml │ │ │ │ │ │ ├── Account._ViewImports.cshtml │ │ │ │ │ │ └── Manage │ │ │ │ │ │ │ ├── Account.Manage.ChangePassword.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ChangePassword.cshtml │ │ │ │ │ │ │ ├── Account.Manage.DeletePersonalData.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.DeletePersonalData.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Disable2fa.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Disable2fa.cshtml │ │ │ │ │ │ │ ├── Account.Manage.DownloadPersonalData.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.DownloadPersonalData.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Email.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Email.cshtml │ │ │ │ │ │ │ ├── Account.Manage.EnableAuthenticator.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.EnableAuthenticator.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ExternalLogins.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ExternalLogins.cshtml │ │ │ │ │ │ │ ├── Account.Manage.GenerateRecoveryCodes.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.GenerateRecoveryCodes.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Index.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.Index.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ManageNavPages.cshtml │ │ │ │ │ │ │ ├── Account.Manage.PersonalData.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.PersonalData.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ResetAuthenticator.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ResetAuthenticator.cshtml │ │ │ │ │ │ │ ├── Account.Manage.SetPassword.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.SetPassword.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ShowRecoveryCodes.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.ShowRecoveryCodes.cshtml │ │ │ │ │ │ │ ├── Account.Manage.TwoFactorAuthentication.cs.cshtml │ │ │ │ │ │ │ ├── Account.Manage.TwoFactorAuthentication.cshtml │ │ │ │ │ │ │ ├── Account.Manage._Layout.cshtml │ │ │ │ │ │ │ ├── Account.Manage._ManageNav.cshtml │ │ │ │ │ │ │ ├── Account.Manage._StatusMessage.cshtml │ │ │ │ │ │ │ ├── Account.Manage._ViewImports.cshtml │ │ │ │ │ │ │ └── Account.Manage._ViewStart.cshtml │ │ │ │ │ ├── Error.cs.cshtml │ │ │ │ │ ├── Error.cshtml │ │ │ │ │ ├── _Layout.cshtml │ │ │ │ │ ├── _ValidationScriptsPartial.cshtml │ │ │ │ │ ├── _ViewImports.cshtml │ │ │ │ │ └── _ViewStart.cshtml │ │ │ │ │ ├── ScaffoldingReadme.cshtml │ │ │ │ │ ├── SupportPages._CookieConsentPartial.cshtml │ │ │ │ │ ├── SupportPages._ViewImports.cshtml │ │ │ │ │ ├── SupportPages._ViewStart.cshtml │ │ │ │ │ ├── _LoginPartial.cshtml │ │ │ │ │ ├── package-lock.json │ │ │ │ │ ├── package.json │ │ │ │ │ └── wwwroot │ │ │ │ │ ├── css │ │ │ │ │ └── site.css │ │ │ │ │ ├── favicon.ico │ │ │ │ │ ├── js │ │ │ │ │ └── site.js │ │ │ │ │ └── lib │ │ │ │ │ ├── bootstrap │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── dist │ │ │ │ │ │ ├── css │ │ │ │ │ │ ├── bootstrap-grid.css │ │ │ │ │ │ ├── bootstrap-grid.css.map │ │ │ │ │ │ ├── bootstrap-grid.min.css │ │ │ │ │ │ ├── bootstrap-grid.min.css.map │ │ │ │ │ │ ├── bootstrap-grid.rtl.css │ │ │ │ │ │ ├── bootstrap-grid.rtl.css.map │ │ │ │ │ │ ├── bootstrap-grid.rtl.min.css │ │ │ │ │ │ ├── bootstrap-grid.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.css │ │ │ │ │ │ ├── bootstrap-reboot.css.map │ │ │ │ │ │ ├── bootstrap-reboot.min.css │ │ │ │ │ │ ├── bootstrap-reboot.min.css.map │ │ │ │ │ │ ├── bootstrap-reboot.rtl.css │ │ │ │ │ │ ├── bootstrap-reboot.rtl.css.map │ │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css │ │ │ │ │ │ ├── bootstrap-reboot.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap-utilities.css │ │ │ │ │ │ ├── bootstrap-utilities.css.map │ │ │ │ │ │ ├── bootstrap-utilities.min.css │ │ │ │ │ │ ├── bootstrap-utilities.min.css.map │ │ │ │ │ │ ├── bootstrap-utilities.rtl.css │ │ │ │ │ │ ├── bootstrap-utilities.rtl.css.map │ │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css │ │ │ │ │ │ ├── bootstrap-utilities.rtl.min.css.map │ │ │ │ │ │ ├── bootstrap.css │ │ │ │ │ │ ├── bootstrap.css.map │ │ │ │ │ │ ├── bootstrap.min.css │ │ │ │ │ │ ├── bootstrap.min.css.map │ │ │ │ │ │ ├── bootstrap.rtl.css │ │ │ │ │ │ ├── bootstrap.rtl.css.map │ │ │ │ │ │ ├── bootstrap.rtl.min.css │ │ │ │ │ │ └── bootstrap.rtl.min.css.map │ │ │ │ │ │ └── js │ │ │ │ │ │ ├── bootstrap.bundle.js │ │ │ │ │ │ ├── bootstrap.bundle.js.map │ │ │ │ │ │ ├── bootstrap.bundle.min.js │ │ │ │ │ │ ├── bootstrap.bundle.min.js.map │ │ │ │ │ │ ├── bootstrap.esm.js │ │ │ │ │ │ ├── bootstrap.esm.js.map │ │ │ │ │ │ ├── bootstrap.esm.min.js │ │ │ │ │ │ ├── bootstrap.esm.min.js.map │ │ │ │ │ │ ├── bootstrap.js │ │ │ │ │ │ ├── bootstrap.js.map │ │ │ │ │ │ ├── bootstrap.min.js │ │ │ │ │ │ └── bootstrap.min.js.map │ │ │ │ │ ├── jquery-validation-unobtrusive │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ │ ├── jquery.validate.unobtrusive.js │ │ │ │ │ │ └── jquery.validate.unobtrusive.min.js │ │ │ │ │ ├── jquery-validation │ │ │ │ │ ├── LICENSE.md │ │ │ │ │ └── dist │ │ │ │ │ │ ├── additional-methods.js │ │ │ │ │ │ ├── additional-methods.min.js │ │ │ │ │ │ ├── jquery.validate.js │ │ │ │ │ │ └── jquery.validate.min.js │ │ │ │ │ └── jquery │ │ │ │ │ ├── LICENSE.txt │ │ │ │ │ └── dist │ │ │ │ │ ├── jquery.js │ │ │ │ │ ├── jquery.min.js │ │ │ │ │ ├── jquery.min.map │ │ │ │ │ ├── jquery.slim.js │ │ │ │ │ ├── jquery.slim.min.js │ │ │ │ │ └── jquery.slim.min.map │ │ │ ├── MinimalApi │ │ │ │ ├── MinimalApi.cshtml │ │ │ │ ├── MinimalApiEf.cshtml │ │ │ │ ├── MinimalApiEfNoClass.cshtml │ │ │ │ └── MinimalApiNoClass.cshtml │ │ │ ├── MvcLayout │ │ │ │ ├── Error.cshtml │ │ │ │ └── _Layout.cshtml │ │ │ ├── RazorPageGenerator │ │ │ │ ├── Bootstrap4 │ │ │ │ │ ├── Create.cshtml │ │ │ │ │ ├── CreatePageModel.cshtml │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ ├── DeletePageModel.cshtml │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ ├── DetailsPageModel.cshtml │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ ├── EditPageModel.cshtml │ │ │ │ │ ├── List.cshtml │ │ │ │ │ ├── ListPageModel.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ └── Bootstrap5 │ │ │ │ │ ├── Create.cshtml │ │ │ │ │ ├── CreatePageModel.cshtml │ │ │ │ │ ├── Delete.cshtml │ │ │ │ │ ├── DeletePageModel.cshtml │ │ │ │ │ ├── Details.cshtml │ │ │ │ │ ├── DetailsPageModel.cshtml │ │ │ │ │ ├── Edit.cshtml │ │ │ │ │ ├── EditPageModel.cshtml │ │ │ │ │ ├── List.cshtml │ │ │ │ │ ├── ListPageModel.cshtml │ │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── Startup │ │ │ │ ├── ReadMe.cshtml │ │ │ │ └── Startup.cshtml │ │ │ └── ViewGenerator │ │ │ │ ├── Bootstrap4 │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Empty.cshtml │ │ │ │ ├── List.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ │ └── Bootstrap5 │ │ │ │ ├── Create.cshtml │ │ │ │ ├── Delete.cshtml │ │ │ │ ├── Details.cshtml │ │ │ │ ├── Edit.cshtml │ │ │ │ ├── Empty.cshtml │ │ │ │ ├── List.cshtml │ │ │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── VS.Web.CG.Mvc.csproj │ │ ├── View │ │ │ ├── EFModelBasedViewScaffolder.cs │ │ │ ├── EmptyViewScaffolder.cs │ │ │ ├── ModelBasedViewScaffolder.cs │ │ │ ├── ViewGenerator.cs │ │ │ ├── ViewGeneratorModel.cs │ │ │ ├── ViewGeneratorTemplateModel.cs │ │ │ ├── ViewScaffolderBase.cs │ │ │ └── ViewTemplate.cs │ │ ├── baseline.netcore.json │ │ ├── breakingchanges.netcore.json │ │ └── js │ │ │ └── copyDependency.mjs │ ├── VS.Web.CG.Templating │ │ ├── Compilation │ │ │ ├── CompilationResult.cs │ │ │ ├── ICompilationService.cs │ │ │ └── RoslynCompilationService.cs │ │ ├── ITemplating.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── Properties │ │ │ └── AssemblyInfo.cs │ │ ├── RazorTemplateBase.cs │ │ ├── RazorTemplating.cs │ │ ├── TemplateProcessingException.cs │ │ ├── TemplateRazorProjectItem.cs │ │ ├── TemplateResult.cs │ │ ├── TypeUtilities.cs │ │ ├── VS.Web.CG.Templating.csproj │ │ └── baseline.netcore.json │ ├── VS.Web.CG.Utils │ │ ├── CommonUtilities.cs │ │ ├── CompilationResult.cs │ │ ├── DotNet │ │ │ ├── ApplicationInfo.cs │ │ │ ├── DefaultAssemblyLoadContext.cs │ │ │ ├── IApplicationInfo.cs │ │ │ ├── ICodeGenAssemblyLoadContext.cs │ │ │ └── ResolvedReferenceExtensions.cs │ │ ├── ExceptionUtilities.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── PlatformHelper.cs │ │ ├── Resource.Designer.cs │ │ ├── Resource.resx │ │ ├── TemplateFoldersUtilities.cs │ │ ├── VS.Web.CG.Utils.csproj │ │ ├── Workspaces │ │ │ ├── RoslynWorkspace.cs │ │ │ └── RoslynWorkspaceHelper.cs │ │ └── baseline.netcore.json │ ├── VS.Web.CG │ │ ├── CodeGenCommand.cs │ │ ├── VS.Web.CG.csproj │ │ └── baseline.netcore.json │ └── dotnet-aspnet-codegenerator │ │ ├── DotNetBuildCommandHelper.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── ParamDefinition.cs │ │ ├── Program.cs │ │ ├── ProjectFileFinder.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── ScaffoldingApp.cs │ │ ├── ScaffoldingServer.cs │ │ ├── TargetInstaller.cs │ │ ├── ToolCommandLineHelper.cs │ │ ├── compiler │ │ └── resources │ │ │ └── Imports.targets │ │ └── dotnet-aspnet-codegenerator.csproj ├── Shared │ └── Microsoft.DotNet.Scaffolding.Shared │ │ ├── Cli.Utils │ │ ├── ArgumentEscaper.cs │ │ ├── Command.cs │ │ ├── CommandResult.cs │ │ ├── DotNetMuxer.cs │ │ └── DotnetCommands.cs │ │ ├── CodeModifier │ │ ├── CodeAnalysisHelper.cs │ │ ├── CodeChange │ │ │ ├── CodeChangeHelper.cs │ │ │ ├── CodeFile.cs │ │ │ ├── CodeSnippet.cs │ │ │ └── Method.cs │ │ ├── CodeModifierConfig.cs │ │ ├── DocumentBuilder.cs │ │ └── ProjectExtensions.cs │ │ ├── DefaultFileSystem.cs │ │ ├── DotNetDispatcher │ │ └── DotnetToolDispatcher.cs │ │ ├── EFValidationUtil.cs │ │ ├── FileSystemChange │ │ ├── FileSystemChangeInformation.cs │ │ └── FileSystemChangeType.cs │ │ ├── FileSystemChangeTracker.cs │ │ ├── General │ │ ├── ConsoleLogger.cs │ │ ├── ILogger.cs │ │ ├── LogMessageLevel.cs │ │ ├── ProjectInformation.cs │ │ ├── Requires.cs │ │ └── StringUtil.cs │ │ ├── IFileSystem.cs │ │ ├── IFileSystemChangeTracker.cs │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── Messaging │ │ ├── FileSystemChangeMessageHandler.cs │ │ ├── IMessageHandler.cs │ │ ├── IMessageSender.cs │ │ ├── Message.cs │ │ ├── MessageHandlerBase.cs │ │ ├── MessageTypes.cs │ │ └── ProjectInformationMessageHandler.cs │ │ ├── Microsoft.DotNet.Scaffolding.Shared.csproj │ │ ├── MsBuild │ │ ├── MessageStrings.Designer.cs │ │ ├── MessageStrings.resx │ │ ├── MsBuildProjectContextBuilder.cs │ │ └── MsBuildProjectFinder.cs │ │ ├── MsIdentity │ │ ├── ConsoleLogger.cs │ │ ├── IConsoleLogger.cs │ │ └── JsonResponse.cs │ │ ├── Project │ │ ├── IModelTypesLocator.cs │ │ ├── ModelType.cs │ │ ├── ModelTypesLocator.cs │ │ ├── ProjectModifierHelper.cs │ │ └── RoslynUtilities.cs │ │ ├── ProjectModel │ │ ├── CommonProjectContext.cs │ │ ├── Dependency.cs │ │ ├── DependencyDescription.cs │ │ ├── DependencyType.cs │ │ ├── IProjectContext.cs │ │ ├── ProjectContextExtensions.cs │ │ ├── ProjectContextHelper.cs │ │ ├── ProjectModelHelper.cs │ │ ├── ProjectReferenceInformation.cs │ │ └── ResolvedReference.cs │ │ ├── Properties │ │ └── AssemblyInfo.cs │ │ ├── SharedConstants.cs │ │ ├── SimulationModeFileSystem.cs │ │ ├── T4Templating │ │ ├── CallContext.cs │ │ ├── ITemplateInvoker.cs │ │ ├── ITextTransformation.cs │ │ ├── TemplateInvoker.cs │ │ └── TextTemplatingEngineHost.cs │ │ └── baseline.netcore.json └── dotnet-scaffolding │ ├── Directory.Build.props │ ├── Directory.Packages.props │ ├── Microsoft.DotNet.Scaffolding.CodeModification │ ├── CodeChange │ │ ├── CodeBlock.cs │ │ ├── CodeChangeType.cs │ │ ├── CodeFile.cs │ │ ├── CodeSnippet.cs │ │ ├── Formatting.cs │ │ └── Method.cs │ ├── CodeModification │ │ ├── ClassModifier.cs │ │ ├── CodeModifierConfig.cs │ │ ├── CodeModifierConfigExtensions.cs │ │ ├── DocumentBuilder.cs │ │ ├── EfModelProperties.cs │ │ └── ProjectModifier.cs │ ├── CodeModificationStep.cs │ ├── Constants.cs │ ├── Helpers │ │ ├── CodeModifierConfigHelper.cs │ │ ├── EfDbContextHelpers.cs │ │ ├── ProjectModelHelper.cs │ │ └── ProjectModifierHelper.cs │ ├── Microsoft.DotNet.Scaffolding.CodeModification.csproj │ └── README.md │ ├── Microsoft.DotNet.Scaffolding.Core │ ├── Builder │ │ ├── IScaffoldBuilder.cs │ │ ├── IScaffoldRunner.cs │ │ ├── IScaffoldRunnerBuilder.cs │ │ ├── ScaffoldBuilder.cs │ │ ├── ScaffoldRunner.cs │ │ ├── ScaffoldRunnerBuilder.cs │ │ ├── ScaffoldStepConfigurator.cs │ │ ├── ScaffoldStepPreparer.cs │ │ ├── ScaffoldStepPreparerOfT.cs │ │ ├── ScaffolderOption.cs │ │ └── ScaffolderOptionOfT.cs │ ├── CommandLine │ │ ├── CommandLineExtensions.cs │ │ └── DotnetCommands.cs │ ├── ComponentModel │ │ ├── CliTypes.cs │ │ ├── CommandInfo.cs │ │ ├── CommandInfoExtensions.cs │ │ ├── DotnetToolInfo.cs │ │ ├── InteractivePickerType.cs │ │ ├── Parameter.cs │ │ ├── ParameterHelpers.cs │ │ └── ScaffolderConstants.cs │ ├── Hosting │ │ └── Host.cs │ ├── Logging │ │ ├── CleanConsoleFormatter.cs │ │ ├── CleanConsoleFormatterOptions.cs │ │ └── ConsoleLoggerExtensions.cs │ ├── Microsoft.DotNet.Scaffolding.Core.csproj │ ├── NuGet │ │ ├── NuGetVersionService.cs │ │ ├── Package.cs │ │ └── TargetFrameworkConstants.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── Scaffolders │ │ ├── IScaffolder.cs │ │ ├── Scaffolder.cs │ │ ├── ScaffolderCatagory.cs │ │ ├── ScaffolderContext.cs │ │ └── ScaffolderContextExtensions.cs │ └── Steps │ │ ├── AddPackagesStep.cs │ │ └── ScaffoldStep.cs │ ├── Microsoft.DotNet.Scaffolding.Internal │ ├── CliHelpers │ │ ├── ArgumentEscaper.cs │ │ ├── AzCliRunner.cs │ │ ├── DotnetCliRunner.cs │ │ └── ProcessOutputStreamReader.cs │ ├── Constants.cs │ ├── Extensions │ │ ├── ServiceCollectionExtensions.cs │ │ └── StringExtensions.cs │ ├── GlobalToolFileFinder.cs │ ├── Microsoft.DotNet.Scaffolding.Internal.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ ├── Strings.Designer.cs │ │ └── Strings.resx │ ├── Services │ │ ├── AppSettings.cs │ │ ├── DockerContainerDetector.cs │ │ ├── EnvironmentService.cs │ │ ├── FileSystem.cs │ │ ├── FirstPartyToolTelemetryWrapper.cs │ │ ├── FirstTimeUseNoticeSentinel.cs │ │ ├── IAppSettings.cs │ │ ├── IEnvironmentService.cs │ │ ├── IFileSystem.cs │ │ ├── IFirstPartyToolTelemetryWrapper.cs │ │ ├── IFirstTimeUseNoticeSentinel.cs │ │ ├── ITelemetryService.cs │ │ ├── MacAddressGetter.cs │ │ ├── TelemetryService.cs │ │ └── WorkspaceSettings.cs │ ├── StringUtil.cs │ └── Telemetry │ │ ├── TelemetryCommonProperties.cs │ │ ├── TelemetryConstants.cs │ │ ├── TelemetryEventBase.cs │ │ └── TelemetryExtensions.cs │ ├── Microsoft.DotNet.Scaffolding.Roslyn │ ├── Extensions │ │ ├── ClassDeclarationSyntaxExtensions.cs │ │ └── RoslynExtensions.cs │ ├── Helpers │ │ └── MSBuildProjectServiceHelper.cs │ ├── Microsoft.DotNet.Scaffolding.Roslyn.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── RoslynUtilities.cs │ └── Services │ │ ├── CodeService.cs │ │ ├── ICodeService.cs │ │ ├── IMSBuildProjectService.cs │ │ ├── MSBuildProjectService.cs │ │ └── MsBuildInitializer.cs │ ├── Microsoft.DotNet.Scaffolding.TextTemplating │ ├── CallContext.cs │ ├── Constants.cs │ ├── DbContext │ │ ├── DbContextHelper.cs │ │ ├── DbContextProperties.cs │ │ ├── NewDbContext.Interfaces.cs │ │ ├── NewDbContext.cs │ │ └── NewDbContext.tt │ ├── ITemplateFolderUtilities.cs │ ├── ITemplateInvoker.cs │ ├── ITextTransformation.cs │ ├── Microsoft.DotNet.Scaffolding.TextTemplating.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── README.md │ ├── ScaffolderBuilderExtensions.cs │ ├── TemplateFolderUtilities.cs │ ├── TemplateInvoker.cs │ ├── TextTemplatingEngineHost.cs │ ├── TextTemplatingProperty.cs │ └── TextTemplatingStep.cs │ └── dotnet-scaffold │ ├── AspNet │ ├── AspNetCommandService.cs │ ├── CodeModificationConfigs │ │ ├── blazorEntraChanges.json │ │ ├── blazorIdentityChanges.json │ │ ├── blazorWasmEntraChanges.json │ │ ├── blazorWebCrudChanges.json │ │ ├── efControllerChanges.json │ │ ├── identityChanges.json │ │ ├── minimalApiChanges.json │ │ ├── razorPagesChanges.json │ │ └── test.json │ ├── Commands │ │ ├── AspNetOptions.cs │ │ └── AspnetStrings.cs │ ├── Common │ │ ├── ClassAnalyzers.cs │ │ ├── Constants.cs │ │ ├── DbContextInfo.cs │ │ ├── ModelInfo.cs │ │ ├── PackageConstants.cs │ │ ├── ProjectInfo.cs │ │ └── ProjectReferenceParser.cs │ ├── Extensions │ │ ├── BlazorCrudScaffolderBuilderExtensions.cs │ │ ├── BlazorEntraScaffolderBuilderExtensions.cs │ │ ├── BlazorIdentityScaffolderBuilderExtensions.cs │ │ ├── EfControllerScaffolderBuilderExtensions.cs │ │ ├── IdentityScaffolderBuilderExtensions.cs │ │ ├── MinimalApiScaffolderBuilderExtensions.cs │ │ ├── PropertySymbolExtensions.cs │ │ ├── RazorPagesScaffolderBuilderExtensions.cs │ │ ├── ScaffolderBuilderAspNetExtensions.cs │ │ └── ViewScaffoldeBuilderExtensions.cs │ ├── Helpers │ │ ├── AspNetDbContextHelper.cs │ │ ├── AzCliHelper.cs │ │ ├── BlazorCrudHelper.cs │ │ ├── BlazorIdentityHelper.cs │ │ ├── CommandHelpers.cs │ │ ├── EfControllerHelper.cs │ │ ├── EntraIdHelper.cs │ │ ├── IdentityHelper.cs │ │ ├── MinimalApiHelper.cs │ │ ├── RazorPagesHelper.cs │ │ └── ViewHelper.cs │ ├── Models │ │ ├── BlazorCrudAppProperties.cs │ │ ├── BlazorCrudModel.cs │ │ ├── CrudModel.cs │ │ ├── EfControllerModel.cs │ │ ├── EntraIdModel.cs │ │ ├── IdentityModel.cs │ │ ├── MinimalApiModel.cs │ │ ├── RazorPageModel.cs │ │ └── ViewModel.cs │ ├── ScaffoldSteps │ │ ├── AddAspNetConnectionStringStep.cs │ │ ├── AddClientSecretStep.cs │ │ ├── AddFileStep.cs │ │ ├── AreaScaffolderStep.cs │ │ ├── DetectBlazorWasmStep.cs │ │ ├── DotnetNewScaffolderStep.cs │ │ ├── EmptyControllerScaffolderStep.cs │ │ ├── RegisterAppStep.cs │ │ ├── Settings │ │ │ ├── AreaStepSettings.cs │ │ │ ├── BaseSettings.cs │ │ │ ├── CrudSettings.cs │ │ │ ├── DotnetNewStepSettings.cs │ │ │ ├── EfControllerSettings.cs │ │ │ ├── EfWithModelStepSettings.cs │ │ │ ├── EmptyControllerStepSettings.cs │ │ │ ├── EntraIdSettings.cs │ │ │ ├── IdentitySettings.cs │ │ │ └── MinimalApiSettings.cs │ │ ├── UpdateAppAuthorizationStep.cs │ │ ├── UpdateAppSettingsStep.cs │ │ ├── ValidateBlazorCrudStep.cs │ │ ├── ValidateEfControllerStep.cs │ │ ├── ValidateEntraIdStep.cs │ │ ├── ValidateIdentityStep.cs │ │ ├── ValidateMinimalApiStep.cs │ │ ├── ValidateRazorPagesStep.cs │ │ ├── ValidateViewsStep.cs │ │ ├── WrappedAddPackagesStep.cs │ │ ├── WrappedCodeModificationStep.cs │ │ └── WrappedTextTemplatingStep.cs │ ├── Telemetry │ │ ├── AddAspNetConnectionStringTelemetryEvent.cs │ │ ├── DotnetNewScaffolderTelemetryEvent.cs │ │ ├── EmptyControllerScaffolderTelemetryEvent.cs │ │ ├── TelemetryConstants.cs │ │ ├── ValidateScaffolderTelemetryEvent.cs │ │ └── WrappedStepTelemetryEvent.cs │ └── Templates │ │ ├── BlazorCrud │ │ ├── Create.Interfaces.cs │ │ ├── Create.cs │ │ ├── Create.tt │ │ ├── Delete.Interfaces.cs │ │ ├── Delete.cs │ │ ├── Delete.tt │ │ ├── Details.Interfaces.cs │ │ ├── Details.cs │ │ ├── Details.tt │ │ ├── Edit.Interfaces.cs │ │ ├── Edit.cs │ │ ├── Edit.tt │ │ ├── Index.Interfaces.cs │ │ ├── Index.cs │ │ ├── Index.tt │ │ ├── NotFound.Interfaces.cs │ │ ├── NotFound.cs │ │ └── NotFound.tt │ │ ├── BlazorEntraId │ │ ├── LoginLogoutEndpointRouteBuilderExtensions.Interfaces.cs │ │ ├── LoginLogoutEndpointRouteBuilderExtensions.cs │ │ ├── LoginLogoutEndpointRouteBuilderExtensions.tt │ │ ├── LoginOrLogout.Interfaces.cs │ │ ├── LoginOrLogout.cs │ │ └── LoginOrLogout.tt │ │ ├── BlazorIdentity │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.Interfaces.cs │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.cs │ │ ├── IdentityComponentsEndpointRouteBuilderExtensions.tt │ │ ├── IdentityNoOpEmailSender.Interfaces.cs │ │ ├── IdentityNoOpEmailSender.cs │ │ ├── IdentityNoOpEmailSender.tt │ │ ├── IdentityRedirectManager.Interfaces.cs │ │ ├── IdentityRedirectManager.cs │ │ ├── IdentityRedirectManager.tt │ │ ├── IdentityRevalidatingAuthenticationStateProvider.Interfaces.cs │ │ ├── IdentityRevalidatingAuthenticationStateProvider.cs │ │ ├── IdentityRevalidatingAuthenticationStateProvider.tt │ │ ├── Pages │ │ │ ├── AccessDenied.Interfaces.cs │ │ │ ├── AccessDenied.cs │ │ │ ├── AccessDenied.tt │ │ │ ├── ConfirmEmail.Interfaces.cs │ │ │ ├── ConfirmEmail.cs │ │ │ ├── ConfirmEmail.tt │ │ │ ├── ConfirmEmailChange.Interfaces.cs │ │ │ ├── ConfirmEmailChange.cs │ │ │ ├── ConfirmEmailChange.tt │ │ │ ├── ExternalLogin.Interfaces.cs │ │ │ ├── ExternalLogin.cs │ │ │ ├── ExternalLogin.tt │ │ │ ├── ForgotPassword.Interfaces.cs │ │ │ ├── ForgotPassword.cs │ │ │ ├── ForgotPassword.tt │ │ │ ├── ForgotPasswordConfirmation.Interfaces.cs │ │ │ ├── ForgotPasswordConfirmation.cs │ │ │ ├── ForgotPasswordConfirmation.tt │ │ │ ├── InvalidPasswordReset.Interfaces.cs │ │ │ ├── InvalidPasswordReset.cs │ │ │ ├── InvalidPasswordReset.tt │ │ │ ├── InvalidUser.Interfaces.cs │ │ │ ├── InvalidUser.cs │ │ │ ├── InvalidUser.tt │ │ │ ├── Lockout.Interfaces.cs │ │ │ ├── Lockout.cs │ │ │ ├── Lockout.tt │ │ │ ├── Login.Interfaces.cs │ │ │ ├── Login.cs │ │ │ ├── Login.tt │ │ │ ├── LoginWith2fa.Interfaces.cs │ │ │ ├── LoginWith2fa.cs │ │ │ ├── LoginWith2fa.tt │ │ │ ├── LoginWithRecoveryCode.Interfaces.cs │ │ │ ├── LoginWithRecoveryCode.cs │ │ │ ├── LoginWithRecoveryCode.tt │ │ │ ├── Manage │ │ │ │ ├── ChangePassword.Interfaces.cs │ │ │ │ ├── ChangePassword.cs │ │ │ │ ├── ChangePassword.tt │ │ │ │ ├── DeletePersonalData.Interfaces.cs │ │ │ │ ├── DeletePersonalData.cs │ │ │ │ ├── DeletePersonalData.tt │ │ │ │ ├── Disable2fa.Interfaces.cs │ │ │ │ ├── Disable2fa.cs │ │ │ │ ├── Disable2fa.tt │ │ │ │ ├── Email.Interfaces.cs │ │ │ │ ├── Email.cs │ │ │ │ ├── Email.tt │ │ │ │ ├── EnableAuthenticator.Interfaces.cs │ │ │ │ ├── EnableAuthenticator.cs │ │ │ │ ├── EnableAuthenticator.tt │ │ │ │ ├── ExternalLogins.Interfaces.cs │ │ │ │ ├── ExternalLogins.cs │ │ │ │ ├── ExternalLogins.tt │ │ │ │ ├── GenerateRecoveryCodes.Interfaces.cs │ │ │ │ ├── GenerateRecoveryCodes.cs │ │ │ │ ├── GenerateRecoveryCodes.tt │ │ │ │ ├── Index.Interfaces.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── Index.tt │ │ │ │ ├── Passkeys.Interfaces.cs │ │ │ │ ├── Passkeys.cs │ │ │ │ ├── Passkeys.tt │ │ │ │ ├── PersonalData.Interfaces.cs │ │ │ │ ├── PersonalData.cs │ │ │ │ ├── PersonalData.tt │ │ │ │ ├── RenamePasskey.Interfaces.cs │ │ │ │ ├── RenamePasskey.cs │ │ │ │ ├── RenamePasskey.tt │ │ │ │ ├── ResetAuthenticator.Interfaces.cs │ │ │ │ ├── ResetAuthenticator.cs │ │ │ │ ├── ResetAuthenticator.tt │ │ │ │ ├── SetPassword.Interfaces.cs │ │ │ │ ├── SetPassword.cs │ │ │ │ ├── SetPassword.tt │ │ │ │ ├── TwoFactorAuthentication.Interfaces.cs │ │ │ │ ├── TwoFactorAuthentication.cs │ │ │ │ ├── TwoFactorAuthentication.tt │ │ │ │ ├── _Imports.Interfaces.cs │ │ │ │ ├── _Imports.cs │ │ │ │ └── _Imports.tt │ │ │ ├── Register.Interfaces.cs │ │ │ ├── Register.cs │ │ │ ├── Register.tt │ │ │ ├── RegisterConfirmation.Interfaces.cs │ │ │ ├── RegisterConfirmation.cs │ │ │ ├── RegisterConfirmation.tt │ │ │ ├── ResendEmailConfirmation.Interfaces.cs │ │ │ ├── ResendEmailConfirmation.cs │ │ │ ├── ResendEmailConfirmation.tt │ │ │ ├── ResetPassword.Interfaces.cs │ │ │ ├── ResetPassword.cs │ │ │ ├── ResetPassword.tt │ │ │ ├── ResetPasswordConfirmation.Interfaces.cs │ │ │ ├── ResetPasswordConfirmation.cs │ │ │ ├── ResetPasswordConfirmation.tt │ │ │ ├── _Imports.Interfaces.cs │ │ │ ├── _Imports.cs │ │ │ └── _Imports.tt │ │ ├── PasskeyInputModel.Interfaces.cs │ │ ├── PasskeyInputModel.cs │ │ ├── PasskeyInputModel.tt │ │ ├── PasskeyOperation.Interfaces.cs │ │ ├── PasskeyOperation.cs │ │ ├── PasskeyOperation.tt │ │ └── Shared │ │ │ ├── ExternalLoginPicker.Interfaces.cs │ │ │ ├── ExternalLoginPicker.cs │ │ │ ├── ExternalLoginPicker.tt │ │ │ ├── ManageLayout.Interfaces.cs │ │ │ ├── ManageLayout.cs │ │ │ ├── ManageLayout.tt │ │ │ ├── ManageNavMenu.Interfaces.cs │ │ │ ├── ManageNavMenu.cs │ │ │ ├── ManageNavMenu.tt │ │ │ ├── PasskeySubmit.Interfaces.cs │ │ │ ├── PasskeySubmit.cs │ │ │ ├── PasskeySubmit.tt │ │ │ ├── RedirectToLogin.Interfaces.cs │ │ │ ├── RedirectToLogin.cs │ │ │ ├── RedirectToLogin.tt │ │ │ ├── ShowRecoveryCodes.Interfaces.cs │ │ │ ├── ShowRecoveryCodes.cs │ │ │ ├── ShowRecoveryCodes.tt │ │ │ ├── StatusMessage.Interfaces.cs │ │ │ ├── StatusMessage.cs │ │ │ └── StatusMessage.tt │ │ ├── EfController │ │ ├── ApiEfController.Interfaces.cs │ │ ├── ApiEfController.cs │ │ ├── ApiEfController.tt │ │ ├── MvcEfController.Interfaces.cs │ │ ├── MvcEfController.cs │ │ └── MvcEfController.tt │ │ ├── Files │ │ ├── ApplicationUser.Interfaces.cs │ │ ├── ApplicationUser.cs │ │ ├── ApplicationUser.tt │ │ ├── PasskeySubmit.razor.js │ │ └── _ValidationScriptsPartial.cshtml │ │ ├── Identity │ │ └── Pages │ │ │ ├── Account │ │ │ ├── AccessDenied.Interfaces.cs │ │ │ ├── AccessDenied.cs │ │ │ ├── AccessDenied.tt │ │ │ ├── AccessDeniedModel.Interfaces.cs │ │ │ ├── AccessDeniedModel.cs │ │ │ ├── AccessDeniedModel.tt │ │ │ ├── ConfirmEmail.Interfaces.cs │ │ │ ├── ConfirmEmail.cs │ │ │ ├── ConfirmEmail.tt │ │ │ ├── ConfirmEmailChange.Interfaces.cs │ │ │ ├── ConfirmEmailChange.cs │ │ │ ├── ConfirmEmailChange.tt │ │ │ ├── ConfirmEmailChangeModel.Interfaces.cs │ │ │ ├── ConfirmEmailChangeModel.cs │ │ │ ├── ConfirmEmailChangeModel.tt │ │ │ ├── ConfirmEmailModel.Interfaces.cs │ │ │ ├── ConfirmEmailModel.cs │ │ │ ├── ConfirmEmailModel.tt │ │ │ ├── ExternalLogin.Interfaces.cs │ │ │ ├── ExternalLogin.cs │ │ │ ├── ExternalLogin.tt │ │ │ ├── ExternalLoginModel.Interfaces.cs │ │ │ ├── ExternalLoginModel.cs │ │ │ ├── ExternalLoginModel.tt │ │ │ ├── ForgotPassword.Interfaces.cs │ │ │ ├── ForgotPassword.cs │ │ │ ├── ForgotPassword.tt │ │ │ ├── ForgotPasswordConfirmation.Interfaces.cs │ │ │ ├── ForgotPasswordConfirmation.cs │ │ │ ├── ForgotPasswordConfirmation.tt │ │ │ ├── ForgotPasswordConfirmationModel.Interfaces.cs │ │ │ ├── ForgotPasswordConfirmationModel.cs │ │ │ ├── ForgotPasswordConfirmationModel.tt │ │ │ ├── ForgotPasswordModel.Interfaces.cs │ │ │ ├── ForgotPasswordModel.cs │ │ │ ├── ForgotPasswordModel.tt │ │ │ ├── Lockout.Interfaces.cs │ │ │ ├── Lockout.cs │ │ │ ├── Lockout.tt │ │ │ ├── LockoutModel.Interfaces.cs │ │ │ ├── LockoutModel.cs │ │ │ ├── LockoutModel.tt │ │ │ ├── Login.Interfaces.cs │ │ │ ├── Login.cs │ │ │ ├── Login.tt │ │ │ ├── LoginModel.Interfaces.cs │ │ │ ├── LoginModel.cs │ │ │ ├── LoginModel.tt │ │ │ ├── LoginWith2fa.Interfaces.cs │ │ │ ├── LoginWith2fa.cs │ │ │ ├── LoginWith2fa.tt │ │ │ ├── LoginWith2faModel.Interfaces.cs │ │ │ ├── LoginWith2faModel.cs │ │ │ ├── LoginWith2faModel.tt │ │ │ ├── LoginWithRecoveryCode.Interfaces.cs │ │ │ ├── LoginWithRecoveryCode.cs │ │ │ ├── LoginWithRecoveryCode.tt │ │ │ ├── LoginWithRecoveryCodeModel.Interfaces.cs │ │ │ ├── LoginWithRecoveryCodeModel.cs │ │ │ ├── LoginWithRecoveryCodeModel.tt │ │ │ ├── Logout.Interfaces.cs │ │ │ ├── Logout.cs │ │ │ ├── Logout.tt │ │ │ ├── LogoutModel.Interfaces.cs │ │ │ ├── LogoutModel.cs │ │ │ ├── LogoutModel.tt │ │ │ ├── Manage │ │ │ │ ├── ChangePassword.Interfaces.cs │ │ │ │ ├── ChangePassword.cs │ │ │ │ ├── ChangePassword.tt │ │ │ │ ├── ChangePasswordModel.Interfaces.cs │ │ │ │ ├── ChangePasswordModel.cs │ │ │ │ ├── ChangePasswordModel.tt │ │ │ │ ├── DeletePersonalData.Interfaces.cs │ │ │ │ ├── DeletePersonalData.cs │ │ │ │ ├── DeletePersonalData.tt │ │ │ │ ├── DeletePersonalDataModel.Interfaces.cs │ │ │ │ ├── DeletePersonalDataModel.cs │ │ │ │ ├── DeletePersonalDataModel.tt │ │ │ │ ├── Disable2fa.Interfaces.cs │ │ │ │ ├── Disable2fa.cs │ │ │ │ ├── Disable2fa.tt │ │ │ │ ├── Disable2faModel.Interfaces.cs │ │ │ │ ├── Disable2faModel.cs │ │ │ │ ├── Disable2faModel.tt │ │ │ │ ├── DownloadPersonalData.Interfaces.cs │ │ │ │ ├── DownloadPersonalData.cs │ │ │ │ ├── DownloadPersonalData.tt │ │ │ │ ├── DownloadPersonalDataModel.Interfaces.cs │ │ │ │ ├── DownloadPersonalDataModel.cs │ │ │ │ ├── DownloadPersonalDataModel.tt │ │ │ │ ├── Email.Interfaces.cs │ │ │ │ ├── Email.cs │ │ │ │ ├── Email.tt │ │ │ │ ├── EmailModel.Interfaces.cs │ │ │ │ ├── EmailModel.cs │ │ │ │ ├── EmailModel.tt │ │ │ │ ├── EnableAuthenticator.Interfaces.cs │ │ │ │ ├── EnableAuthenticator.cs │ │ │ │ ├── EnableAuthenticator.tt │ │ │ │ ├── EnableAuthenticatorModel.Interfaces.cs │ │ │ │ ├── EnableAuthenticatorModel.cs │ │ │ │ ├── EnableAuthenticatorModel.tt │ │ │ │ ├── ExternalLogins.Interfaces.cs │ │ │ │ ├── ExternalLogins.cs │ │ │ │ ├── ExternalLogins.tt │ │ │ │ ├── ExternalLoginsModel.Interfaces.cs │ │ │ │ ├── ExternalLoginsModel.cs │ │ │ │ ├── ExternalLoginsModel.tt │ │ │ │ ├── GenerateRecoveryCodes.Interfaces.cs │ │ │ │ ├── GenerateRecoveryCodes.cs │ │ │ │ ├── GenerateRecoveryCodes.tt │ │ │ │ ├── GenerateRecoveryCodesModel.Interfaces.cs │ │ │ │ ├── GenerateRecoveryCodesModel.cs │ │ │ │ ├── GenerateRecoveryCodesModel.tt │ │ │ │ ├── Index.Interfaces.cs │ │ │ │ ├── Index.cs │ │ │ │ ├── Index.tt │ │ │ │ ├── IndexModel.Interfaces.cs │ │ │ │ ├── IndexModel.cs │ │ │ │ ├── IndexModel.tt │ │ │ │ ├── ManageNavPagesModel.Interfaces.cs │ │ │ │ ├── ManageNavPagesModel.cs │ │ │ │ ├── ManageNavPagesModel.tt │ │ │ │ ├── PersonalData.Interfaces.cs │ │ │ │ ├── PersonalData.cs │ │ │ │ ├── PersonalData.tt │ │ │ │ ├── PersonalDataModel.Interfaces.cs │ │ │ │ ├── PersonalDataModel.cs │ │ │ │ ├── PersonalDataModel.tt │ │ │ │ ├── ResetAuthenticator.Interfaces.cs │ │ │ │ ├── ResetAuthenticator.cs │ │ │ │ ├── ResetAuthenticator.tt │ │ │ │ ├── ResetAuthenticatorModel.Interfaces.cs │ │ │ │ ├── ResetAuthenticatorModel.cs │ │ │ │ ├── ResetAuthenticatorModel.tt │ │ │ │ ├── SetPassword.Interfaces.cs │ │ │ │ ├── SetPassword.cs │ │ │ │ ├── SetPassword.tt │ │ │ │ ├── SetPasswordModel.Interfaces.cs │ │ │ │ ├── SetPasswordModel.cs │ │ │ │ ├── SetPasswordModel.tt │ │ │ │ ├── ShowRecoveryCodes.Interfaces.cs │ │ │ │ ├── ShowRecoveryCodes.cs │ │ │ │ ├── ShowRecoveryCodes.tt │ │ │ │ ├── ShowRecoveryCodesModel.Interfaces.cs │ │ │ │ ├── ShowRecoveryCodesModel.cs │ │ │ │ ├── ShowRecoveryCodesModel.tt │ │ │ │ ├── TwoFactorAuthentication.Interfaces.cs │ │ │ │ ├── TwoFactorAuthentication.cs │ │ │ │ ├── TwoFactorAuthentication.tt │ │ │ │ ├── TwoFactorAuthenticationModel.Interfaces.cs │ │ │ │ ├── TwoFactorAuthenticationModel.cs │ │ │ │ ├── TwoFactorAuthenticationModel.tt │ │ │ │ ├── _Layout.Interfaces.cs │ │ │ │ ├── _Layout.cs │ │ │ │ ├── _Layout.tt │ │ │ │ ├── _ManageNav.Interfaces.cs │ │ │ │ ├── _ManageNav.cs │ │ │ │ ├── _ManageNav.tt │ │ │ │ ├── _StatusMessage.Interfaces.cs │ │ │ │ ├── _StatusMessage.cs │ │ │ │ ├── _StatusMessage.tt │ │ │ │ ├── _ViewImports.Interfaces.cs │ │ │ │ ├── _ViewImports.cs │ │ │ │ └── _ViewImports.tt │ │ │ ├── Register.Interfaces.cs │ │ │ ├── Register.cs │ │ │ ├── Register.tt │ │ │ ├── RegisterConfirmation.Interfaces.cs │ │ │ ├── RegisterConfirmation.cs │ │ │ ├── RegisterConfirmation.tt │ │ │ ├── RegisterConfirmationModel.Interfaces.cs │ │ │ ├── RegisterConfirmationModel.cs │ │ │ ├── RegisterConfirmationModel.tt │ │ │ ├── RegisterModel.Interfaces.cs │ │ │ ├── RegisterModel.cs │ │ │ ├── RegisterModel.tt │ │ │ ├── ResendEmailConfirmation.Interfaces.cs │ │ │ ├── ResendEmailConfirmation.cs │ │ │ ├── ResendEmailConfirmation.tt │ │ │ ├── ResendEmailConfirmationModel.Interfaces.cs │ │ │ ├── ResendEmailConfirmationModel.cs │ │ │ ├── ResendEmailConfirmationModel.tt │ │ │ ├── ResetPassword.Interfaces.cs │ │ │ ├── ResetPassword.cs │ │ │ ├── ResetPassword.tt │ │ │ ├── ResetPasswordConfirmation.Interfaces.cs │ │ │ ├── ResetPasswordConfirmation.cs │ │ │ ├── ResetPasswordConfirmation.tt │ │ │ ├── ResetPasswordConfirmationModel.Interfaces.cs │ │ │ ├── ResetPasswordConfirmationModel.cs │ │ │ ├── ResetPasswordConfirmationModel.tt │ │ │ ├── ResetPasswordModel.Interfaces.cs │ │ │ ├── ResetPasswordModel.cs │ │ │ ├── ResetPasswordModel.tt │ │ │ ├── _StatusMessage.Interfaces.cs │ │ │ ├── _StatusMessage.cs │ │ │ ├── _StatusMessage.tt │ │ │ ├── _ViewImports.Interfaces.cs │ │ │ ├── _ViewImports.cs │ │ │ └── _ViewImports.tt │ │ │ ├── Error.Interfaces.cs │ │ │ ├── Error.cs │ │ │ ├── Error.tt │ │ │ ├── ErrorModel.Interfaces.cs │ │ │ ├── ErrorModel.cs │ │ │ ├── ErrorModel.tt │ │ │ ├── _ViewImports.Interfaces.cs │ │ │ ├── _ViewImports.cs │ │ │ ├── _ViewImports.tt │ │ │ ├── _ViewStart.Interfaces.cs │ │ │ ├── _ViewStart.cs │ │ │ └── _ViewStart.tt │ │ ├── MinimalApi │ │ ├── MinimalApi.Interfaces.cs │ │ ├── MinimalApi.cs │ │ ├── MinimalApi.tt │ │ ├── MinimalApiEf.Interfaces.cs │ │ ├── MinimalApiEf.cs │ │ └── MinimalApiEf.tt │ │ ├── RazorPages │ │ ├── Create.Interfaces.cs │ │ ├── Create.cs │ │ ├── Create.tt │ │ ├── CreateModel.Interfaces.cs │ │ ├── CreateModel.cs │ │ ├── CreateModel.tt │ │ ├── Delete.Interfaces.cs │ │ ├── Delete.cs │ │ ├── Delete.tt │ │ ├── DeleteModel.Interfaces.cs │ │ ├── DeleteModel.cs │ │ ├── DeleteModel.tt │ │ ├── Details.Interfaces.cs │ │ ├── Details.cs │ │ ├── Details.tt │ │ ├── DetailsModel.Interfaces.cs │ │ ├── DetailsModel.cs │ │ ├── DetailsModel.tt │ │ ├── Edit.Interfaces.cs │ │ ├── Edit.cs │ │ ├── Edit.tt │ │ ├── EditModel.Interfaces.cs │ │ ├── EditModel.cs │ │ ├── EditModel.tt │ │ ├── Index.Interfaces.cs │ │ ├── Index.cs │ │ ├── Index.tt │ │ ├── IndexModel.Interfaces.cs │ │ ├── IndexModel.cs │ │ └── IndexModel.tt │ │ └── Views │ │ ├── Create.Interfaces.cs │ │ ├── Create.cs │ │ ├── Create.tt │ │ ├── Delete.Interfaces.cs │ │ ├── Delete.cs │ │ ├── Delete.tt │ │ ├── Details.Interfaces.cs │ │ ├── Details.cs │ │ ├── Details.tt │ │ ├── Edit.Interfaces.cs │ │ ├── Edit.cs │ │ ├── Edit.tt │ │ ├── Index.Interfaces.cs │ │ ├── Index.cs │ │ └── Index.tt │ ├── Aspire │ ├── AspireCommandService.cs │ ├── CodeModificationConfigs │ │ ├── Caching │ │ │ ├── redis-apphost.json │ │ │ ├── redis-webapp-oc.json │ │ │ └── redis-webapp.json │ │ ├── Database │ │ │ ├── db-apphost.json │ │ │ └── db-webapi.json │ │ └── Storage │ │ │ ├── storage-apphost.json │ │ │ └── storage-webapi.json │ ├── Command │ │ ├── AspireOptions.cs │ │ └── CliStrings.cs │ ├── CommandSettings.cs │ ├── Extensions │ │ ├── CachingScaffolderBuilderExtensions.cs │ │ ├── DatabaseScaffolderBuilderExtensions.cs │ │ ├── ScaffolderBuilderAspireExtensions.cs │ │ └── StorageScaffolderBuilderExtensions.cs │ ├── Helpers │ │ ├── AspireHelpers.cs │ │ ├── DatabaseProperties.cs │ │ ├── PackageConstants.cs │ │ ├── StorageConstants.cs │ │ ├── StorageProperties.cs │ │ └── ValidationHelper.cs │ ├── ScaffoldSteps │ │ ├── AddAspireCodeChangeStep.cs │ │ ├── AddAspireConnectionStringStep.cs │ │ ├── ValidateOptionsStep.cs │ │ └── WrappedAddPackagesStep.cs │ └── Telemetry │ │ ├── AddAspireCodeChangeTelemetryEvent.cs │ │ ├── AddAspireConnectionStringTelemetryEvent.cs │ │ ├── TelemetryConstants.cs │ │ ├── ValidateOptionsStepTelemetryEvent.cs │ │ └── WrappedStepTelemetryEvent.cs │ ├── Command │ └── ICommandService.cs │ ├── Helpers │ ├── CliHelpers.cs │ └── ToolHelper.cs │ ├── Interactive │ ├── AppBuilder │ │ ├── ScaffoldCommandApp.cs │ │ ├── ScaffoldCommandAppBuilder.cs │ │ ├── TypeRegistrar.cs │ │ └── TypeResolver.cs │ ├── Command │ │ ├── BaseCommand.cs │ │ ├── ScaffoldCommand.cs │ │ ├── ToolInstallCommand.cs │ │ ├── ToolInstallSettings.cs │ │ ├── ToolListCommand.cs │ │ ├── ToolListSettings.cs │ │ ├── ToolSettings.cs │ │ ├── ToolUninstallCommand.cs │ │ └── ToolUninstallSettings.cs │ ├── Flow │ │ ├── FlowContextProperties.cs │ │ ├── FlowExtensions.cs │ │ └── Steps │ │ │ ├── CategoryDiscovery.cs │ │ │ ├── CategoryPickerFlowStep.cs │ │ │ ├── CommandDiscovery.cs │ │ │ ├── CommandExecuteFlowStep.cs │ │ │ ├── CommandPickerFlowStep.cs │ │ │ ├── ComponentDiscovery.cs │ │ │ ├── ParameterBasedFlowStep.cs │ │ │ ├── ParameterDiscovery.cs │ │ │ └── StartupFlowStep.cs │ └── Services │ │ ├── FlowProvider.cs │ │ └── IFlowProvider.cs │ ├── Models │ ├── ScaffoldManifest.cs │ └── ScaffoldTool.cs │ ├── Program.cs │ ├── README.md │ ├── ScaffoldingSteps │ └── ValidateTargetFrameworkStep.cs │ ├── Services │ ├── DotNetToolService.cs │ ├── IDotNetToolService.cs │ ├── IToolManager.cs │ ├── IToolManifestService.cs │ ├── ToolManager.cs │ └── ToolManifestService.cs │ ├── Telemetry │ ├── CommandExecuteTelemetryEvent.cs │ └── TelemetryConstants.cs │ └── dotnet-scaffold.csproj ├── start-code.cmd ├── startvs.cmd └── test ├── Directory.Build.props ├── Directory.Build.targets ├── MSIdentityScaffolding ├── Microsoft.DotNet.MSIdentity.Tests │ ├── CleanUp.cs │ ├── E2ETests.cs │ ├── Microsoft.DotNet.MSIdentity.Tests.csproj │ ├── ProjectDescriptionReaderTests.cs │ ├── TestConstants.cs │ └── TestUtilities.cs └── Microsoft.DotNet.MSIdentity.UnitTests.Tests │ ├── AppProvisioningToolTests.cs │ ├── Microsoft.DotNet.MSIdentity.UnitTests.Tests.csproj │ ├── MicrosoftIdentityPlatformApplicationManagerTests.cs │ └── MsAADToolTests.cs ├── Scaffolding ├── E2E_Test │ ├── AreaScaffolderTests.cs │ ├── Compiler │ │ └── Resources │ │ │ ├── BlogsController.txt │ │ │ ├── BlogsDerivedDbContext.txt │ │ │ ├── CarViews │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── CarsController.txt │ │ │ ├── CarsControllerWithDAL.txt │ │ │ ├── CarsWithViewController.txt │ │ │ ├── EmptyController.txt │ │ │ ├── EmptyController_withrelativepath.txt │ │ │ ├── ProductViews │ │ │ ├── Create.cshtml │ │ │ ├── Delete.cshtml │ │ │ ├── Details.cshtml │ │ │ ├── Edit.cshtml │ │ │ └── Index.cshtml │ │ │ ├── ProductsController.txt │ │ │ ├── RazorPages │ │ │ ├── CarCreate.txt │ │ │ ├── CarCreateCs.txt │ │ │ ├── CarCreateCsWithDAL.txt │ │ │ ├── Crud │ │ │ │ ├── Create.txt │ │ │ │ ├── CreateCs.txt │ │ │ │ ├── Delete.txt │ │ │ │ ├── DeleteCs.txt │ │ │ │ ├── Details.txt │ │ │ │ ├── DetailsCs.txt │ │ │ │ ├── Edit.txt │ │ │ │ ├── EditCs.txt │ │ │ │ ├── Index.txt │ │ │ │ └── IndexCs.txt │ │ │ ├── EmptyPage.txt │ │ │ └── EmptyPageCs.txt │ │ │ ├── ReadMe │ │ │ └── Readme.txt │ │ │ ├── ReadWriteController.txt │ │ │ ├── SharedViews │ │ │ └── _ValidationScriptsPartial.cshtml │ │ │ ├── TestApiController.txt │ │ │ └── Views │ │ │ ├── CarCreate.txt │ │ │ ├── CarDetails.txt │ │ │ └── EmptyView.txt │ ├── E2ETestBase.cs │ ├── E2E_Test.Tests.csproj │ ├── IdentityGeneratorFilesConfig.cs │ ├── IdentityScaffolderTests.cs │ ├── MinimalApiTests.cs │ ├── MvcControllerTest.cs │ ├── RazorPageScaffolderTests.cs │ ├── SimulationModeTests.cs │ ├── TestLogger.cs │ └── ViewGeneratorTests.cs ├── Ext.ProjectModel.Tests │ ├── Ext.ProjectModel.Tests.csproj │ ├── MsBuild │ │ └── MsBuildProjectFinderTest.cs │ └── Utilities │ │ └── TemporaryFileProvider.cs ├── Shared │ ├── FileSystem │ │ └── MockFileSystem.cs │ ├── MSBuildProjectStrings.cs │ ├── MsBuildProjectSetupHelper.cs │ └── TemporaryFileProvider.cs ├── TestApps │ ├── ClassLibrary1 │ │ ├── Class1.cs │ │ └── ClassLibrary1.csproj │ ├── ClassLibrary2 │ │ ├── Class2.cs │ │ └── ClassLibrary2.csproj │ ├── Directory.Build.props │ ├── Directory.Build.targets │ ├── ModelTypesLocatorTestClassLibrary │ │ ├── Car.cs │ │ ├── ModelTypesLocatorTestClassLibrary.csproj │ │ └── ModelWithMatchingShortName.cs │ └── ModelTypesLocatorTestWebApp │ │ ├── ModelTypesLocatorTestWebApp.csproj │ │ ├── Models │ │ ├── CarContext.cs │ │ └── ModelWithMatchingShortName.cs │ │ ├── Program.cs │ │ └── Properties │ │ └── launchSettings.json ├── TestPackage.props ├── VS.Web.CG.Core.FunctionalTest │ ├── NupkgTest.cs │ └── VS.Web.CG.Core.FunctionalTests.Tests.csproj ├── VS.Web.CG.Core.Test │ ├── ActionDescriptorTests.cs │ ├── ActionInvokerTests.cs │ ├── CodeGeneratorActionsServiceTests.cs │ ├── CodeGeneratorDescriptorTests.cs │ ├── CodeGeneratorsLocatorTests.cs │ ├── FileSystemChangeTrackerTests.cs │ ├── FilesLocatorTests.cs │ ├── MemberInfoExtensionsTests.cs │ ├── PackageInstallerTests.cs │ ├── ParameterDescriptorTests.cs │ ├── SimulationModeFileSystemTests.cs │ └── VS.Web.CG.Core.Tests.csproj ├── VS.Web.CG.EFCore.Test │ ├── CodeModelMetadataTests.cs │ ├── CodeModelServiceTests.cs │ ├── ConnectionStringsWriterTests.cs │ ├── DbContextEditorServicesTests.cs │ ├── EntityFrameworkServicesTests.cs │ ├── ModelMetadataTests.cs │ ├── NavigationMetadataTests.cs │ ├── PropertyMetadataTests.cs │ ├── ReflectedTypesProviderTests.cs │ ├── ResourceUtilities.cs │ ├── TestAssemblyLoadContext.cs │ ├── TestModels │ │ ├── Models.cs │ │ ├── TestDbContext.cs │ │ └── TestModel.cs │ ├── TypeUtilTests.cs │ ├── VS.Web.CG.EFCore.Tests.csproj │ └── compiler │ │ └── resources │ │ ├── DbContextNullable_After.txt │ │ ├── DbContext_After.txt │ │ ├── DbContext_Before.txt │ │ ├── MyModel.txt │ │ ├── Startup_Empty_Method_RegisterContext_After.txt │ │ ├── Startup_Empty_Method_RegisterContext_Before.txt │ │ ├── Startup_RegisterContext_After.txt │ │ └── Startup_RegisterContext_Before.txt ├── VS.Web.CG.MSBuild.Test │ ├── ProjectContextWriterTests.cs │ ├── ProjectReferenceInformationProviderTests.cs │ ├── TestBase.cs │ └── VS.Web.CG.MSBuild.Tests.csproj ├── VS.Web.CG.Mvc.Test │ ├── BlazorIdentityHelperTests.cs │ ├── BlazorWebCRUDGeneratorCommandLineModelTests.cs │ ├── BlazorWebCRUDGeneratorTests.cs │ ├── CdnScriptTagTests.cs │ ├── ControllerGeneratorBaseTests.cs │ ├── IdentityGeneratorFilesConfigTests.cs │ ├── IdentityGeneratorTemplateModelBuilderTests.cs │ ├── IdentityGeneratorTests.cs │ ├── IdentityHelperTests.cs │ ├── MinimalApiGeneratorTests.cs │ ├── MockControllerGenerator.cs │ ├── ModelMetadataUtilitiesTest.cs │ ├── NamespaceUtilitiesTest.cs │ ├── VS.Web.CG.Mvc.Tests.csproj │ └── ValidationUtilTests.cs ├── VS.Web.CG.Sources.Test │ ├── ApplicationInfoTests.cs │ ├── CommonUtilitiesTests.cs │ ├── CompilationResultTests.cs │ ├── DefaultAssemblyLoadContextTests.cs │ ├── FileSystemChangeMessageHandlerTests.cs │ ├── MessageHandlerTests.cs │ ├── MockLogger.cs │ ├── ProjectInformationMessageHandlerTests.cs │ ├── TestBase.cs │ └── VS.Web.CG.Sources.Tests.csproj ├── VS.Web.CG.Templating.Test │ ├── RazorTemplateBaseTests.cs │ ├── TypeUtilitiesTest.cs │ └── VS.Web.CG.Templating.Tests.csproj ├── VS.Web.CG.Tools.Test │ ├── TargetInstallerTests.cs │ └── VS.Web.CG.Tools.Tests.csproj └── runtests.cmd ├── Shared ├── Microsoft.DotNet.Scaffolding.ComponentModel.Tests │ ├── CommandInfoTests.cs │ ├── Microsoft.DotNet.Scaffolding.ComponentModel.Tests.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── Microsoft.DotNet.Scaffolding.Shared.Tests │ ├── CodeAnalysisHelperTests.cs │ ├── DocumentBuilderTestBase.cs │ ├── DocumentBuilderTests.cs │ ├── Microsoft.DotNet.Scaffolding.Shared.Tests.csproj │ ├── ModelTypesLocatorTests.cs │ ├── ProjectModelHelperTests.cs │ ├── ProjectModifierHelperTests.cs │ ├── RoslynUtilitiesTests.cs │ ├── StringUtilTests.cs │ └── T4TemplatingTests │ │ ├── MoviePage.Interfaces.cs │ │ ├── MoviePage.cs │ │ ├── MoviePage.tt │ │ └── TemplateInvokerTests.cs └── Microsoft.Extensions.ProjectModel.Tests │ └── MsBuildProjectContextBuilderTests.cs ├── dotnet-scaffolding ├── Directory.Packages.props └── Microsoft.DotNet.Scaffolding.Roslyn.Tests │ ├── MSBuildProjectServiceHelperTests.cs │ └── Microsoft.DotNet.Scaffolding.Roslyn.Tests.csproj └── legacy-scaffolding-tests.playlist /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/ask_a_question.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/ISSUE_TEMPLATE/ask_a_question.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_msidentityscaffolding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/ISSUE_TEMPLATE/bug_report_msidentityscaffolding.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report_scaffolding.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/ISSUE_TEMPLATE/bug_report_scaffolding.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/SECURITY.md -------------------------------------------------------------------------------- /.github/SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/SUPPORT.md -------------------------------------------------------------------------------- /.github/workflows/backport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.github/workflows/backport.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/.gitignore -------------------------------------------------------------------------------- /All.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/All.sln -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/Directory.Build.targets -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /Getting-Started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/Getting-Started.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/LICENSE -------------------------------------------------------------------------------- /LoginOrLogout.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/LoginOrLogout.tt -------------------------------------------------------------------------------- /MSIdentityScaffolding.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/MSIdentityScaffolding.slnf -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/README.md -------------------------------------------------------------------------------- /Scaffolding.slnf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/Scaffolding.slnf -------------------------------------------------------------------------------- /azure-pipelines-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/azure-pipelines-codeql.yml -------------------------------------------------------------------------------- /azure-pipelines-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/azure-pipelines-pr.yml -------------------------------------------------------------------------------- /azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/Package.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Package.props -------------------------------------------------------------------------------- /eng/Publishing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Publishing.props -------------------------------------------------------------------------------- /eng/SignCheckExclusionsFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/SignCheckExclusionsFile.txt -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.DotNetScaffold.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Versions.DotNetScaffold.props -------------------------------------------------------------------------------- /eng/Versions.MSIdentity.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Versions.MSIdentity.props -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild-impl.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/install-microbuild-impl.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/cross/x64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/x64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/x86/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/cross/x86/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet.cmd -------------------------------------------------------------------------------- /eng/common/dotnet.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/dotnet.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/vmr-sync.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/steps/vmr-sync.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates/vmr-build-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/templates/vmr-build-pr.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/common/vmr-sync.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/vmr-sync.ps1 -------------------------------------------------------------------------------- /eng/common/vmr-sync.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/common/vmr-sync.sh -------------------------------------------------------------------------------- /eng/validate-sdk.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/validate-sdk.cmd -------------------------------------------------------------------------------- /eng/validate-sdk.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/eng/validate-sdk.ps1 -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/global.json -------------------------------------------------------------------------------- /scripts/download-artifacts.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/download-artifacts.ps1 -------------------------------------------------------------------------------- /scripts/get-shipping-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/get-shipping-packages.ps1 -------------------------------------------------------------------------------- /scripts/install-aspnet-codegenerator.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-aspnet-codegenerator.cmd -------------------------------------------------------------------------------- /scripts/install-aspnet-codegenerator.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-aspnet-codegenerator.sh -------------------------------------------------------------------------------- /scripts/install-msidentity.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-msidentity.cmd -------------------------------------------------------------------------------- /scripts/install-msidentity.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-msidentity.sh -------------------------------------------------------------------------------- /scripts/install-scaffold.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-scaffold.cmd -------------------------------------------------------------------------------- /scripts/install-scaffold.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/scripts/install-scaffold.sh -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Resources/Policies.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Resources/Policies.txt -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Summary/Change.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Summary/Change.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Summary/Summary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Summary/Summary.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/Commands.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/IMsAADTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/IMsAADTool.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/MsAADTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity/Tool/MsAADTool.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/README.md: -------------------------------------------------------------------------------- 1 | ../../tools/dotnet-msidentity/README.md -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/MsAADToolFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/MsAADToolFactory.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/Program.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/ProvisioningToolOptionsBinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/ProvisioningToolOptionsBinder.cs -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/README.md -------------------------------------------------------------------------------- /src/MSIdentityScaffolding/dotnet-msidentity/dotnet-msidentity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/MSIdentityScaffolding/dotnet-msidentity/dotnet-msidentity.csproj -------------------------------------------------------------------------------- /src/Scaffolding/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/Directory.Build.props -------------------------------------------------------------------------------- /src/Scaffolding/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/README.md -------------------------------------------------------------------------------- /src/Scaffolding/Shared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/Shared.props -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ActionDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ActionDescriptor.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ActionInvoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ActionInvoker.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CodeGeneratorActionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CodeGeneratorActionsService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CodeGeneratorDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CodeGeneratorDescriptor.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CodeGeneratorsLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CodeGeneratorsLocator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CommandLine/AliasAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CommandLine/AliasAttribute.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CommandLine/ArgumentAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CommandLine/ArgumentAttribute.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/CommandLine/OptionAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/CommandLine/OptionAttribute.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/DefaultCodeGeneratorAssemblyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/DefaultCodeGeneratorAssemblyProvider.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ExceptionExtensions.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/FilesLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/FilesLocator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ICodeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ICodeGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorActionsService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorActionsService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorAssemblyProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorAssemblyProvider.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ICodeGeneratorLocator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/IFilesLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/IFilesLocator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/IPackageInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/IPackageInstaller.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/MemberInfoExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/MemberInfoExtensions.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/PackageInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/PackageInstaller.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/PackageMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/PackageMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/ParameterDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/ParameterDescriptor.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/VS.Web.CG.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/VS.Web.CG.Core.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Core/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Core/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design-anycpu/VS.Web.CG.Design-anycpu.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design-anycpu/VS.Web.CG.Design-anycpu.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design-arm64/VS.Web.CG.Design-arm64.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design-arm64/VS.Web.CG.Design-arm64.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/CodeGenCommandExecutor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/CodeGenCommandExecutor.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/CodeGenerationEnvironmentHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/CodeGenerationEnvironmentHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/MessageOrchestrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/MessageOrchestrator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/Program.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/Resources.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/ScaffoldingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/ScaffoldingClient.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/ServiceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/ServiceProvider.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/Shared.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/Shared.props -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/ToolCommandLineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/ToolCommandLineHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Design/VS.Web.CG.Design.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Design/VS.Web.CG.Design.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/AssemblyAttributeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/AssemblyAttributeGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ClassNameModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ClassNameModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/CodeModelMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/CodeModelMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/CodeModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/CodeModelService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ConnectionStringsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ConnectionStringsWriter.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ContextProcessingResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ContextProcessingResult.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/DbContextEditorServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/DbContextEditorServices.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/EditSyntaxTreeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/EditSyntaxTreeResult.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/EntityFrameworkModelProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/EntityFrameworkModelProcessor.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/EntityFrameworkServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/EntityFrameworkServices.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ICodeModelService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ICodeModelService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IConnectionStringsWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IConnectionStringsWriter.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IDbContextEditorServices.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IDbContextEditorServices.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IEntityFrameworkService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IEntityFrameworkService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IModelMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IModelMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/INavigationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/INavigationMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IPropertyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IPropertyExtensions.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/IPropertyMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/IPropertyMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ModelMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ModelMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/NavigationMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/NavigationMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/NewDbContextTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/NewDbContextTemplateModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/PropertyMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/PropertyMetadata.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/ReflectedTypesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/ReflectedTypesProvider.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/RoslynCodeEditUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/RoslynCodeEditUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/Templates/DbContext/NewLocalDbContext.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/Templates/DbContext/NewLocalDbContext.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/TypeUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/TypeUtil.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/VS.Web.CG.EFCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/VS.Web.CG.EFCore.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.EFCore/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.EFCore/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/ProjectContextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/ProjectContextWriter.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/ProjectReferenceInformationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/ProjectReferenceInformationProvider.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Msbuild/VS.Web.CG.Msbuild.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Msbuild/VS.Web.CG.Msbuild.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Areas/AreaGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Areas/AreaGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Areas/AreaGeneratorCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Areas/AreaGeneratorCommandLine.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorWebCRUDGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorWebCRUDGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorWebCRUDHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Blazor/BlazorWebCRUDHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Blazor/blazorWebCrudChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Blazor/blazorWebCrudChanges.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/BlazorIdentityModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/blazorIdentityChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/BlazorIdentity/blazorIdentityChanges.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/ClassNameModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/ClassNameModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/CommonCommandLineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/CommonCommandLineModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/CommonGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/CommonGeneratorBase.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/ModelTypeAndContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/ModelTypeAndContextModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/RequiredFileEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/RequiredFileEntity.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Common/ValidationUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Common/ValidationUtil.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Constants.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/CommandLineGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/CommandLineGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/CommandLineGeneratorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/CommandLineGeneratorModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerEmpty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerEmpty.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerGeneratorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerGeneratorBase.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerWithContextGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/ControllerWithContextGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Controller/MvcController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Controller/MvcController.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Dependency/ReadMeGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Dependency/ReadMeGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Dependency/StartupContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Dependency/StartupContent.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorCommandLineModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorCommandLineModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFile.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFileComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFileComparer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFilesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorFilesConfig.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorTemplateModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorTemplateModel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityGeneratorTemplateModel2.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/IdentityHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Identity/identityMinimalHostingChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Identity/identityMinimalHostingChanges.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/MinimalApiGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/MinimalApiGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/MinimalApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/MinimalApiModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/minimalApiChanges.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Minimal Api/minimalApiChanges.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ModelMetadataUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ModelMetadataUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/NameSpaceUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/NameSpaceUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/OverWriteCondition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/OverWriteCondition.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/PackageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/PackageConstants.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/area.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/area.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/blazor-identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/blazor-identity.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/blazor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/blazor.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/controller.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/controller.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/identity.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/identity.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/minimalapi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/minimalapi.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/razorpage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/razorpage.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/view.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/ParameterDefinitions/view.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/EFModelBasedRazorPageScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/EFModelBasedRazorPageScaffolder.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/EmptyRazorPageScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/EmptyRazorPageScaffolder.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorTemplateModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorTemplateModel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageGeneratorTemplateModel2.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageScaffolderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageScaffolderBase.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageWithContextTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageWithContextTemplateModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageWithContextTemplateModel2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/RazorPage/RazorPageWithContextTemplateModel2.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/THIRDPARTYNOTICE ASP.NET_Preview.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/THIRDPARTYNOTICE ASP.NET_Preview.rtf -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Create.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Delete.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Details.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Edit.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/Index.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.Interfaces.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.Interfaces.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Blazor/NotFound.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/AccessDenied.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/AccessDenied.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/AccessDenied.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/AccessDenied.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ConfirmEmail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ConfirmEmail.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ConfirmEmail.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ConfirmEmail.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ExternalLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ExternalLogin.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ExternalLogin.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ExternalLogin.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/InvalidUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/InvalidUser.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/InvalidUser.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/InvalidUser.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Lockout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Lockout.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Lockout.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Lockout.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Login.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Login.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Login.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Login.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/LoginWith2fa.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/LoginWith2fa.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/LoginWith2fa.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/LoginWith2fa.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Email.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Email.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Email.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Email.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Index.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Index.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Manage/Index.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Register.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Register.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Register.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/Register.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ResetPassword.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ResetPassword.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ResetPassword.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/ResetPassword.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/_Imports.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/_Imports.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/_Imports.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Pages/_Imports.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyInputModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyInputModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyInputModel.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyInputModel.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyOperation.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyOperation.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/PasskeyOperation.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Shared/ManageLayout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Shared/ManageLayout.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Shared/ManageLayout.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/BlazorIdentity/Shared/ManageLayout.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityApplicationUser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityApplicationUser.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityApplicationUser.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityApplicationUser.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContext.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContext.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContext.tt -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContextModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/General/IdentityDbContextModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap4/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap4/package-lock.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap4/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap4/package.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap5/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap5/package-lock.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap5/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Identity/Bootstrap5/package.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApi.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApi.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiEf.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiEf.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiEfNoClass.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiEfNoClass.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiNoClass.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MinimalApi/MinimalApiNoClass.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MvcLayout/Error.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MvcLayout/Error.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/MvcLayout/_Layout.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/MvcLayout/_Layout.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Startup/ReadMe.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Startup/ReadMe.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/Startup/Startup.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/Startup/Startup.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/Edit.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/Empty.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/Empty.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap4/List.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/Edit.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/Empty.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/Empty.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/List.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/Templates/ViewGenerator/Bootstrap5/List.cshtml -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/VS.Web.CG.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/VS.Web.CG.Mvc.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/EFModelBasedViewScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/EFModelBasedViewScaffolder.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/EmptyViewScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/EmptyViewScaffolder.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ModelBasedViewScaffolder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ModelBasedViewScaffolder.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ViewGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ViewGenerator.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ViewGeneratorModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ViewGeneratorModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ViewGeneratorTemplateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ViewGeneratorTemplateModel.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ViewScaffolderBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ViewScaffolderBase.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/View/ViewTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/View/ViewTemplate.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/breakingchanges.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/breakingchanges.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Mvc/js/copyDependency.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Mvc/js/copyDependency.mjs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/Compilation/CompilationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/Compilation/CompilationResult.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/Compilation/ICompilationService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/Compilation/ICompilationService.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/ITemplating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/ITemplating.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/RazorTemplateBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/RazorTemplateBase.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/RazorTemplating.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/RazorTemplating.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/TemplateProcessingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/TemplateProcessingException.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/TemplateRazorProjectItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/TemplateRazorProjectItem.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/TemplateResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/TemplateResult.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/TypeUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/TypeUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/VS.Web.CG.Templating.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/VS.Web.CG.Templating.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Templating/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Templating/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/CommonUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/CommonUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/CompilationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/CompilationResult.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/DotNet/ApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/DotNet/ApplicationInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/DotNet/DefaultAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/DotNet/DefaultAssemblyLoadContext.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/DotNet/IApplicationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/DotNet/IApplicationInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/DotNet/ICodeGenAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/DotNet/ICodeGenAssemblyLoadContext.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/DotNet/ResolvedReferenceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/DotNet/ResolvedReferenceExtensions.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/ExceptionUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/ExceptionUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/PlatformHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/PlatformHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/Resource.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/Resource.resx -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/TemplateFoldersUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/TemplateFoldersUtilities.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/VS.Web.CG.Utils.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/VS.Web.CG.Utils.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/Workspaces/RoslynWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/Workspaces/RoslynWorkspace.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/Workspaces/RoslynWorkspaceHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/Workspaces/RoslynWorkspaceHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG.Utils/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG.Utils/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG/CodeGenCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG/CodeGenCommand.cs -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG/VS.Web.CG.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG/VS.Web.CG.csproj -------------------------------------------------------------------------------- /src/Scaffolding/VS.Web.CG/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/VS.Web.CG/baseline.netcore.json -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/DotNetBuildCommandHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/DotNetBuildCommandHelper.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/MessageStrings.resx -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/ParamDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/ParamDefinition.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/Program.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/ProjectFileFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/ProjectFileFinder.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/Resources.Designer.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/Resources.resx -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/ScaffoldingApp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/ScaffoldingApp.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/ScaffoldingServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/ScaffoldingServer.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/TargetInstaller.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/TargetInstaller.cs -------------------------------------------------------------------------------- /src/Scaffolding/dotnet-aspnet-codegenerator/ToolCommandLineHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Scaffolding/dotnet-aspnet-codegenerator/ToolCommandLineHelper.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/Command.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/CommandResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/CommandResult.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/DotNetMuxer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/DotNetMuxer.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/DotnetCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Cli.Utils/DotnetCommands.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/DefaultFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/DefaultFileSystem.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/EFValidationUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/EFValidationUtil.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/FileSystemChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/FileSystemChangeTracker.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/ILogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/ILogger.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/LogMessageLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/LogMessageLevel.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/Requires.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/Requires.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/General/StringUtil.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/IFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/IFileSystem.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/IFileSystemChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/IFileSystemChangeTracker.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/MessageStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/MessageStrings.Designer.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/MessageStrings.resx -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/IMessageSender.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/IMessageSender.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/Message.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/MessageTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Messaging/MessageTypes.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsBuild/MessageStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsBuild/MessageStrings.resx -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsIdentity/ConsoleLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsIdentity/ConsoleLogger.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsIdentity/JsonResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/MsIdentity/JsonResponse.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Project/ModelType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Project/ModelType.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Project/RoslynUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Project/RoslynUtilities.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/ProjectModel/Dependency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/ProjectModel/Dependency.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/SharedConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/SharedConstants.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/SimulationModeFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/SimulationModeFileSystem.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/T4Templating/CallContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/T4Templating/CallContext.cs -------------------------------------------------------------------------------- /src/Shared/Microsoft.DotNet.Scaffolding.Shared/baseline.netcore.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/Shared/Microsoft.DotNet.Scaffolding.Shared/baseline.netcore.json -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Directory.Build.props -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Directory.Packages.props -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/Hosting/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/Hosting/Host.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/NuGet/Package.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/NuGet/Package.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Core/README.md -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Internal/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Internal/Constants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Internal/StringUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Internal/StringUtil.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Roslyn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/Microsoft.DotNet.Scaffolding.Roslyn/README.md -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/AspNetCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/AspNetCommandService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Commands/AspNetOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Commands/AspNetOptions.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Commands/AspnetStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Commands/AspnetStrings.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ClassAnalyzers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ClassAnalyzers.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/Constants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/DbContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/DbContextInfo.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ModelInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ModelInfo.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/PackageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/PackageConstants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Common/ProjectInfo.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/AzCliHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/AzCliHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/BlazorCrudHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/BlazorCrudHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/CommandHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/CommandHelpers.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/EntraIdHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/EntraIdHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/IdentityHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/IdentityHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/MinimalApiHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/MinimalApiHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/RazorPagesHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/RazorPagesHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/ViewHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Helpers/ViewHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/BlazorCrudModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/BlazorCrudModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/CrudModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/CrudModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/EfControllerModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/EfControllerModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/EntraIdModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/EntraIdModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/IdentityModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/IdentityModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/MinimalApiModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/MinimalApiModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/RazorPageModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/RazorPageModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/ViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Models/ViewModel.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/ScaffoldSteps/AddFileStep.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/ScaffoldSteps/AddFileStep.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/BlazorCrud/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/BlazorCrud/Edit.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/BlazorCrud/Edit.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/BlazorCrud/Edit.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/RazorPages/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/RazorPages/Edit.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/RazorPages/Edit.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/RazorPages/Edit.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Create.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Create.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Create.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Create.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Delete.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Delete.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Delete.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Delete.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Details.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Details.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Details.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Details.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Edit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Edit.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Edit.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Edit.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Index.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Index.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Index.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/AspNet/Templates/Views/Index.tt -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/AspireCommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/AspireCommandService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Command/AspireOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Command/AspireOptions.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Command/CliStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Command/CliStrings.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/CommandSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/CommandSettings.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/AspireHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/AspireHelpers.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/PackageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/PackageConstants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/StorageConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/StorageConstants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/StorageProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/StorageProperties.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/ValidationHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Aspire/Helpers/ValidationHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Command/ICommandService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Command/ICommandService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Helpers/CliHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Helpers/CliHelpers.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Helpers/ToolHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Helpers/ToolHelper.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Interactive/Command/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Interactive/Command/BaseCommand.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Interactive/Command/ToolSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Interactive/Command/ToolSettings.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Interactive/Flow/FlowExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Interactive/Flow/FlowExtensions.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Models/ScaffoldManifest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Models/ScaffoldManifest.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Models/ScaffoldTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Models/ScaffoldTool.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Program.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/README.md -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/DotNetToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/DotNetToolService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/IDotNetToolService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/IDotNetToolService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/IToolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/IToolManager.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/IToolManifestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/IToolManifestService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/ToolManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/ToolManager.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Services/ToolManifestService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Services/ToolManifestService.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/Telemetry/TelemetryConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/Telemetry/TelemetryConstants.cs -------------------------------------------------------------------------------- /src/dotnet-scaffolding/dotnet-scaffold/dotnet-scaffold.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/src/dotnet-scaffolding/dotnet-scaffold/dotnet-scaffold.csproj -------------------------------------------------------------------------------- /start-code.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/start-code.cmd -------------------------------------------------------------------------------- /startvs.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/startvs.cmd -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity.Tests/CleanUp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity.Tests/CleanUp.cs -------------------------------------------------------------------------------- /test/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity.Tests/E2ETests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/MSIdentityScaffolding/Microsoft.DotNet.MSIdentity.Tests/E2ETests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/AreaScaffolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/AreaScaffolderTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/BlogsController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/BlogsController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/BlogsDerivedDbContext.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/BlogsDerivedDbContext.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Create.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Delete.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Details.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Edit.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarViews/Index.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarsController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarsController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarsControllerWithDAL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarsControllerWithDAL.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/CarsWithViewController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/CarsWithViewController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/EmptyController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/EmptyController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Create.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Create.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Delete.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Delete.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Details.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Details.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Edit.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Edit.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Index.cshtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductViews/Index.cshtml -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ProductsController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ProductsController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/CarCreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/CarCreate.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/CarCreateCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/CarCreateCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Create.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Create.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/CreateCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/CreateCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Delete.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Delete.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/DeleteCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/DeleteCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Details.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Details.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/DetailsCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/DetailsCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Edit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Edit.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/EditCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/EditCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Index.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/Index.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/IndexCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/Crud/IndexCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/EmptyPage.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/EmptyPage.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/EmptyPageCs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/RazorPages/EmptyPageCs.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ReadMe/Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ReadMe/Readme.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/ReadWriteController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/ReadWriteController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/TestApiController.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/TestApiController.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/Views/CarCreate.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/Views/CarCreate.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/Views/CarDetails.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/Views/CarDetails.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/Compiler/Resources/Views/EmptyView.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/Compiler/Resources/Views/EmptyView.txt -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/E2ETestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/E2ETestBase.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/E2E_Test.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/E2E_Test.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/IdentityGeneratorFilesConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/IdentityGeneratorFilesConfig.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/IdentityScaffolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/IdentityScaffolderTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/MinimalApiTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/MinimalApiTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/MvcControllerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/MvcControllerTest.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/RazorPageScaffolderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/RazorPageScaffolderTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/SimulationModeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/SimulationModeTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/TestLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/TestLogger.cs -------------------------------------------------------------------------------- /test/Scaffolding/E2E_Test/ViewGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/E2E_Test/ViewGeneratorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/Ext.ProjectModel.Tests/Ext.ProjectModel.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Ext.ProjectModel.Tests/Ext.ProjectModel.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/Ext.ProjectModel.Tests/Utilities/TemporaryFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Ext.ProjectModel.Tests/Utilities/TemporaryFileProvider.cs -------------------------------------------------------------------------------- /test/Scaffolding/Shared/FileSystem/MockFileSystem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Shared/FileSystem/MockFileSystem.cs -------------------------------------------------------------------------------- /test/Scaffolding/Shared/MSBuildProjectStrings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Shared/MSBuildProjectStrings.cs -------------------------------------------------------------------------------- /test/Scaffolding/Shared/MsBuildProjectSetupHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Shared/MsBuildProjectSetupHelper.cs -------------------------------------------------------------------------------- /test/Scaffolding/Shared/TemporaryFileProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/Shared/TemporaryFileProvider.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ClassLibrary1/Class1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ClassLibrary1/Class1.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ClassLibrary1/ClassLibrary1.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ClassLibrary1/ClassLibrary1.csproj -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ClassLibrary2/Class2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ClassLibrary2/Class2.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ClassLibrary2/ClassLibrary2.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ClassLibrary2/ClassLibrary2.csproj -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/Directory.Build.props -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/Directory.Build.targets -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ModelTypesLocatorTestClassLibrary/Car.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ModelTypesLocatorTestClassLibrary/Car.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ModelTypesLocatorTestWebApp/Models/CarContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ModelTypesLocatorTestWebApp/Models/CarContext.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestApps/ModelTypesLocatorTestWebApp/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestApps/ModelTypesLocatorTestWebApp/Program.cs -------------------------------------------------------------------------------- /test/Scaffolding/TestPackage.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/TestPackage.props -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.FunctionalTest/NupkgTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.FunctionalTest/NupkgTest.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/ActionDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/ActionDescriptorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/ActionInvokerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/ActionInvokerTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorActionsServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorActionsServiceTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorDescriptorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorsLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/CodeGeneratorsLocatorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/FileSystemChangeTrackerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/FileSystemChangeTrackerTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/FilesLocatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/FilesLocatorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/MemberInfoExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/MemberInfoExtensionsTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/PackageInstallerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/PackageInstallerTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/ParameterDescriptorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/ParameterDescriptorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/SimulationModeFileSystemTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/SimulationModeFileSystemTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Core.Test/VS.Web.CG.Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Core.Test/VS.Web.CG.Core.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/CodeModelMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/CodeModelMetadataTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/CodeModelServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/CodeModelServiceTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/ConnectionStringsWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/ConnectionStringsWriterTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/DbContextEditorServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/DbContextEditorServicesTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/EntityFrameworkServicesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/EntityFrameworkServicesTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/ModelMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/ModelMetadataTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/NavigationMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/NavigationMetadataTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/PropertyMetadataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/PropertyMetadataTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/ReflectedTypesProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/ReflectedTypesProviderTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/ResourceUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/ResourceUtilities.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/TestAssemblyLoadContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/TestAssemblyLoadContext.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/Models.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/Models.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/TestDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/TestDbContext.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/TestModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/TestModels/TestModel.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/TypeUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/TypeUtilTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/VS.Web.CG.EFCore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/VS.Web.CG.EFCore.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.EFCore.Test/compiler/resources/MyModel.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.EFCore.Test/compiler/resources/MyModel.txt -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.MSBuild.Test/ProjectContextWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.MSBuild.Test/ProjectContextWriterTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.MSBuild.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.MSBuild.Test/TestBase.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.MSBuild.Test/VS.Web.CG.MSBuild.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.MSBuild.Test/VS.Web.CG.MSBuild.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/BlazorIdentityHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/BlazorIdentityHelperTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/BlazorWebCRUDGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/BlazorWebCRUDGeneratorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/CdnScriptTagTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/CdnScriptTagTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/ControllerGeneratorBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/ControllerGeneratorBaseTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityGeneratorFilesConfigTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityGeneratorFilesConfigTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityGeneratorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityHelperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/IdentityHelperTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/MinimalApiGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/MinimalApiGeneratorTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/MockControllerGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/MockControllerGenerator.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/ModelMetadataUtilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/ModelMetadataUtilitiesTest.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/NamespaceUtilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/NamespaceUtilitiesTest.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/VS.Web.CG.Mvc.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/VS.Web.CG.Mvc.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Mvc.Test/ValidationUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Mvc.Test/ValidationUtilTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/ApplicationInfoTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/ApplicationInfoTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/CommonUtilitiesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/CommonUtilitiesTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/CompilationResultTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/CompilationResultTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/DefaultAssemblyLoadContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/DefaultAssemblyLoadContextTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/MessageHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/MessageHandlerTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/MockLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/MockLogger.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/TestBase.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Sources.Test/VS.Web.CG.Sources.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Sources.Test/VS.Web.CG.Sources.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Templating.Test/RazorTemplateBaseTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Templating.Test/RazorTemplateBaseTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Templating.Test/TypeUtilitiesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Templating.Test/TypeUtilitiesTest.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Tools.Test/TargetInstallerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Tools.Test/TargetInstallerTests.cs -------------------------------------------------------------------------------- /test/Scaffolding/VS.Web.CG.Tools.Test/VS.Web.CG.Tools.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/VS.Web.CG.Tools.Test/VS.Web.CG.Tools.Tests.csproj -------------------------------------------------------------------------------- /test/Scaffolding/runtests.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Scaffolding/runtests.cmd -------------------------------------------------------------------------------- /test/Shared/Microsoft.DotNet.Scaffolding.Shared.Tests/StringUtilTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/Shared/Microsoft.DotNet.Scaffolding.Shared.Tests/StringUtilTests.cs -------------------------------------------------------------------------------- /test/dotnet-scaffolding/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/dotnet-scaffolding/Directory.Packages.props -------------------------------------------------------------------------------- /test/legacy-scaffolding-tests.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/Scaffolding/HEAD/test/legacy-scaffolding-tests.playlist --------------------------------------------------------------------------------