├── .clang-format ├── .gitattributes ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Directory.Build.props ├── Directory.CppBuild.props ├── LICENSE ├── NOTICE.txt ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── Solution.props ├── TestingScenarios.md ├── ToolingVersions.props ├── WindowsAdvancedSettings.sln ├── codeAnalysis ├── GlobalSuppressions.cs ├── Rules.ruleset ├── StubSuppressions.cs ├── StyleCop.json └── format_sources.ps1 ├── exclusion.dic ├── nuget.config ├── src ├── AdvancedSettings │ ├── Assets │ │ ├── AdvancedSettings.ico │ │ ├── Dev │ │ │ ├── MedTile.png │ │ │ ├── SmallTile.png │ │ │ ├── SplashScreen.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── StoreLogo.png │ │ │ ├── splashscreen.contrast-black.png │ │ │ ├── splashscreen.contrast-black_scale-100.png │ │ │ ├── splashscreen.contrast-white.png │ │ │ └── splashscreen.contrast-white_scale-100.png │ │ ├── Fonts │ │ │ ├── AMCIcons.ttf │ │ │ ├── CascadiaMono.ttf │ │ │ ├── DevHome.ttf │ │ │ └── README.md │ │ ├── InitializationPage │ │ │ └── AppList.scale-400.png │ │ └── Production │ │ │ ├── MedTile.png │ │ │ ├── SmallTile.png │ │ │ ├── SplashScreen.png │ │ │ ├── SplashScreen.scale-100.png │ │ │ ├── StoreLogo.png │ │ │ ├── splashscreen.contrast-black.png │ │ │ ├── splashscreen.contrast-black_scale-100.png │ │ │ ├── splashscreen.contrast-white.png │ │ │ └── splashscreen.contrast-white_scale-100.png │ ├── NOTICE.txt │ ├── NativeMethods.txt │ ├── Package-Dev.appxmanifest │ ├── Package.appinstaller │ ├── Package.appxmanifest │ ├── Program.cs │ ├── Properties │ │ └── launchsettings.json │ ├── Setup.cs │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ ├── TemplateStudio.xml │ ├── WindowsAdvancedSettings.csproj │ ├── app.manifest │ └── appsettings.json ├── Common │ ├── Helpers │ │ ├── DirectoryHelper.cs │ │ ├── FileService.cs │ │ ├── GitCommandRunnerResultInfo.cs │ │ ├── Json.cs │ │ ├── Logging.cs │ │ ├── Resources.cs │ │ ├── RuntimeHelper.cs │ │ └── SettingsStorageExtensions.cs │ ├── NativeMethods.txt │ ├── PublishProfiles │ │ ├── win-arm64.pubxml │ │ ├── win-x64.pubxml │ │ └── win-x86.pubxml │ └── WindowsAdvancedSettings.Common.csproj ├── FileExplorerGitIntegration │ ├── FileExplorerGitIntegration.csproj │ ├── GitLocalRepositoryProviderFactory`1.cs │ ├── Helpers │ │ └── Resources.cs │ ├── Models │ │ ├── CommitLogCache.cs │ │ ├── CommitWrapper.cs │ │ ├── GitConfiguration.cs │ │ ├── GitDetect.cs │ │ ├── GitDetectStatus.cs │ │ ├── GitExeceutableConfigOptions.cs │ │ ├── GitExecute.cs │ │ ├── GitLocalRepository.cs │ │ ├── GitLocalRepositoryProviderFactory.cs │ │ ├── GitLocalRepositoryProviderServer.cs │ │ ├── GitRepositoryStatus.cs │ │ ├── GitStatusEntry.cs │ │ ├── LruCacheDictionary.cs │ │ ├── RepositoryCache.cs │ │ ├── RepositoryWrapper.cs │ │ ├── StatusCache.cs │ │ ├── ThrottledTask.cs │ │ └── WslIntegrator.cs │ ├── NativeMethods.txt │ ├── Program.cs │ ├── Strings │ │ └── en-us │ │ │ └── Resources.resw │ └── appsettings_FileExplorerGitIntegration.json └── FileExplorerSourceControlIntegration │ ├── FileExplorerSourceControlIntegration.csproj │ ├── NativeMethods.txt │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── SourceControlProvider.cs │ ├── SourceControlProviderFactory`1.cs │ ├── SourceControlProviderServer.cs │ └── appsettings_FileExplorerSourceControl.json └── test ├── AdvancedSettings.Tester ├── AdvancedSettings.Tester.csproj ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── ConfigureFolderPath.cs ├── Package.appxmanifest ├── Program.cs ├── Properties │ └── launchSettings.json ├── README.md ├── app.manifest └── appsettings_tester.json ├── FileExplorerGitIntegration.UnitTest ├── FileExplorerGitIntegration.UnitTest.csproj ├── GitCommandRunnerTests.cs ├── GitLocalRepositoryProviderUnitTests.cs ├── GitSubmoduleUnitTests.cs ├── GlobalUsings.cs └── WslIntegratorUnitTests.cs └── FileExplorerSourceControlIntegrationUnitTest ├── FileExplorerSourceControlIntegrationUnitTest.csproj └── RepositoryTrackingServiceUnitTest.cs /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=crlf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /Directory.CppBuild.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/Directory.CppBuild.props -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /Solution.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/Solution.props -------------------------------------------------------------------------------- /TestingScenarios.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/TestingScenarios.md -------------------------------------------------------------------------------- /ToolingVersions.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/ToolingVersions.props -------------------------------------------------------------------------------- /WindowsAdvancedSettings.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/WindowsAdvancedSettings.sln -------------------------------------------------------------------------------- /codeAnalysis/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/codeAnalysis/GlobalSuppressions.cs -------------------------------------------------------------------------------- /codeAnalysis/Rules.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/codeAnalysis/Rules.ruleset -------------------------------------------------------------------------------- /codeAnalysis/StubSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/codeAnalysis/StubSuppressions.cs -------------------------------------------------------------------------------- /codeAnalysis/StyleCop.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/codeAnalysis/StyleCop.json -------------------------------------------------------------------------------- /codeAnalysis/format_sources.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/codeAnalysis/format_sources.ps1 -------------------------------------------------------------------------------- /exclusion.dic: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/exclusion.dic -------------------------------------------------------------------------------- /nuget.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/nuget.config -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/AdvancedSettings.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/AdvancedSettings.ico -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/MedTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/MedTile.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/SmallTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/SmallTile.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/SplashScreen.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/StoreLogo.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/splashscreen.contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/splashscreen.contrast-black.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/splashscreen.contrast-black_scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/splashscreen.contrast-black_scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/splashscreen.contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/splashscreen.contrast-white.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Dev/splashscreen.contrast-white_scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Dev/splashscreen.contrast-white_scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Fonts/AMCIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Fonts/AMCIcons.ttf -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Fonts/CascadiaMono.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Fonts/CascadiaMono.ttf -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Fonts/DevHome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Fonts/DevHome.ttf -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Fonts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Fonts/README.md -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/InitializationPage/AppList.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/InitializationPage/AppList.scale-400.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/MedTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/MedTile.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/SmallTile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/SmallTile.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/SplashScreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/SplashScreen.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/StoreLogo.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/splashscreen.contrast-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/splashscreen.contrast-black.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/splashscreen.contrast-black_scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/splashscreen.contrast-black_scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/splashscreen.contrast-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/splashscreen.contrast-white.png -------------------------------------------------------------------------------- /src/AdvancedSettings/Assets/Production/splashscreen.contrast-white_scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Assets/Production/splashscreen.contrast-white_scale-100.png -------------------------------------------------------------------------------- /src/AdvancedSettings/NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/NOTICE.txt -------------------------------------------------------------------------------- /src/AdvancedSettings/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/NativeMethods.txt -------------------------------------------------------------------------------- /src/AdvancedSettings/Package-Dev.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Package-Dev.appxmanifest -------------------------------------------------------------------------------- /src/AdvancedSettings/Package.appinstaller: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Package.appinstaller -------------------------------------------------------------------------------- /src/AdvancedSettings/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Package.appxmanifest -------------------------------------------------------------------------------- /src/AdvancedSettings/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Program.cs -------------------------------------------------------------------------------- /src/AdvancedSettings/Properties/launchsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Properties/launchsettings.json -------------------------------------------------------------------------------- /src/AdvancedSettings/Setup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Setup.cs -------------------------------------------------------------------------------- /src/AdvancedSettings/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /src/AdvancedSettings/TemplateStudio.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/TemplateStudio.xml -------------------------------------------------------------------------------- /src/AdvancedSettings/WindowsAdvancedSettings.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/WindowsAdvancedSettings.csproj -------------------------------------------------------------------------------- /src/AdvancedSettings/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/app.manifest -------------------------------------------------------------------------------- /src/AdvancedSettings/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/AdvancedSettings/appsettings.json -------------------------------------------------------------------------------- /src/Common/Helpers/DirectoryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/DirectoryHelper.cs -------------------------------------------------------------------------------- /src/Common/Helpers/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/FileService.cs -------------------------------------------------------------------------------- /src/Common/Helpers/GitCommandRunnerResultInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/GitCommandRunnerResultInfo.cs -------------------------------------------------------------------------------- /src/Common/Helpers/Json.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/Json.cs -------------------------------------------------------------------------------- /src/Common/Helpers/Logging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/Logging.cs -------------------------------------------------------------------------------- /src/Common/Helpers/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/Resources.cs -------------------------------------------------------------------------------- /src/Common/Helpers/RuntimeHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/RuntimeHelper.cs -------------------------------------------------------------------------------- /src/Common/Helpers/SettingsStorageExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/Helpers/SettingsStorageExtensions.cs -------------------------------------------------------------------------------- /src/Common/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/NativeMethods.txt -------------------------------------------------------------------------------- /src/Common/PublishProfiles/win-arm64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/PublishProfiles/win-arm64.pubxml -------------------------------------------------------------------------------- /src/Common/PublishProfiles/win-x64.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/PublishProfiles/win-x64.pubxml -------------------------------------------------------------------------------- /src/Common/PublishProfiles/win-x86.pubxml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/PublishProfiles/win-x86.pubxml -------------------------------------------------------------------------------- /src/Common/WindowsAdvancedSettings.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/Common/WindowsAdvancedSettings.Common.csproj -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/FileExplorerGitIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/FileExplorerGitIntegration.csproj -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/GitLocalRepositoryProviderFactory`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/GitLocalRepositoryProviderFactory`1.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Helpers/Resources.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Helpers/Resources.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/CommitLogCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/CommitLogCache.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/CommitWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/CommitWrapper.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitConfiguration.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitDetect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitDetect.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitDetectStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitDetectStatus.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitExeceutableConfigOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitExeceutableConfigOptions.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitExecute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitExecute.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitLocalRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitLocalRepository.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitLocalRepositoryProviderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitLocalRepositoryProviderFactory.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitLocalRepositoryProviderServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitLocalRepositoryProviderServer.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitRepositoryStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitRepositoryStatus.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/GitStatusEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/GitStatusEntry.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/LruCacheDictionary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/LruCacheDictionary.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/RepositoryCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/RepositoryCache.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/RepositoryWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/RepositoryWrapper.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/StatusCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/StatusCache.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/ThrottledTask.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/ThrottledTask.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Models/WslIntegrator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Models/WslIntegrator.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/NativeMethods.txt -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Program.cs -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/Strings/en-us/Resources.resw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/Strings/en-us/Resources.resw -------------------------------------------------------------------------------- /src/FileExplorerGitIntegration/appsettings_FileExplorerGitIntegration.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerGitIntegration/appsettings_FileExplorerGitIntegration.json -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/FileExplorerSourceControlIntegration.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/FileExplorerSourceControlIntegration.csproj -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/NativeMethods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/NativeMethods.txt -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/Program.cs -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/SourceControlProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/SourceControlProvider.cs -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/SourceControlProviderFactory`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/SourceControlProviderFactory`1.cs -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/SourceControlProviderServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/SourceControlProviderServer.cs -------------------------------------------------------------------------------- /src/FileExplorerSourceControlIntegration/appsettings_FileExplorerSourceControl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/src/FileExplorerSourceControlIntegration/appsettings_FileExplorerSourceControl.json -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/AdvancedSettings.Tester.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/AdvancedSettings.Tester.csproj -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/StoreLogo.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/ConfigureFolderPath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/ConfigureFolderPath.cs -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Package.appxmanifest -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Program.cs -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/Properties/launchSettings.json -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/README.md -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/app.manifest -------------------------------------------------------------------------------- /test/AdvancedSettings.Tester/appsettings_tester.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/AdvancedSettings.Tester/appsettings_tester.json -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/FileExplorerGitIntegration.UnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/FileExplorerGitIntegration.UnitTest.csproj -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/GitCommandRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/GitCommandRunnerTests.cs -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/GitLocalRepositoryProviderUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/GitLocalRepositoryProviderUnitTests.cs -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/GitSubmoduleUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/GitSubmoduleUnitTests.cs -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/GlobalUsings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/GlobalUsings.cs -------------------------------------------------------------------------------- /test/FileExplorerGitIntegration.UnitTest/WslIntegratorUnitTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerGitIntegration.UnitTest/WslIntegratorUnitTests.cs -------------------------------------------------------------------------------- /test/FileExplorerSourceControlIntegrationUnitTest/FileExplorerSourceControlIntegrationUnitTest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerSourceControlIntegrationUnitTest/FileExplorerSourceControlIntegrationUnitTest.csproj -------------------------------------------------------------------------------- /test/FileExplorerSourceControlIntegrationUnitTest/RepositoryTrackingServiceUnitTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/WindowsAdvancedSettings/HEAD/test/FileExplorerSourceControlIntegrationUnitTest/RepositoryTrackingServiceUnitTest.cs --------------------------------------------------------------------------------