├── .azuredevops └── dependabot.yml ├── .config ├── 1espt │ └── PipelineAutobaseliningConfig.yml ├── CredScanSuppressions.json ├── PoliCheckExclusions.xml ├── dotnet-tools.json └── tsaoptions.json ├── .editorconfig ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── 10_bug_report.yml │ ├── 20_feature_request.yml │ └── config.yml ├── copilot-instructions.md ├── dependabot.yml ├── policies │ ├── labelManagement.issueOpened.yml │ ├── labelManagement.issueUpdated.yml │ ├── labelManagement.prOpened.yml │ ├── labelManagement.prUpdated.yml │ ├── scheduledSearch.closeStaleIssuesAndPrs.yml │ └── scheduledSearch.markNoRecentActivity.yml └── workflows │ ├── autoformat-push.yml │ ├── autoformat-run.yml │ ├── backport-trigger.yml │ ├── pr-fast-forward-merge.yml │ └── rebase-trigger.yml ├── .gitignore ├── .vscode └── settings.json ├── Directory.Packages.props ├── LICENSE.txt ├── NOTICE.txt ├── NuGet.config ├── README.md ├── activate.ps1 ├── activate.sh ├── docs ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── IssueManagementPolicies.md ├── IssueReproductionGuide.md ├── SDL │ └── xcsync Threat Model.tm7 ├── SECURITY.md ├── machine-requirements.md └── using-latest-daily.md ├── dotnet.cmd ├── dotnet.sh ├── eng ├── Build.props ├── CodeCoverage.config ├── Signing.props ├── Version.Details.xml ├── Versions.props ├── build.ps1 ├── build.sh ├── 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 │ │ │ ├── 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 │ │ └── variables │ │ │ └── pool-providers.yml │ ├── cross │ │ ├── armel │ │ │ ├── armel.jessie.patch │ │ │ └── tizen │ │ │ │ └── tizen.patch │ │ ├── build-android-rootfs.sh │ │ ├── build-rootfs.sh │ │ ├── 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-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 │ ├── 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 │ │ └── 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 │ │ └── variables │ │ │ └── pool-providers.yml │ ├── tools.ps1 │ └── tools.sh └── pipelines │ ├── azure-pipeline-public.yml │ ├── azure-pipelines-codeql.yml │ ├── azure-pipelines.yml │ ├── common-variables.yml │ └── templates │ └── buildandtest.yml ├── es-metadata.yml ├── global.json ├── loc ├── cs │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── de │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── es │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── fr │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── it │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── ja │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── ko │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── pl │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── pt-BR │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── ru │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── tr │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl ├── zh-Hans │ └── tools │ │ └── xcsync │ │ └── xcsync │ │ └── Resources │ │ └── Strings.resx.lcl └── zh-Hant │ └── tools │ └── xcsync │ └── xcsync │ └── Resources │ └── Strings.resx.lcl ├── restore.cmd ├── restore.sh ├── src ├── Directory.Build.props ├── Directory.Build.targets └── xcsync │ ├── ApplePlatforms.cs │ ├── Ast │ ├── AstVistor.cs │ ├── AstWalker.cs │ ├── IVisitor.cs │ ├── IWalker.cs │ ├── ObjCImplementationDeclVisitor.cs │ └── ObjCSyntaxRewriter.cs │ ├── Commands │ ├── BaseCommand.cs │ ├── GenerateCommand.cs │ ├── SharedOptions.cs │ ├── SyncCommand.cs │ ├── WatchCommand.cs │ ├── XcSyncCommand.cs │ └── XcodeCommand.cs │ ├── ContinuousSyncContext.cs │ ├── ExtensionFilter.cs │ ├── ISyncContext.cs │ ├── ITextTemplate.cs │ ├── Icon.png │ ├── PACKAGE.md │ ├── ProjectFileChangeMonitor.cs │ ├── Projects │ ├── ClrProject.cs │ ├── GenObjcFileCode.cs │ ├── GenObjcH.tt │ ├── GenObjcM.tt │ ├── ISyncableProject.cs │ ├── ITypeService.cs │ ├── SyncableItem.cs │ ├── SyncableProject.cs │ ├── TypeMapping.cs │ ├── TypeService.cs │ ├── Xcode │ │ ├── BuildSettingsConverter.cs │ │ ├── TextTemplateDefinitions.cs │ │ ├── WorkspaceData.tt │ │ ├── WorkspaceGenerator.cs │ │ ├── WorkspaceSettings.tt │ │ ├── XcodeObjectConverter.cs │ │ ├── XcodeProject.cs │ │ └── XcodeProjectObjectsJsonConverter.cs │ └── XcodeWorkspace.cs │ ├── Resources │ ├── Strings.Designer.cs │ ├── Strings.resx │ └── xlf │ │ ├── Strings.cs.xlf │ │ ├── Strings.de.xlf │ │ ├── Strings.es.xlf │ │ ├── Strings.fr.xlf │ │ ├── Strings.it.xlf │ │ ├── Strings.ja.xlf │ │ ├── Strings.ko.xlf │ │ ├── Strings.pl.xlf │ │ ├── Strings.pt-BR.xlf │ │ ├── Strings.ru.xlf │ │ ├── Strings.tr.xlf │ │ ├── Strings.zh-Hans.xlf │ │ └── Strings.zh-Hant.xlf │ ├── Scripts.cs │ ├── SyncContext.cs │ ├── SyncContextBase.cs │ ├── SyncDirection.cs │ ├── Verbosity.cs │ ├── Workers │ ├── BaseWorker.cs │ ├── ChangeWorker.cs │ ├── FileWorker.cs │ └── ObjCTypeLoader.cs │ ├── dotnet-xcsync │ ├── xcSync.cs │ └── xcsync.csproj ├── start-code.sh ├── test.sh ├── test ├── Directory.Build.props ├── Directory.Build.targets ├── test-project │ ├── AppDelegate.cs │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ ├── Icon1024.png │ │ │ ├── Icon128.png │ │ │ ├── Icon16.png │ │ │ ├── Icon256.png │ │ │ ├── Icon32.png │ │ │ ├── Icon512.png │ │ │ └── Icon64.png │ │ └── Contents.json │ ├── Entitlements.plist │ ├── Info.plist │ ├── Main.cs │ ├── Main.storyboard │ ├── RegisterVariety.cs │ ├── ViewController.cs │ ├── ViewController.designer.cs │ └── test-project.csproj ├── xcsync.e2e.tests │ ├── Base.cs │ ├── GlobalUsings.cs │ ├── data │ │ └── add_outlet_using_xcode.diff │ ├── usecases │ │ ├── GenerateTargetPathArgumentTests.cs │ │ ├── GenerateThenSyncWithChangesTests.cs │ │ ├── GenerateThenSyncWithNoChangesTests.cs │ │ ├── SyncTargetPathArgumentTests.cs │ │ └── XcsyncToolingTests.cs │ └── xcsync.e2e.tests.csproj └── xcsync.tests │ ├── Ast │ ├── AstWalkerTests.cs │ └── ObjCSyntaxRewriterTest.cs │ ├── Base.cs │ ├── Cache.cs │ ├── CodeCoverage.runsettings │ ├── Commands │ └── CommandValidationTests.cs │ ├── ContinuousSyncContextTest.cs │ ├── GlobalUsings.cs │ ├── ProjectFileChangeMonitorTests.cs │ ├── Projects │ ├── DotnetTest.cs │ ├── GenObjcFileTest.cs │ ├── NSProjectTest.cs │ ├── TypeServiceTest.cs │ ├── WorkspaceGeneratorTests.cs │ ├── XcodeProjectTest.cs │ └── XcodeWorkspaceTests.cs │ ├── Resources │ ├── MultipleValid.csproj │ ├── SampleProject.json │ └── Valid.csproj │ ├── ScriptTests.cs │ ├── SolutionPathFinder.cs │ ├── Workers │ └── FileWorkerTest.cs │ ├── data │ ├── converted_pbxproj.in │ └── generated_pbxproj.in │ └── xcsync.tests.csproj ├── tools └── autoformat.sh └── xcsync.sln /.azuredevops/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.azuredevops/dependabot.yml -------------------------------------------------------------------------------- /.config/1espt/PipelineAutobaseliningConfig.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.config/1espt/PipelineAutobaseliningConfig.yml -------------------------------------------------------------------------------- /.config/CredScanSuppressions.json: -------------------------------------------------------------------------------- 1 | { 2 | "tool": "Credential Scanner", 3 | "suppressions": [ 4 | ] 5 | } -------------------------------------------------------------------------------- /.config/PoliCheckExclusions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.config/PoliCheckExclusions.xml -------------------------------------------------------------------------------- /.config/dotnet-tools.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.config/dotnet-tools.json -------------------------------------------------------------------------------- /.config/tsaoptions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.config/tsaoptions.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/10_bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/ISSUE_TEMPLATE/10_bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/20_feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/ISSUE_TEMPLATE/20_feature_request.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/copilot-instructions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/copilot-instructions.md -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/policies/labelManagement.issueOpened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/labelManagement.issueOpened.yml -------------------------------------------------------------------------------- /.github/policies/labelManagement.issueUpdated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/labelManagement.issueUpdated.yml -------------------------------------------------------------------------------- /.github/policies/labelManagement.prOpened.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/labelManagement.prOpened.yml -------------------------------------------------------------------------------- /.github/policies/labelManagement.prUpdated.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/labelManagement.prUpdated.yml -------------------------------------------------------------------------------- /.github/policies/scheduledSearch.closeStaleIssuesAndPrs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/scheduledSearch.closeStaleIssuesAndPrs.yml -------------------------------------------------------------------------------- /.github/policies/scheduledSearch.markNoRecentActivity.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/policies/scheduledSearch.markNoRecentActivity.yml -------------------------------------------------------------------------------- /.github/workflows/autoformat-push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/workflows/autoformat-push.yml -------------------------------------------------------------------------------- /.github/workflows/autoformat-run.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/workflows/autoformat-run.yml -------------------------------------------------------------------------------- /.github/workflows/backport-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/workflows/backport-trigger.yml -------------------------------------------------------------------------------- /.github/workflows/pr-fast-forward-merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/workflows/pr-fast-forward-merge.yml -------------------------------------------------------------------------------- /.github/workflows/rebase-trigger.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.github/workflows/rebase-trigger.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/Directory.Packages.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/NuGet.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/README.md -------------------------------------------------------------------------------- /activate.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/activate.ps1 -------------------------------------------------------------------------------- /activate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/activate.sh -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /docs/IssueManagementPolicies.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/IssueManagementPolicies.md -------------------------------------------------------------------------------- /docs/IssueReproductionGuide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/IssueReproductionGuide.md -------------------------------------------------------------------------------- /docs/SDL/xcsync Threat Model.tm7: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/SDL/xcsync Threat Model.tm7 -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/machine-requirements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/machine-requirements.md -------------------------------------------------------------------------------- /docs/using-latest-daily.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/docs/using-latest-daily.md -------------------------------------------------------------------------------- /dotnet.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/dotnet.cmd -------------------------------------------------------------------------------- /dotnet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/dotnet.sh -------------------------------------------------------------------------------- /eng/Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/Build.props -------------------------------------------------------------------------------- /eng/CodeCoverage.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/CodeCoverage.config -------------------------------------------------------------------------------- /eng/Signing.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/Signing.props -------------------------------------------------------------------------------- /eng/Version.Details.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/Version.Details.xml -------------------------------------------------------------------------------- /eng/Versions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/Versions.props -------------------------------------------------------------------------------- /eng/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/build.ps1 -------------------------------------------------------------------------------- /eng/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/build.sh -------------------------------------------------------------------------------- /eng/common/BuildConfiguration/build-configuration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/BuildConfiguration/build-configuration.json -------------------------------------------------------------------------------- /eng/common/CIBuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/CIBuild.cmd -------------------------------------------------------------------------------- /eng/common/PSScriptAnalyzerSettings.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/PSScriptAnalyzerSettings.psd1 -------------------------------------------------------------------------------- /eng/common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/README.md -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/SetupNugetSources.ps1 -------------------------------------------------------------------------------- /eng/common/SetupNugetSources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/SetupNugetSources.sh -------------------------------------------------------------------------------- /eng/common/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/build.cmd -------------------------------------------------------------------------------- /eng/common/build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/build.ps1 -------------------------------------------------------------------------------- /eng/common/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/build.sh -------------------------------------------------------------------------------- /eng/common/cibuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cibuild.sh -------------------------------------------------------------------------------- /eng/common/core-templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/core-templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/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/xcsync/HEAD/eng/common/core-templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/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/xcsync/HEAD/eng/common/core-templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/core-templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/core-templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/core-templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/cross/armel/armel.jessie.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/armel/armel.jessie.patch -------------------------------------------------------------------------------- /eng/common/cross/armel/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/armel/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/build-android-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/build-android-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/riscv64/tizen/tizen.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/riscv64/tizen/tizen.patch -------------------------------------------------------------------------------- /eng/common/cross/tizen-build-rootfs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/tizen-build-rootfs.sh -------------------------------------------------------------------------------- /eng/common/cross/tizen-fetch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/tizen-fetch.sh -------------------------------------------------------------------------------- /eng/common/cross/toolchain.cmake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/cross/toolchain.cmake -------------------------------------------------------------------------------- /eng/common/darc-init.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/darc-init.ps1 -------------------------------------------------------------------------------- /eng/common/darc-init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/darc-init.sh -------------------------------------------------------------------------------- /eng/common/dotnet-install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/dotnet-install.cmd -------------------------------------------------------------------------------- /eng/common/dotnet-install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/dotnet-install.ps1 -------------------------------------------------------------------------------- /eng/common/dotnet-install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/dotnet-install.sh -------------------------------------------------------------------------------- /eng/common/enable-cross-org-publishing.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/enable-cross-org-publishing.ps1 -------------------------------------------------------------------------------- /eng/common/generate-locproject.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/generate-locproject.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/generate-sbom-prep.ps1 -------------------------------------------------------------------------------- /eng/common/generate-sbom-prep.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/generate-sbom-prep.sh -------------------------------------------------------------------------------- /eng/common/helixpublish.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/helixpublish.proj -------------------------------------------------------------------------------- /eng/common/init-tools-native.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/init-tools-native.cmd -------------------------------------------------------------------------------- /eng/common/init-tools-native.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/init-tools-native.ps1 -------------------------------------------------------------------------------- /eng/common/init-tools-native.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/init-tools-native.sh -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/internal-feed-operations.ps1 -------------------------------------------------------------------------------- /eng/common/internal-feed-operations.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/internal-feed-operations.sh -------------------------------------------------------------------------------- /eng/common/internal/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/internal/Directory.Build.props -------------------------------------------------------------------------------- /eng/common/internal/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/internal/NuGet.config -------------------------------------------------------------------------------- /eng/common/internal/Tools.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/internal/Tools.csproj -------------------------------------------------------------------------------- /eng/common/loc/P22DotNetHtmlLocalization.lss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/loc/P22DotNetHtmlLocalization.lss -------------------------------------------------------------------------------- /eng/common/msbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/msbuild.ps1 -------------------------------------------------------------------------------- /eng/common/msbuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/msbuild.sh -------------------------------------------------------------------------------- /eng/common/native/CommonLibrary.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/CommonLibrary.psm1 -------------------------------------------------------------------------------- /eng/common/native/common-library.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/common-library.sh -------------------------------------------------------------------------------- /eng/common/native/init-compiler.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/init-compiler.sh -------------------------------------------------------------------------------- /eng/common/native/init-distro-rid.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/init-distro-rid.sh -------------------------------------------------------------------------------- /eng/common/native/init-os-and-arch.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/init-os-and-arch.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/install-cmake-test.sh -------------------------------------------------------------------------------- /eng/common/native/install-cmake.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/install-cmake.sh -------------------------------------------------------------------------------- /eng/common/native/install-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/native/install-tool.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/pipeline-logging-functions.ps1 -------------------------------------------------------------------------------- /eng/common/pipeline-logging-functions.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/pipeline-logging-functions.sh -------------------------------------------------------------------------------- /eng/common/post-build/check-channel-consistency.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/check-channel-consistency.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/nuget-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/nuget-verification.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/nuget-verification.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/publish-using-darc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/publish-using-darc.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/redact-logs.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/redact-logs.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/sourcelink-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/sourcelink-validation.ps1 -------------------------------------------------------------------------------- /eng/common/post-build/symbols-validation.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/post-build/symbols-validation.ps1 -------------------------------------------------------------------------------- /eng/common/retain-build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/retain-build.ps1 -------------------------------------------------------------------------------- /eng/common/sdk-task.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdk-task.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/NuGet.config -------------------------------------------------------------------------------- /eng/common/sdl/configure-sdl-tool.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/configure-sdl-tool.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/execute-all-sdl-tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/execute-all-sdl-tools.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-archives.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/extract-artifact-archives.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/extract-artifact-packages.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/extract-artifact-packages.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/init-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/init-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/packages.config -------------------------------------------------------------------------------- /eng/common/sdl/run-sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/run-sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/sdl.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/sdl.ps1 -------------------------------------------------------------------------------- /eng/common/sdl/trim-assets-version.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/sdl/trim-assets-version.ps1 -------------------------------------------------------------------------------- /eng/common/template-guidance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/template-guidance.md -------------------------------------------------------------------------------- /eng/common/templates-official/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates-official/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/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/xcsync/HEAD/eng/common/templates-official/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/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/xcsync/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/xcsync/HEAD/eng/common/templates-official/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates-official/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/templates-official/variables/sdl-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates-official/variables/sdl-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/job/job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/job/job.yml -------------------------------------------------------------------------------- /eng/common/templates/job/onelocbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/job/onelocbuild.yml -------------------------------------------------------------------------------- /eng/common/templates/job/publish-build-assets.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/job/publish-build-assets.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/job/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/job/source-index-stage1.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/job/source-index-stage1.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/codeql-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/jobs/codeql-build.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/jobs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/jobs/jobs.yml -------------------------------------------------------------------------------- /eng/common/templates/jobs/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/jobs/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/post-build/common-variables.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/post-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/post-build/post-build.yml -------------------------------------------------------------------------------- /eng/common/templates/post-build/setup-maestro-vars.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/post-build/setup-maestro-vars.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/component-governance.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/component-governance.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-runtimes.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/enable-internal-runtimes.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/enable-internal-sources.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/enable-internal-sources.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/generate-sbom.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/generate-sbom.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-delegation-sas.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/get-delegation-sas.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/get-federated-access-token.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/get-federated-access-token.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-build-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/publish-build-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-logs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/publish-logs.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/publish-pipeline-artifacts.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/publish-pipeline-artifacts.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/retain-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/retain-build.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/send-to-helix.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/send-to-helix.yml -------------------------------------------------------------------------------- /eng/common/templates/steps/source-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/steps/source-build.yml -------------------------------------------------------------------------------- /eng/common/templates/variables/pool-providers.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/templates/variables/pool-providers.yml -------------------------------------------------------------------------------- /eng/common/tools.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/tools.ps1 -------------------------------------------------------------------------------- /eng/common/tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/common/tools.sh -------------------------------------------------------------------------------- /eng/pipelines/azure-pipeline-public.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/pipelines/azure-pipeline-public.yml -------------------------------------------------------------------------------- /eng/pipelines/azure-pipelines-codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/pipelines/azure-pipelines-codeql.yml -------------------------------------------------------------------------------- /eng/pipelines/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/pipelines/azure-pipelines.yml -------------------------------------------------------------------------------- /eng/pipelines/common-variables.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/pipelines/common-variables.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/buildandtest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/eng/pipelines/templates/buildandtest.yml -------------------------------------------------------------------------------- /es-metadata.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/es-metadata.yml -------------------------------------------------------------------------------- /global.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/global.json -------------------------------------------------------------------------------- /loc/cs/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/cs/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/de/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/de/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/es/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/es/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/fr/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/fr/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/it/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/it/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/ja/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/ja/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/ko/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/ko/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/pl/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/pl/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/pt-BR/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/pt-BR/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/ru/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/ru/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/tr/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/tr/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/zh-Hans/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/zh-Hans/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /loc/zh-Hant/tools/xcsync/xcsync/Resources/Strings.resx.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/loc/zh-Hant/tools/xcsync/xcsync/Resources/Strings.resx.lcl -------------------------------------------------------------------------------- /restore.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/restore.cmd -------------------------------------------------------------------------------- /restore.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/restore.sh -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/Directory.Build.targets -------------------------------------------------------------------------------- /src/xcsync/ApplePlatforms.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ApplePlatforms.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/AstVistor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/AstVistor.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/AstWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/AstWalker.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/IVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/IVisitor.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/IWalker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/IWalker.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/ObjCImplementationDeclVisitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/ObjCImplementationDeclVisitor.cs -------------------------------------------------------------------------------- /src/xcsync/Ast/ObjCSyntaxRewriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Ast/ObjCSyntaxRewriter.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/BaseCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/BaseCommand.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/GenerateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/GenerateCommand.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/SharedOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/SharedOptions.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/SyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/SyncCommand.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/WatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/WatchCommand.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/XcSyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/XcSyncCommand.cs -------------------------------------------------------------------------------- /src/xcsync/Commands/XcodeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Commands/XcodeCommand.cs -------------------------------------------------------------------------------- /src/xcsync/ContinuousSyncContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ContinuousSyncContext.cs -------------------------------------------------------------------------------- /src/xcsync/ExtensionFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ExtensionFilter.cs -------------------------------------------------------------------------------- /src/xcsync/ISyncContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ISyncContext.cs -------------------------------------------------------------------------------- /src/xcsync/ITextTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ITextTemplate.cs -------------------------------------------------------------------------------- /src/xcsync/Icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Icon.png -------------------------------------------------------------------------------- /src/xcsync/PACKAGE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/PACKAGE.md -------------------------------------------------------------------------------- /src/xcsync/ProjectFileChangeMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/ProjectFileChangeMonitor.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/ClrProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/ClrProject.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/GenObjcFileCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/GenObjcFileCode.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/GenObjcH.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/GenObjcH.tt -------------------------------------------------------------------------------- /src/xcsync/Projects/GenObjcM.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/GenObjcM.tt -------------------------------------------------------------------------------- /src/xcsync/Projects/ISyncableProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/ISyncableProject.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/ITypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/ITypeService.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/SyncableItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/SyncableItem.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/SyncableProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/SyncableProject.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/TypeMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/TypeMapping.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/TypeService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/TypeService.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/BuildSettingsConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/BuildSettingsConverter.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/TextTemplateDefinitions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/TextTemplateDefinitions.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/WorkspaceData.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/WorkspaceData.tt -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/WorkspaceGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/WorkspaceGenerator.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/WorkspaceSettings.tt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/WorkspaceSettings.tt -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/XcodeObjectConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/XcodeObjectConverter.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/XcodeProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/XcodeProject.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/Xcode/XcodeProjectObjectsJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/Xcode/XcodeProjectObjectsJsonConverter.cs -------------------------------------------------------------------------------- /src/xcsync/Projects/XcodeWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Projects/XcodeWorkspace.cs -------------------------------------------------------------------------------- /src/xcsync/Resources/Strings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/Strings.Designer.cs -------------------------------------------------------------------------------- /src/xcsync/Resources/Strings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/Strings.resx -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.cs.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.cs.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.de.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.de.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.es.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.es.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.fr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.fr.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.it.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.it.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.ja.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.ja.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.ko.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.ko.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.pl.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.pl.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.pt-BR.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.pt-BR.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.ru.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.ru.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.tr.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.tr.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.zh-Hans.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.zh-Hans.xlf -------------------------------------------------------------------------------- /src/xcsync/Resources/xlf/Strings.zh-Hant.xlf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Resources/xlf/Strings.zh-Hant.xlf -------------------------------------------------------------------------------- /src/xcsync/Scripts.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Scripts.cs -------------------------------------------------------------------------------- /src/xcsync/SyncContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/SyncContext.cs -------------------------------------------------------------------------------- /src/xcsync/SyncContextBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/SyncContextBase.cs -------------------------------------------------------------------------------- /src/xcsync/SyncDirection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/SyncDirection.cs -------------------------------------------------------------------------------- /src/xcsync/Verbosity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Verbosity.cs -------------------------------------------------------------------------------- /src/xcsync/Workers/BaseWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Workers/BaseWorker.cs -------------------------------------------------------------------------------- /src/xcsync/Workers/ChangeWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Workers/ChangeWorker.cs -------------------------------------------------------------------------------- /src/xcsync/Workers/FileWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Workers/FileWorker.cs -------------------------------------------------------------------------------- /src/xcsync/Workers/ObjCTypeLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/Workers/ObjCTypeLoader.cs -------------------------------------------------------------------------------- /src/xcsync/dotnet-xcsync: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/dotnet-xcsync -------------------------------------------------------------------------------- /src/xcsync/xcSync.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/xcSync.cs -------------------------------------------------------------------------------- /src/xcsync/xcsync.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/src/xcsync/xcsync.csproj -------------------------------------------------------------------------------- /start-code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/start-code.sh -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test.sh -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/Directory.Build.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/Directory.Build.targets -------------------------------------------------------------------------------- /test/test-project/AppDelegate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/AppDelegate.cs -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon1024.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon128.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon16.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon256.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon32.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon512.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/AppIcon.appiconset/Icon64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/AppIcon.appiconset/Icon64.png -------------------------------------------------------------------------------- /test/test-project/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /test/test-project/Entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Entitlements.plist -------------------------------------------------------------------------------- /test/test-project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Info.plist -------------------------------------------------------------------------------- /test/test-project/Main.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Main.cs -------------------------------------------------------------------------------- /test/test-project/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/Main.storyboard -------------------------------------------------------------------------------- /test/test-project/RegisterVariety.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/RegisterVariety.cs -------------------------------------------------------------------------------- /test/test-project/ViewController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/ViewController.cs -------------------------------------------------------------------------------- /test/test-project/ViewController.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/ViewController.designer.cs -------------------------------------------------------------------------------- /test/test-project/test-project.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/test-project/test-project.csproj -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/Base.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/GlobalUsings.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/data/add_outlet_using_xcode.diff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/data/add_outlet_using_xcode.diff -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/usecases/GenerateTargetPathArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/usecases/GenerateTargetPathArgumentTests.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/usecases/GenerateThenSyncWithChangesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/usecases/GenerateThenSyncWithChangesTests.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/usecases/GenerateThenSyncWithNoChangesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/usecases/GenerateThenSyncWithNoChangesTests.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/usecases/SyncTargetPathArgumentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/usecases/SyncTargetPathArgumentTests.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/usecases/XcsyncToolingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/usecases/XcsyncToolingTests.cs -------------------------------------------------------------------------------- /test/xcsync.e2e.tests/xcsync.e2e.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.e2e.tests/xcsync.e2e.tests.csproj -------------------------------------------------------------------------------- /test/xcsync.tests/Ast/AstWalkerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Ast/AstWalkerTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Ast/ObjCSyntaxRewriterTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Ast/ObjCSyntaxRewriterTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Base.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Base.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Cache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Cache.cs -------------------------------------------------------------------------------- /test/xcsync.tests/CodeCoverage.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/CodeCoverage.runsettings -------------------------------------------------------------------------------- /test/xcsync.tests/Commands/CommandValidationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Commands/CommandValidationTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/ContinuousSyncContextTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/ContinuousSyncContextTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/GlobalUsings.cs -------------------------------------------------------------------------------- /test/xcsync.tests/ProjectFileChangeMonitorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/ProjectFileChangeMonitorTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/DotnetTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/DotnetTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/GenObjcFileTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/GenObjcFileTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/NSProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/NSProjectTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/TypeServiceTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/TypeServiceTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/WorkspaceGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/WorkspaceGeneratorTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/XcodeProjectTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/XcodeProjectTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Projects/XcodeWorkspaceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Projects/XcodeWorkspaceTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Resources/MultipleValid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Resources/MultipleValid.csproj -------------------------------------------------------------------------------- /test/xcsync.tests/Resources/SampleProject.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Resources/SampleProject.json -------------------------------------------------------------------------------- /test/xcsync.tests/Resources/Valid.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Resources/Valid.csproj -------------------------------------------------------------------------------- /test/xcsync.tests/ScriptTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/ScriptTests.cs -------------------------------------------------------------------------------- /test/xcsync.tests/SolutionPathFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/SolutionPathFinder.cs -------------------------------------------------------------------------------- /test/xcsync.tests/Workers/FileWorkerTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/Workers/FileWorkerTest.cs -------------------------------------------------------------------------------- /test/xcsync.tests/data/converted_pbxproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/data/converted_pbxproj.in -------------------------------------------------------------------------------- /test/xcsync.tests/data/generated_pbxproj.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/data/generated_pbxproj.in -------------------------------------------------------------------------------- /test/xcsync.tests/xcsync.tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/test/xcsync.tests/xcsync.tests.csproj -------------------------------------------------------------------------------- /tools/autoformat.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/tools/autoformat.sh -------------------------------------------------------------------------------- /xcsync.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dotnet/xcsync/HEAD/xcsync.sln --------------------------------------------------------------------------------