├── .editorconfig ├── .gitignore ├── CODE-OF-CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE.txt ├── NuGet.config ├── ProjectSystemTools.sln ├── README.md ├── SECURITY.md ├── eng ├── TSAConfig.gdntsa ├── Version.Details.xml ├── Versions.props ├── analyze-compliance.yml ├── azure-pipelines.yml ├── 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.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 │ │ │ ├── armel.jessie.patch │ │ │ └── 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 │ ├── darc-init.ps1 │ ├── darc-init.sh │ ├── dotnet-install.cmd │ ├── dotnet-install.ps1 │ ├── dotnet-install.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 │ │ └── variables │ │ │ └── pool-providers.yml │ ├── tools.ps1 │ └── tools.sh └── official.yml ├── global.json ├── img ├── build-logging-click-to-record.png ├── build-logging-context-menu.png ├── build-message-list.png ├── open-log-view.png └── view-menu.png ├── spelling.dic ├── src ├── Directory.Build.props ├── Directory.Build.targets └── ProjectSystemTools │ ├── BinaryLogEditor │ ├── BinaryLogDocumentData.cs │ ├── BinaryLogEditorFactory.cs │ ├── BinaryLogEditorPane.cs │ ├── BinaryLogEditorResources.Designer.cs │ ├── BinaryLogEditorResources.resx │ ├── BuildTreeViewControl.xaml │ ├── BuildTreeViewControl.xaml.cs │ ├── EvaluationTreeViewControl.xaml │ ├── EvaluationTreeViewControl.xaml.cs │ ├── LogViewControl.xaml │ ├── LogViewControl.xaml.cs │ ├── MessageToolListWindow.cs │ ├── NodeDataTemplateSelector.cs │ ├── ViewModel │ │ ├── BaseViewModel.cs │ │ ├── BuildViewModel.cs │ │ ├── DictionaryBasedPropertyDescriptor.cs │ │ ├── EvaluatedLocationViewModel.cs │ │ ├── EvaluatedPassViewModel.cs │ │ ├── EvaluatedProjectViewModel.cs │ │ ├── EvaluationListViewModel.cs │ │ ├── EvaluationViewModel.cs │ │ ├── ExceptionViewModel.cs │ │ ├── IViewModelWithProperties.cs │ │ ├── ItemViewModel.cs │ │ ├── ListViewModel.cs │ │ ├── NodeViewModel.cs │ │ ├── ProjectViewModel.cs │ │ ├── PropertyViewModel.cs │ │ ├── RootViewModel.cs │ │ ├── SelectedObjectWrapper.cs │ │ ├── TargetListViewModel.cs │ │ ├── TargetViewModel.cs │ │ ├── TaskListViewModel.cs │ │ └── TaskViewModel.cs │ └── xlf │ │ ├── BinaryLogEditorResources.cs.xlf │ │ ├── BinaryLogEditorResources.de.xlf │ │ ├── BinaryLogEditorResources.es.xlf │ │ ├── BinaryLogEditorResources.fr.xlf │ │ ├── BinaryLogEditorResources.it.xlf │ │ ├── BinaryLogEditorResources.ja.xlf │ │ ├── BinaryLogEditorResources.ko.xlf │ │ ├── BinaryLogEditorResources.pl.xlf │ │ ├── BinaryLogEditorResources.pt-BR.xlf │ │ ├── BinaryLogEditorResources.ru.xlf │ │ ├── BinaryLogEditorResources.tr.xlf │ │ ├── BinaryLogEditorResources.zh-Hans.xlf │ │ └── BinaryLogEditorResources.zh-Hant.xlf │ ├── BuildLogging │ ├── BuildLoggerProvider.cs │ ├── BuildLoggingResources.resx │ ├── ILoggingController.cs │ ├── Model │ │ ├── Backend │ │ │ ├── BackendBuildTableDataSource.cs │ │ │ ├── Build.cs │ │ │ ├── EvaluationLogger.cs │ │ │ ├── ILoggingDataSource.cs │ │ │ ├── LoggerBase.cs │ │ │ ├── ProjectLogger.cs │ │ │ └── RoslynLogger.cs │ │ ├── BuildStatus.cs │ │ ├── BuildSummary.cs │ │ ├── BuildType.cs │ │ └── Frontend │ │ │ ├── FrontendBuildTableDataSource.cs │ │ │ ├── IFrontendBuildTableDataSource.cs │ │ │ └── UIBuildSummary.cs │ ├── UI │ │ ├── BuildLogTableEventProcessor.cs │ │ ├── BuildLogTableEventProcessorProvider.cs │ │ ├── BuildLoggingToolWindow.cs │ │ └── BuildTableEntriesSnapshot.cs │ └── xlf │ │ ├── BuildLoggingResources.cs.xlf │ │ ├── BuildLoggingResources.de.xlf │ │ ├── BuildLoggingResources.es.xlf │ │ ├── BuildLoggingResources.fr.xlf │ │ ├── BuildLoggingResources.it.xlf │ │ ├── BuildLoggingResources.ja.xlf │ │ ├── BuildLoggingResources.ko.xlf │ │ ├── BuildLoggingResources.pl.xlf │ │ ├── BuildLoggingResources.pt-BR.xlf │ │ ├── BuildLoggingResources.ru.xlf │ │ ├── BuildLoggingResources.tr.xlf │ │ ├── BuildLoggingResources.zh-Hans.xlf │ │ └── BuildLoggingResources.zh-Hant.xlf │ ├── GlobalAssemblyInfo.cs │ ├── Icon.png │ ├── LogModel │ ├── Build.cs │ ├── Builder │ │ ├── BaseInfo.cs │ │ ├── BuildInfo.cs │ │ ├── DiagnosticInfo.cs │ │ ├── EvaluatedLocationInfo.cs │ │ ├── EvaluatedPassInfo.cs │ │ ├── EvaluatedProfileInfo.cs │ │ ├── EvaluatedProjectInfo.cs │ │ ├── EvaluationInfo.cs │ │ ├── ItemActionInfo.cs │ │ ├── ItemGroupInfo.cs │ │ ├── ItemInfo.cs │ │ ├── MessageInfo.cs │ │ ├── ModelBuilder.cs │ │ ├── ProjectInfo.cs │ │ ├── PropertySetInfo.cs │ │ ├── TargetInfo.cs │ │ ├── TaskInfo.cs │ │ └── TimeInfo.cs │ ├── Diagnostic.cs │ ├── EvaluatedLocation.cs │ ├── EvaluatedPass.cs │ ├── EvaluatedProfile.cs │ ├── EvaluatedProject.cs │ ├── Evaluation.cs │ ├── Item.cs │ ├── ItemAction.cs │ ├── ItemGroup.cs │ ├── Log.cs │ ├── Message.cs │ ├── Node.cs │ ├── Project.cs │ ├── PropertySet.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Result.cs │ ├── Target.cs │ ├── Task.cs │ ├── Time.cs │ └── xlf │ │ ├── Resources.cs.xlf │ │ ├── Resources.de.xlf │ │ ├── Resources.es.xlf │ │ ├── Resources.fr.xlf │ │ ├── Resources.it.xlf │ │ ├── Resources.ja.xlf │ │ ├── Resources.ko.xlf │ │ ├── Resources.pl.xlf │ │ ├── Resources.pt-BR.xlf │ │ ├── Resources.ru.xlf │ │ ├── Resources.tr.xlf │ │ ├── Resources.zh-Hans.xlf │ │ └── Resources.zh-Hant.xlf │ ├── ProjectSystemTools.csproj │ ├── ProjectSystemToolsPackage.cs │ ├── ProjectSystemToolsPackage.vsct │ ├── Properties │ └── launchSettings.json │ ├── RoslynLogging │ ├── RoslynLoggingResources.Designer.cs │ ├── RoslynLoggingResources.resx │ ├── RoslynWorkspaceStructureLogger.cs │ └── xlf │ │ ├── RoslynLoggingResources.cs.xlf │ │ ├── RoslynLoggingResources.de.xlf │ │ ├── RoslynLoggingResources.es.xlf │ │ ├── RoslynLoggingResources.fr.xlf │ │ ├── RoslynLoggingResources.it.xlf │ │ ├── RoslynLoggingResources.ja.xlf │ │ ├── RoslynLoggingResources.ko.xlf │ │ ├── RoslynLoggingResources.pl.xlf │ │ ├── RoslynLoggingResources.pt-BR.xlf │ │ ├── RoslynLoggingResources.ru.xlf │ │ ├── RoslynLoggingResources.tr.xlf │ │ ├── RoslynLoggingResources.zh-Hans.xlf │ │ └── RoslynLoggingResources.zh-Hant.xlf │ ├── TableControl │ ├── BuildTypeColumnDefinition.cs │ ├── ContentWrapper.cs │ ├── DimensionsColumnDefinition.cs │ ├── ElapsedColumnDefinition.cs │ ├── ProjectTypeColumnDefinition.cs │ ├── StartTimeColumnDefinition.cs │ ├── StatusColumnDefinition.cs │ ├── TableColumnNames.cs │ ├── TableControlResources.resx │ ├── TableKeyNames.cs │ ├── TableSearchFilter.cs │ ├── TableSearchTask.cs │ ├── TableSettingLoader.cs │ ├── TableToolWindow.cs │ ├── TargetsColumnDefinition.cs │ ├── TimeColumnDefinition.cs │ └── xlf │ │ ├── TableControlResources.cs.xlf │ │ ├── TableControlResources.de.xlf │ │ ├── TableControlResources.es.xlf │ │ ├── TableControlResources.fr.xlf │ │ ├── TableControlResources.it.xlf │ │ ├── TableControlResources.ja.xlf │ │ ├── TableControlResources.ko.xlf │ │ ├── TableControlResources.pl.xlf │ │ ├── TableControlResources.pt-BR.xlf │ │ ├── TableControlResources.ru.xlf │ │ ├── TableControlResources.tr.xlf │ │ ├── TableControlResources.zh-Hans.xlf │ │ └── TableControlResources.zh-Hant.xlf │ ├── Utilities │ ├── Annotations.cs │ ├── BuildLoggerBase.cs │ ├── Empty.cs │ ├── PathUtil.cs │ ├── PropertyDictionaryExtensions.cs │ └── Strings.cs │ ├── VSPackage.Designer.cs │ ├── VSPackage.resx │ ├── source.extension.vsixmanifest │ └── xlf │ ├── ProjectSystemToolsPackage.vsct.cs.xlf │ ├── ProjectSystemToolsPackage.vsct.de.xlf │ ├── ProjectSystemToolsPackage.vsct.es.xlf │ ├── ProjectSystemToolsPackage.vsct.fr.xlf │ ├── ProjectSystemToolsPackage.vsct.it.xlf │ ├── ProjectSystemToolsPackage.vsct.ja.xlf │ ├── ProjectSystemToolsPackage.vsct.ko.xlf │ ├── ProjectSystemToolsPackage.vsct.pl.xlf │ ├── ProjectSystemToolsPackage.vsct.pt-BR.xlf │ ├── ProjectSystemToolsPackage.vsct.ru.xlf │ ├── ProjectSystemToolsPackage.vsct.tr.xlf │ ├── ProjectSystemToolsPackage.vsct.zh-Hans.xlf │ ├── ProjectSystemToolsPackage.vsct.zh-Hant.xlf │ ├── VSPackage.cs.xlf │ ├── VSPackage.de.xlf │ ├── VSPackage.es.xlf │ ├── VSPackage.fr.xlf │ ├── VSPackage.it.xlf │ ├── VSPackage.ja.xlf │ ├── VSPackage.ko.xlf │ ├── VSPackage.pl.xlf │ ├── VSPackage.pt-BR.xlf │ ├── VSPackage.ru.xlf │ ├── VSPackage.tr.xlf │ ├── VSPackage.zh-Hans.xlf │ └── VSPackage.zh-Hant.xlf └── test.cmd /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE-OF-CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/CODE-OF-CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/NuGet.config -------------------------------------------------------------------------------- /ProjectSystemTools.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/ProjectSystemTools.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/SECURITY.md -------------------------------------------------------------------------------- /eng/TSAConfig.gdntsa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/TSAConfig.gdntsa -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/analyze-compliance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/analyze-compliance.yml -------------------------------------------------------------------------------- /eng/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/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/project-system-tools/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/cleanup-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/cleanup-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/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/project-system-tools/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/install-microbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/install-microbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/arm/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/arm/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/arm64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/arm64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/install-debs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/install-debs.py -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-dependencies.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/install-dependencies.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdk-task.sh -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/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/project-system-tools/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/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/project-system-tools/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/project-system-tools/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-index-stage1-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/steps/source-index-stage1-publish.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/official.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/eng/official.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/global.json -------------------------------------------------------------------------------- /img/build-logging-click-to-record.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/img/build-logging-click-to-record.png -------------------------------------------------------------------------------- /img/build-logging-context-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/img/build-logging-context-menu.png -------------------------------------------------------------------------------- /img/build-message-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/img/build-message-list.png -------------------------------------------------------------------------------- /img/open-log-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/img/open-log-view.png -------------------------------------------------------------------------------- /img/view-menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/img/view-menu.png -------------------------------------------------------------------------------- /spelling.dic: -------------------------------------------------------------------------------- 1 | ctmenu 2 | binlog 3 | msbuild 4 | Proj 5 | -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BinaryLogDocumentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BinaryLogDocumentData.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorFactory.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorPane.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorPane.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorResources.Designer.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BinaryLogEditorResources.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BuildTreeViewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BuildTreeViewControl.xaml -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/BuildTreeViewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/BuildTreeViewControl.xaml.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/EvaluationTreeViewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/EvaluationTreeViewControl.xaml -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/EvaluationTreeViewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/EvaluationTreeViewControl.xaml.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/LogViewControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/LogViewControl.xaml -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/LogViewControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/LogViewControl.xaml.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/MessageToolListWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/MessageToolListWindow.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/NodeDataTemplateSelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/NodeDataTemplateSelector.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/BaseViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/BaseViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/BuildViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/BuildViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/DictionaryBasedPropertyDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/DictionaryBasedPropertyDescriptor.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedLocationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedLocationViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedPassViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedPassViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluatedProjectViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluationListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluationListViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/EvaluationViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/ExceptionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/ExceptionViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/IViewModelWithProperties.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/IViewModelWithProperties.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/ItemViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/ListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/ListViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/NodeViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/NodeViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/ProjectViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/ProjectViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/PropertyViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/PropertyViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/RootViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/RootViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/SelectedObjectWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/SelectedObjectWrapper.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/TargetListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/TargetListViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/TargetViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/TargetViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/TaskListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/TaskListViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/ViewModel/TaskViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/ViewModel/TaskViewModel.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BinaryLogEditor/xlf/BinaryLogEditorResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/BuildLoggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/BuildLoggerProvider.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/BuildLoggingResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/BuildLoggingResources.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/ILoggingController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/ILoggingController.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/BackendBuildTableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/BackendBuildTableDataSource.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/Build.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/EvaluationLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/EvaluationLogger.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/ILoggingDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/ILoggingDataSource.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/LoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/LoggerBase.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/ProjectLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/ProjectLogger.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Backend/RoslynLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Backend/RoslynLogger.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/BuildStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/BuildStatus.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/BuildSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/BuildSummary.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/BuildType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/BuildType.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Frontend/FrontendBuildTableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Frontend/FrontendBuildTableDataSource.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Frontend/IFrontendBuildTableDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Frontend/IFrontendBuildTableDataSource.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/Model/Frontend/UIBuildSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/Model/Frontend/UIBuildSummary.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/UI/BuildLogTableEventProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/UI/BuildLogTableEventProcessor.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/UI/BuildLogTableEventProcessorProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/UI/BuildLogTableEventProcessorProvider.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/UI/BuildLoggingToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/UI/BuildLoggingToolWindow.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/UI/BuildTableEntriesSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/UI/BuildTableEntriesSnapshot.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/BuildLogging/xlf/BuildLoggingResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/GlobalAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/GlobalAssemblyInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Icon.png -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Build.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Build.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/BaseInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/BaseInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/BuildInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/BuildInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/DiagnosticInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/DiagnosticInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/EvaluatedLocationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/EvaluatedLocationInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/EvaluatedPassInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/EvaluatedPassInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/EvaluatedProfileInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/EvaluatedProfileInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/EvaluatedProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/EvaluatedProjectInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/EvaluationInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/EvaluationInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/ItemActionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/ItemActionInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/ItemGroupInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/ItemGroupInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/ItemInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/ItemInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/MessageInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/MessageInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/ModelBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/ModelBuilder.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/ProjectInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/ProjectInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/PropertySetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/PropertySetInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/TargetInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/TargetInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/TaskInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/TaskInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Builder/TimeInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Builder/TimeInfo.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Diagnostic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Diagnostic.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/EvaluatedLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/EvaluatedLocation.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/EvaluatedPass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/EvaluatedPass.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/EvaluatedProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/EvaluatedProfile.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/EvaluatedProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/EvaluatedProject.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Evaluation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Evaluation.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Item.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Item.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/ItemAction.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/ItemAction.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/ItemGroup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/ItemGroup.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Log.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Message.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Message.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Node.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Node.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Project.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Project.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/PropertySet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/PropertySet.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Resources.Designer.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Resources.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Result.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Result.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Target.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Target.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Task.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/Time.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/Time.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/LogModel/xlf/Resources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/LogModel/xlf/Resources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/ProjectSystemTools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/ProjectSystemTools.csproj -------------------------------------------------------------------------------- /src/ProjectSystemTools/ProjectSystemToolsPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/ProjectSystemToolsPackage.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/ProjectSystemToolsPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/ProjectSystemToolsPackage.vsct -------------------------------------------------------------------------------- /src/ProjectSystemTools/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/RoslynLoggingResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/RoslynLoggingResources.Designer.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/RoslynLoggingResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/RoslynLoggingResources.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/RoslynWorkspaceStructureLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/RoslynWorkspaceStructureLogger.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/RoslynLogging/xlf/RoslynLoggingResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/BuildTypeColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/BuildTypeColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/ContentWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/ContentWrapper.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/DimensionsColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/DimensionsColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/ElapsedColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/ElapsedColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/ProjectTypeColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/ProjectTypeColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/StartTimeColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/StartTimeColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/StatusColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/StatusColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableColumnNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableColumnNames.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableControlResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableControlResources.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableKeyNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableKeyNames.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableSearchFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableSearchFilter.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableSearchTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableSearchTask.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableSettingLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableSettingLoader.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TableToolWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TableToolWindow.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TargetsColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TargetsColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/TimeColumnDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/TimeColumnDefinition.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/TableControl/xlf/TableControlResources.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/TableControl/xlf/TableControlResources.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/Annotations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/Annotations.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/BuildLoggerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/BuildLoggerBase.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/Empty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/Empty.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/PathUtil.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/PathUtil.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/PropertyDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/PropertyDictionaryExtensions.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/Utilities/Strings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/Utilities/Strings.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/VSPackage.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/VSPackage.Designer.cs -------------------------------------------------------------------------------- /src/ProjectSystemTools/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/VSPackage.resx -------------------------------------------------------------------------------- /src/ProjectSystemTools/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/ProjectSystemToolsPackage.vsct.zh-Hant.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.cs.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.de.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.es.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.fr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.it.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.ja.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.ko.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.pl.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.pt-BR.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.ru.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.tr.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.zh-Hans.xlf -------------------------------------------------------------------------------- /src/ProjectSystemTools/xlf/VSPackage.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/src/ProjectSystemTools/xlf/VSPackage.zh-Hant.xlf -------------------------------------------------------------------------------- /test.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/project-system-tools/HEAD/test.cmd --------------------------------------------------------------------------------