├── .devcontainer ├── Dockerfile └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github └── workflows │ └── Build-And-Test.yml ├── .gitignore ├── DependencyLicenses └── Microsoft.VisualStudio.Debugger.Interop.Portable-EULA.txt ├── IL ├── .gitignore ├── HowToGenerate.MD ├── Microsoft.Internal.VisualStudio.Interop.il ├── Microsoft.VisualStudio.Linux.ConnectionManager.Contracts.il ├── libadb.il └── liblinux.il ├── Keys ├── DevDivPublicKey.snk └── ExternalKey.snk ├── License.txt ├── MIEngine.UnixPortSupplier.nuspec ├── MIEngine.mdd.nuspec ├── PackageLicenses └── license-prerelease.txt ├── PublishOpenDebugAD7.sh ├── README.md ├── SECURITY.md ├── ThirdPartyNotices.txt ├── eng ├── Scripts │ ├── CI-Build.cmd │ ├── CI-Build.ps1 │ ├── CI-Build.sh │ └── CI-Test.sh ├── Signing │ └── macOS │ │ └── debugger-entitlements.plist └── pipelines │ ├── DebuggerTesting-release.yml │ ├── MIDebugEngine-CI.yml │ ├── VS-release.yml │ ├── VSCode-release.yml │ ├── jobs │ ├── MSHosted-Linux.job.yml │ ├── MSHosted-OSX.job.yml │ ├── MSHosted-Windows.job.yml │ └── VSEngSS-MicroBuild2022-1ES.job.yml │ ├── resources │ ├── TSAConfig.json │ ├── falsepositives.gdnsuppress │ ├── policheck_exclusion.xml │ └── signing_exclusion.txt │ ├── steps │ ├── APIScan.yml │ ├── BuildSolution.yml │ ├── CollectAndPublishBinaries.yml │ ├── CopyAndPublishSymbols.yml │ ├── PostAnalysis.yml │ ├── PublishOpenDebugAD7.yml │ └── PublishVSPackages.yml │ ├── tasks │ ├── 1ES │ │ └── PublishPipelineArtifact.yml │ ├── AntiMalware.yml │ ├── BinSkim.yml │ ├── CSharp.yml │ ├── CopyFiles.yml │ ├── CredScan.yml │ ├── DownloadPipelineArtifact.yml │ ├── MSBuild.yml │ ├── MicroBuildCleanup.yml │ ├── MicroBuildLocalizationPlugin.yml │ ├── MicroBuildPrefastPlugin.yml │ ├── MicroBuildSigningPlugin.yml │ ├── NuGetCommand.yml │ ├── NuGetToolInstaller.yml │ ├── PSScriptAnalyzer.yml │ ├── PoliCheck.yml │ ├── PublishPipelineArtifact.yml │ ├── PublishSecurityAnalysisLogs.yml │ ├── PublishSymbols.yml │ ├── SdtReport.yml │ ├── SignVerify.yml │ ├── TSAUpload.yml │ └── UseDotNet.yml │ └── templates │ ├── Build.template.yml │ ├── CodeAnalysis.template.yml │ ├── DebuggerTesting-release.template.yml │ ├── VS-release.template.yml │ ├── VSCode-codesign-osx.template.yml │ ├── VSCode-esrp-sign-osx.template.yml │ └── VSCode-release.template.yml ├── loc ├── lci │ ├── Microsoft.SSHDebugPS.dll.lci │ └── OpenFolderSchema.json.lci └── lcl │ ├── CHS │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── CHT │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── CSY │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── DEU │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── ESN │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── FRA │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── ITA │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── JPN │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── KOR │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── PLK │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── PTB │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ ├── RUS │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl │ └── TRK │ ├── Microsoft.SSHDebugPS.dll.lcl │ └── OpenFolderSchema.json.lcl ├── src ├── .nuget │ └── NuGet.config ├── AndroidDebugLauncher │ ├── AndroidDebugLauncher.csproj │ ├── AndroidLaunchOptions.cs │ ├── INDKFilePath.cs │ ├── InstallPaths.cs │ ├── Launcher.cs │ ├── LauncherException.cs │ ├── LauncherResources.Designer.cs │ ├── LauncherResources.resx │ ├── Microsoft.Android.natvis │ ├── Microsoft.AndroidDebugLauncher.pkgdef │ ├── NDKPrebuiltFilePath.cs │ ├── NDKToolChainFilePath.cs │ ├── NdkReleaseId.cs │ ├── NdkToolVersion.cs │ ├── ProcessListParser.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── PwdOutputParser.cs │ ├── RegistryRoot.cs │ ├── RunAsOutputParser.cs │ ├── StringExtensions.cs │ ├── TargetArchitectureExtensions.cs │ ├── Telemetry.cs │ └── TextColumn.cs ├── DebugEngineHost.Common │ └── HostLogChannel.cs ├── DebugEngineHost.Stub │ ├── Contract.ruleset │ ├── DebugEngineHost.Stub.csproj │ ├── DebugEngineHost.ref.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── Shared │ │ ├── Microsoft.VisualStudio.Debugger.Interop.DAP.cs │ │ └── Microsoft.VisualStudio.Debugger.Interop.MI.cs ├── DebugEngineHost.VSCode │ ├── DebugEngineHost.VSCode.csproj │ ├── Host.cs │ ├── HostConfigurationSection.cs │ ├── HostConfigurationStore.cs │ ├── HostLoader.cs │ ├── HostLogger.cs │ ├── HostMarshal.cs │ ├── HostNatvisProject.cs │ ├── HostOutputWindow.cs │ ├── HostResources.Designer.cs │ ├── HostResources.resx │ ├── HostRunInTerminal.cs │ ├── HostTelemetry.cs │ ├── HostWaitDialog.cs │ ├── HostWaitLoop.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── VSCode │ │ ├── AssemblyResolver.cs │ │ ├── EngineConfiguration.cs │ │ ├── ExceptionBreakpointFilter.cs │ │ ├── ExceptionSettings.cs │ │ └── HandleCollection.cs │ └── _Readme.txt ├── DebugEngineHost │ ├── DebugEngineHost.csproj │ ├── Host.cs │ ├── HostConfigurationException.cs │ ├── HostConfigurationSection.cs │ ├── HostConfigurationStore.cs │ ├── HostDebugger.cs │ ├── HostLoader.cs │ ├── HostLogger.cs │ ├── HostMarshal.cs │ ├── HostNatvisProject.cs │ ├── HostOutputWindow.cs │ ├── HostRunInTerminal.cs │ ├── HostTelemetry.cs │ ├── HostWaitDialog.cs │ ├── HostWaitLoop.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RegistryMonitor.cs │ ├── Resource.Designer.cs │ ├── Resource.resx │ └── VSImpl │ │ ├── VSEventCallbackWrapper.cs │ │ ├── VsWaitDialog.cs │ │ └── VsWaitLoop.cs ├── IDECodeAnalysis.ruleset ├── JDbg │ ├── JDbg.cs │ ├── JDbg.csproj │ ├── Jdwp.cs │ ├── JdwpCommand.cs │ ├── JdwpException.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ReplyPacketParser.cs │ ├── TcpTransport.cs │ └── Utils.cs ├── JDbgUnitTests │ ├── JDbgUnitTests.csproj │ ├── JdwpTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── UtilsTests.cs ├── MICore │ ├── Checksum.cs │ ├── CommandFactories │ │ ├── MICommandFactory.cs │ │ ├── gdb.cs │ │ └── lldb.cs │ ├── CommandLock.cs │ ├── Debugger.cs │ ├── DebuggerDisposedException.cs │ ├── ExampleLaunchOptions.xml │ ├── ExampleVsDbgLaunch.cmd │ ├── ExceptionHelper.cs │ ├── GenerateXmlSerializersAssembly.targets │ ├── IncludeExcludeList.cs │ ├── InvalidCoreDumpOperationException.cs │ ├── InvalidLaunchOptionsException.cs │ ├── JsonLaunchOptions.cs │ ├── LaunchCommand.cs │ ├── LaunchOptions.cs │ ├── LaunchOptions.xsd │ ├── LaunchOptions.xsd.types.designer.cs │ ├── Logger.cs │ ├── MICore.csproj │ ├── MICoreResources.Designer.cs │ ├── MICoreResources.resx │ ├── MIException.cs │ ├── MIResults.cs │ ├── PlatformUtilities.cs │ ├── ProcessMonitor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RunInTerminalLauncher.cs │ ├── SGEN_SHA2_SIGNATUREKEY │ ├── Transports │ │ ├── ClientServerTransport.cs │ │ ├── ITransport.cs │ │ ├── LocalTransport.cs │ │ ├── MockTransport.cs │ │ ├── PipeTransport.cs │ │ ├── RunInTerminalTransport.cs │ │ ├── ServerTransport.cs │ │ ├── StreamTransport.cs │ │ ├── TcpTransport.cs │ │ └── UnixShellPortTransport.cs │ ├── UnixNativeMethods.cs │ ├── UnixUtilities.cs │ ├── Utilities.cs │ └── osxlaunchhelper.scpt ├── MICoreUnitTests │ ├── AndroidLauncherTests.cs │ ├── BasicLaunchOptionsTests.cs │ ├── CommandLockTests.cs │ ├── MICoreUnitTests.csproj │ ├── MIResults.playlist │ ├── MIResultsTests.cs │ ├── NdkVersionTests.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── MIDebugEngine-Unix.sln ├── MIDebugEngine.sln ├── MIDebugEngine │ ├── AD7.Definitions │ │ ├── AD7Guids.cs │ │ └── AD7Hresult.cs │ ├── AD7.Impl │ │ ├── AD7BoundBreakpoint.cs │ │ ├── AD7BreakpointResolution.cs │ │ ├── AD7Disassembly.cs │ │ ├── AD7DocumentContext.cs │ │ ├── AD7Engine.cs │ │ ├── AD7Enums.cs │ │ ├── AD7Events.cs │ │ ├── AD7Expression.cs │ │ ├── AD7MemoryAddress.cs │ │ ├── AD7Module.cs │ │ ├── AD7PendingBreakpoint.cs │ │ ├── AD7ProgramNode.cs │ │ ├── AD7ProgramProvider.cs │ │ ├── AD7Property.cs │ │ ├── AD7RegProperty.cs │ │ ├── AD7StackFrame.cs │ │ ├── AD7Thread.cs │ │ ├── EngineConstants.cs │ │ └── HashAlgorithmId.cs │ ├── Engine.Impl │ │ ├── BreakpointManager.cs │ │ ├── Breakpoints.cs │ │ ├── CygwinFileMapper.cs │ │ ├── DebugUnixChildProcess.cs │ │ ├── DebuggedModule.cs │ │ ├── DebuggedProcess.cs │ │ ├── DebuggedThread.cs │ │ ├── Disassembly.cs │ │ ├── EngineCallback.cs │ │ ├── EngineTelemetry.cs │ │ ├── EngineUtils.cs │ │ ├── ExceptionManager.cs │ │ ├── LaunchErrorException.cs │ │ ├── MITextPosition.cs │ │ ├── OperationThread.cs │ │ ├── SourceLine.cs │ │ ├── Structures.cs │ │ └── Variables.cs │ ├── MIDebugCommandDispatcher.cs │ ├── MIDebugEngine.csproj │ ├── Microsoft.MIDebugEngine.pkgdef │ ├── Natvis.Impl │ │ ├── Natvis.cs │ │ ├── NatvisNames.cs │ │ ├── NatvisXsdTypes.cs │ │ ├── VisualizationCache.cs │ │ └── natvis.xsd │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ResourceStrings.Designer.cs │ └── ResourceStrings.resx ├── MIDebugEngineUnitTests │ ├── MIDebugEngineUnitTests.csproj │ └── NatvisNamesTest.cs ├── MIDebugPackage │ ├── Guids.cs │ ├── Install.cmd │ ├── MIDebugPackage.csproj │ ├── MIDebugPackage.vsct │ ├── MIDebugPackagePackage.cs │ ├── OpenFolderSchema.json │ ├── PkgCmdID.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Resources │ │ └── Images.png │ ├── SuppressFromVsix.targets │ ├── VSPackage.resx │ └── source.extension.vsixmanifest ├── MakePIAPortable │ ├── Dummy.cs │ └── MakePIAPortable.csproj ├── Microsoft.VisualStudio.Debugger.Interop.UnixPortSupplier │ ├── Microsoft.VisualStudio.Debugger.Interop.UnixPortSupplier.DesignTime.csproj │ ├── Microsoft.VisualStudio.Debugger.Interop.UnixPortSupplier.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── OpenDebugAD7 │ ├── AD7DebugSession.cs │ ├── AD7Exception.cs │ ├── AD7ExtensionMethods.cs │ ├── AD7Impl │ │ ├── AD7BreakPointRequest.cs │ │ ├── AD7DocumentPosition.cs │ │ ├── AD7Guids.cs │ │ ├── AD7Port.cs │ │ ├── AD7Process.cs │ │ └── AD7Program.cs │ ├── AD7Resources.Designer.cs │ ├── AD7Resources.resx │ ├── AD7Utils.cs │ ├── Constants.cs │ ├── DebugEventLogger.cs │ ├── Document.cs │ ├── EngineConfigurationExtensions.cs │ ├── ErrorBuilder.cs │ ├── LanguageUtilities.cs │ ├── MILaunchOptions.cs │ ├── OpenDebug │ │ ├── CustomProtocolObjects.cs │ │ ├── PathUtilities.cs │ │ ├── Program.cs │ │ └── Utilities.cs │ ├── OpenDebugAD7.csproj │ ├── PathConverter.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SessionConfiguration.cs │ ├── Telemetry │ │ ├── DebuggerTelemetry.cs │ │ └── TelemetryHelper.cs │ ├── TextPositionTuple.cs │ ├── ThreadFrameEnumInfo.cs │ ├── Tracepoint.cs │ ├── VariableManager.cs │ └── cppdbg.ad7Engine.json ├── SSHDebugPS │ ├── AD7 │ │ ├── AD7Enums.cs │ │ ├── AD7Port.cs │ │ ├── AD7PortSupplier.cs │ │ ├── AD7Process.cs │ │ ├── AD7Program.cs │ │ ├── AD7UnixAsyncCommand.cs │ │ └── AD7UnixAsyncShellCommand.cs │ ├── CommandFailedException.cs │ ├── CommandRunner.cs │ ├── ConnectionManager.cs │ ├── Docker │ │ ├── DockerConnection.cs │ │ ├── DockerContainerInstance.cs │ │ ├── DockerExecutionManager.cs │ │ ├── DockerHelper.cs │ │ ├── DockerPort.cs │ │ ├── DockerPortPicker.cs │ │ ├── DockerPortSupplier.cs │ │ └── TransportSettings │ │ │ ├── DockerContainerTransportSettings.cs │ │ │ └── DockerTransportSettings.cs │ ├── HR.cs │ ├── IConnection.cs │ ├── IPipeTransportSettings.cs │ ├── LineBuffer.cs │ ├── LocalProcessAsyncRunner.cs │ ├── MIEngineLauncher.cs │ ├── Microsoft.SSHDebugPS.pkgdef │ ├── NativeMethods.cs │ ├── PSOutputParser.cs │ ├── PipeAsyncCommand.cs │ ├── PipeConnection.cs │ ├── ProcFSOutputParser.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SSH │ │ ├── SSHConnection.cs │ │ ├── SSHHelper.cs │ │ ├── SSHPort.cs │ │ ├── SSHPortSupplier.cs │ │ ├── SSHRemoteShell.cs │ │ └── SSHUnixAsyncCommand.cs │ ├── SSHDebugPS.csproj │ ├── StringResources.Designer.cs │ ├── StringResources.resx │ ├── UI │ │ ├── Commands │ │ │ └── ContainerUICommand.cs │ │ ├── ContainerInstance.cs │ │ ├── ContainerPickerDialogWindow.xaml │ │ ├── ContainerPickerDialogWindow.xaml.cs │ │ ├── Controls │ │ │ ├── Automation │ │ │ │ ├── ContainerListBoxItemAutomationPeer.cs │ │ │ │ └── ContainerListViewAutomationPeer.cs │ │ │ └── ContainerListBox.cs │ │ ├── Converters │ │ │ ├── BoolToVisibilityConverter.cs │ │ │ └── TextToVisibilityConverter.cs │ │ ├── UIResources.Designer.cs │ │ ├── UIResources.resx │ │ └── ViewModels │ │ │ ├── ConnectionViewModel.cs │ │ │ ├── ContainerPickerViewModel.cs │ │ │ └── ContainerViewModel.cs │ ├── Utilities │ │ ├── ExitCodes.cs │ │ ├── StringExtensionMethods.cs │ │ ├── TelemetryHelper.cs │ │ └── VSMessageBoxHelper.cs │ ├── VSOperationWaiter.cs │ ├── VsOutputWindowWrapper.cs │ └── WSL │ │ ├── WSLCommandLine.cs │ │ ├── WSLConnection.cs │ │ ├── WSLException.cs │ │ ├── WSLPort.cs │ │ └── WSLPortSupplier.cs ├── SSHDebugTests │ ├── LineBufferTests.cs │ ├── PSOutputParserTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SSHConnectionStringTests.cs │ └── SSHDebugUnitTests.csproj ├── WindowsDebugLauncher │ ├── DebugLauncher.cs │ ├── Program.cs │ └── WindowsDebugLauncher.csproj └── tools │ └── MakePIAPortableTool │ ├── MakePIAPortableTool.cs │ └── MakePIAPortableTool.csproj ├── test ├── .gitignore ├── Android │ ├── Attach │ │ ├── Attach.sln │ │ ├── Attach │ │ │ ├── Attach.NativeActivity │ │ │ │ ├── Attach.NativeActivity.vcxproj │ │ │ │ ├── Attach.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Attach.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Attach.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── Glass2.TestCleanup.cmd │ │ ├── Glass2.TestSetup.cmd │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── BreakPointEnableAndDisable │ │ ├── BreakPointEnableAndDisable.sln │ │ ├── BreakPointEnableAndDisable │ │ │ ├── BreakPointEnableAndDisable.NativeActivity │ │ │ │ ├── BreakPointEnableAndDisable.NativeActivity.vcxproj │ │ │ │ ├── BreakPointEnableAndDisable.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── BreakPointEnableAndDisable.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── BreakPointEnableAndDisable.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── BreakPointWhenTrueCondition │ │ ├── BreakPointWhenTrueCondition.sln │ │ ├── BreakPointWhenTrueCondition │ │ │ ├── BreakPointWhenTrueCondition.NativeActivity │ │ │ │ ├── BreakPointWhenTrueCondition.NativeActivity.vcxproj │ │ │ │ ├── BreakPointWhenTrueCondition.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── BreakPointWhenTrueCondition.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── BreakPointWhenTrueCondition.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── Breakpoint │ │ ├── Breakpoint.sln │ │ ├── Breakpoint │ │ │ ├── Breakpoint.NativeActivity │ │ │ │ ├── Breakpoint.NativeActivity.vcxproj │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Breakpoint.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Breakpoint.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── CallStack │ │ ├── CallStack.sln │ │ ├── CallStack │ │ │ ├── CallStack.NativeActivity │ │ │ │ ├── CallStack.NativeActivity.vcxproj │ │ │ │ ├── CallStack.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Header2.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── Source2.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── CallStack.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── CallStack.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── Eval │ │ ├── Eval.sln │ │ ├── Eval │ │ │ ├── Eval.NativeActivity │ │ │ │ ├── Eval.NativeActivity.vcxproj │ │ │ │ ├── Eval.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Eval.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Eval.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── EvalComplexExpression │ │ ├── EvalComplexExpression.sln │ │ ├── EvalComplexExpression │ │ │ ├── EvalComplexExpression.NativeActivity │ │ │ │ ├── EvalComplexExpression.NativeActivity.vcxproj │ │ │ │ ├── EvalComplexExpression.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── EvalComplexExpression.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── EvalComplexExpression.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── EvalCompoundDataTypes │ │ ├── EvalCompoundDataTypes.sln │ │ ├── EvalCompoundDataTypes │ │ │ ├── EvalCompoundDataTypes.NativeActivity │ │ │ │ ├── EvalCompoundDataTypes.NativeActivity.vcxproj │ │ │ │ ├── EvalCompoundDataTypes.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── EvalCompoundDataTypes.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── EvalCompoundDataTypes.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── EvalErrors │ │ ├── EvalErrors.sln │ │ ├── EvalErrors │ │ │ ├── EvalErrors.NativeActivity │ │ │ │ ├── EvalErrors.NativeActivity.vcxproj │ │ │ │ ├── EvalErrors.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── EvalErrors.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── EvalErrors.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── EvalPrimitiveTypes │ │ ├── EvalPrimitiveTypes.sln │ │ ├── EvalPrimitiveTypes │ │ │ ├── EvalPrimitiveTypes.NativeActivity │ │ │ │ ├── EvalPrimitiveTypes.NativeActivity.vcxproj │ │ │ │ ├── EvalPrimitiveTypes.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── EvalPrimitiveTypes.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── EvalPrimitiveTypes.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── Exceptions │ │ ├── Exceptions.sln │ │ ├── Exceptions │ │ │ ├── Exceptions.NativeActivity │ │ │ │ ├── Exceptions.NativeActivity.vcxproj │ │ │ │ ├── Exceptions.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Exceptions.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Exceptions.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── FunctionBreakPoints │ │ ├── FunctionBreakPoints.sln │ │ ├── FunctionBreakPoints │ │ │ ├── FunctionBreakPoints.NativeActivity │ │ │ │ ├── FunctionBreakPoints.NativeActivity.vcxproj │ │ │ │ ├── FunctionBreakPoints.NativeActivity.vcxproj.filters │ │ │ │ ├── Header1.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── FunctionBreakPoints.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── FunctionBreakPoints.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ ├── LaunchOptions.xml.template │ │ └── TestScript.xml │ ├── Locals │ │ ├── LaunchOptions.xml.template │ │ ├── Locals.sln │ │ ├── Locals │ │ │ ├── Locals.NativeActivity │ │ │ │ ├── Locals.NativeActivity.vcxproj │ │ │ │ ├── Locals.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Locals.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Locals.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── TestScript.xml │ ├── MultiThreadingCallStack │ │ ├── LaunchOptions.xml.template │ │ ├── MultiThreadingCallStack.sln │ │ ├── MultiThreadingCallStack │ │ │ ├── MultiThreadingCallStack.NativeActivity │ │ │ │ ├── Header1.h │ │ │ │ ├── MultiThreadingCallStack.NativeActivity.vcxproj │ │ │ │ ├── MultiThreadingCallStack.NativeActivity.vcxproj.filters │ │ │ │ ├── Source1.cpp │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── MultiThreadingCallStack.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── MultiThreadingCallStack.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── TestScript.xml │ ├── PrepareEmulator.ps1 │ ├── Sanity │ │ ├── LaunchOptions.xml.template │ │ ├── Sanity.sln │ │ ├── Sanity │ │ │ ├── Sanity.NativeActivity │ │ │ │ ├── Sanity.NativeActivity.vcxproj │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Sanity.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Sanity.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── TestScript.xml │ ├── Stepping │ │ ├── LaunchOptions.xml.template │ │ ├── Stepping.sln │ │ ├── Stepping │ │ │ ├── Stepping.NativeActivity │ │ │ │ ├── Header1.h │ │ │ │ ├── Header2.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── Source2.cpp │ │ │ │ ├── Stepping.NativeActivity.vcxproj │ │ │ │ ├── Stepping.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── Stepping.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── Stepping.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── TestScript.xml │ ├── SwitchFramesInCallStack │ │ ├── LaunchOptions.xml.template │ │ ├── SwitchFramesInCallStack.sln │ │ ├── SwitchFramesInCallStack │ │ │ ├── SwitchFramesInCallStack.NativeActivity │ │ │ │ ├── Header1.h │ │ │ │ ├── Header2.h │ │ │ │ ├── Source1.cpp │ │ │ │ ├── Source2.cpp │ │ │ │ ├── SwitchFramesInCallStack.NativeActivity.vcxproj │ │ │ │ ├── SwitchFramesInCallStack.NativeActivity.vcxproj.filters │ │ │ │ ├── android_native_app_glue.c │ │ │ │ ├── android_native_app_glue.h │ │ │ │ ├── main.cpp │ │ │ │ └── pch.h │ │ │ └── SwitchFramesInCallStack.Packaging │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── SwitchFramesInCallStack.Packaging.androidproj │ │ │ │ ├── build.xml │ │ │ │ ├── project.properties │ │ │ │ └── res │ │ │ │ └── values │ │ │ │ └── strings.xml │ │ └── TestScript.xml │ └── androidtest.cmd ├── CppTests │ ├── CppTestSettingsProvider.cs │ ├── CppTests.csproj │ ├── CppTests.nuspec │ ├── OpenDebug │ │ └── CrossPlatCpp │ │ │ ├── AttachCommand.cs │ │ │ ├── DebuggerRunner.cs │ │ │ ├── DebuggerRunnerExtensions.cs │ │ │ ├── InspectorValueExtensions.cs │ │ │ └── LaunchCommand.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── TestBase.cs │ ├── TestConfigurations │ │ ├── config_gdb.xml │ │ ├── config_lldb.xml │ │ ├── config_msys_gdb.xml │ │ └── config_vsdbg.xml │ ├── Tests │ │ ├── AttachTests.cs │ │ ├── AutoCompleteTests.cs │ │ ├── BreakpointTests.cs │ │ ├── CoreDumpTests.cs │ │ ├── DebuggeeHelpers.cs │ │ ├── DebuggeeMonikers.cs │ │ ├── EnvironmentTests.cs │ │ ├── ExceptionTests.cs │ │ ├── ExecutionTests.cs │ │ ├── ExpressionTests.cs │ │ ├── MacOSAppTests.cs │ │ ├── MemoryTests.cs │ │ ├── NatvisTests.cs │ │ ├── OptimizationTest.cs │ │ ├── SampleTests.cs │ │ ├── SharedLibTests.cs │ │ ├── SinkHelper.cs │ │ ├── SourceMappingTests.cs │ │ └── ThreadingTests.cs │ └── debuggees │ │ ├── MacOSApp │ │ └── src │ │ │ ├── Shared │ │ │ ├── Assets.xcassets │ │ │ │ ├── AccentColor.colorset │ │ │ │ │ └── Contents.json │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── main.cpp │ │ │ └── main.hpp │ │ │ ├── TestApp.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── project.xcworkspace │ │ │ │ ├── contents.xcworkspacedata │ │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ │ └── macOS │ │ │ ├── Info.plist │ │ │ └── macOS.entitlements │ │ ├── exception │ │ └── src │ │ │ ├── exception.cpp │ │ │ ├── exception.h │ │ │ └── main.cpp │ │ ├── hello │ │ └── src │ │ │ └── hello.cpp │ │ ├── kitchensink │ │ └── src │ │ │ ├── arguments.cpp │ │ │ ├── arguments.h │ │ │ ├── calling.cpp │ │ │ ├── calling.h │ │ │ ├── environment.cpp │ │ │ ├── environment.h │ │ │ ├── expression.cpp │ │ │ ├── expression.h │ │ │ ├── feature.cpp │ │ │ ├── feature.h │ │ │ ├── global.h │ │ │ ├── main.cpp │ │ │ ├── main.h │ │ │ ├── nonterminating.cpp │ │ │ ├── nonterminating.h │ │ │ ├── threading.cpp │ │ │ └── threading.h │ │ ├── natvis │ │ └── src │ │ │ ├── BinarySearchTree.h │ │ │ ├── SimpleArray.h │ │ │ ├── SimpleClass.h │ │ │ ├── SimpleLinkedList.h │ │ │ ├── SimpleMatrix.h │ │ │ ├── SimpleVector.h │ │ │ ├── main.cpp │ │ │ └── visualizer_files │ │ │ ├── Simple.natvis │ │ │ ├── Simple1.natvis │ │ │ └── Simple2.natvis │ │ ├── optimization │ │ └── src │ │ │ ├── foo.cpp │ │ │ ├── foo.h │ │ │ ├── mylib.cpp │ │ │ ├── mylib.h │ │ │ ├── mylib_base.h │ │ │ └── source.cpp │ │ ├── sharedlib │ │ └── src │ │ │ ├── global.h │ │ │ ├── myapp.cpp │ │ │ ├── mylib.cpp │ │ │ ├── mylib.h │ │ │ ├── mylib_base.h │ │ │ └── sharedlib.h │ │ ├── sln │ │ ├── README.md │ │ ├── debuggees.sln │ │ ├── exception │ │ │ ├── exception.vcxproj │ │ │ └── exception.vcxproj.filters │ │ ├── hello │ │ │ ├── hello.vcxproj │ │ │ └── hello.vcxproj.filters │ │ ├── kitchensink │ │ │ ├── kitchensink.vcxproj │ │ │ └── kitchensink.vcxproj.filters │ │ ├── natvis │ │ │ ├── natvis.vcxproj │ │ │ └── natvis.vcxproj.filters │ │ ├── optimization │ │ │ ├── optimization.vcxproj │ │ │ └── optimization.vcxproj.filters │ │ ├── sharedlib │ │ │ ├── sharedlib.vcxproj │ │ │ └── sharedlib.vcxproj.filters │ │ └── sourcemap │ │ │ ├── sourcemap.vcxproj │ │ │ └── sourcemap.vcxproj.filters │ │ └── sourcemap │ │ └── src │ │ ├── main.cpp │ │ ├── manager │ │ ├── manager.cpp │ │ └── manager.h │ │ └── writer │ │ ├── writer.cpp │ │ └── writer.h ├── DebugAdapterRunner │ ├── Command.cs │ ├── DARException.cs │ ├── DebugAdapterCommand.cs │ ├── DebugAdapterResponse.cs │ ├── DebugAdapterRunner.cs │ ├── DebugAdapterRunner.csproj │ ├── DebugAdapterRunner.nuspec │ ├── OpenDebug │ │ ├── DAPConstants.cs │ │ └── Messages.cs │ └── Utils.cs ├── DebuggerTesting │ ├── Attribution │ │ ├── CompilerSettings.cs │ │ ├── DebuggerAttribute.cs │ │ ├── DebuggerSettings.cs │ │ ├── RequiresTestSettingsAttribute.cs │ │ ├── SupportedCompilerAttribute.cs │ │ ├── SupportedDebuggerAttribute.cs │ │ ├── SupportedPlatformAttribute.cs │ │ ├── TestSettings.cs │ │ ├── TestSettingsHelper.cs │ │ ├── TestSettingsProviderAttribute.cs │ │ └── UnsupportedDebuggerAttribute.cs │ ├── Compilation │ │ ├── ClangCompiler.cs │ │ ├── CompilerBase.cs │ │ ├── CompilerOption.cs │ │ ├── CompilerOutputType.cs │ │ ├── Debuggee.cs │ │ ├── GppCompiler.cs │ │ ├── GppStyleCompiler.cs │ │ ├── ICompiler.cs │ │ ├── IDebuggee.cs │ │ ├── VisualCPlusPlusCompiler.cs │ │ └── XCodeRunCompiler.cs │ ├── DebuggerTesting.csproj │ ├── ICompilerSettings.cs │ ├── IDebuggerSettings.cs │ ├── ILoggingComponent.cs │ ├── ITestSettings.cs │ ├── OpenDebug │ │ ├── Commands │ │ │ ├── AsyncBreakCommand.cs │ │ │ ├── AttachCommand.cs │ │ │ ├── Command.cs │ │ │ ├── CompletionsCommand.cs │ │ │ ├── ConfigurationDoneCommand.cs │ │ │ ├── DataBreakpointInfoCommand.cs │ │ │ ├── DisassembleCommand.cs │ │ │ ├── DisconnectCommand.cs │ │ │ ├── EvaluateCommand.cs │ │ │ ├── InitializeCommand.cs │ │ │ ├── LaunchCommand.cs │ │ │ ├── ReadMemoryCommand.cs │ │ │ ├── Responses │ │ │ │ ├── CommandResponse.cs │ │ │ │ ├── CompletionsResponseValue.cs │ │ │ │ ├── DataBreakpointInfoResponseValue.cs │ │ │ │ ├── DisassembleResponseValue.cs │ │ │ │ ├── EvaluateResponseValue.cs │ │ │ │ ├── ReadMemoryResponseValue.cs │ │ │ │ ├── ScopesResponseValue.cs │ │ │ │ ├── SetBreakpointsResponseValue.cs │ │ │ │ ├── SetDataBreakpointsResponse.cs │ │ │ │ ├── SetExpressionResponse.cs │ │ │ │ ├── SetVariableResponse.cs │ │ │ │ ├── Source.cs │ │ │ │ ├── SourceResponseValue.cs │ │ │ │ ├── StackTraceResponseValue.cs │ │ │ │ ├── ThreadsResponseValue.cs │ │ │ │ └── VariablesResponseValue.cs │ │ │ ├── ScopesCommand.cs │ │ │ ├── SetBreakpointsCommand.cs │ │ │ ├── SetDataBreakpointsCommand.cs │ │ │ ├── SetExceptionBreakpointsCommand.cs │ │ │ ├── SetExpressionCommand.cs │ │ │ ├── SetFunctionBreakpointsCommand.cs │ │ │ ├── SetInstructionBreakpointCommand.cs │ │ │ ├── SetVariableCommand.cs │ │ │ ├── SourceCommand.cs │ │ │ ├── StackTraceCommand.cs │ │ │ ├── StepCommands.cs │ │ │ ├── ThreadsCommand.cs │ │ │ └── VariablesCommand.cs │ │ ├── Events │ │ │ ├── BreakpointEvent.cs │ │ │ ├── Event.cs │ │ │ ├── ExitedEvent.cs │ │ │ ├── OutputEvent.cs │ │ │ ├── StoppedEvent.cs │ │ │ └── TerminatedEvent.cs │ │ ├── Extensions │ │ │ ├── DebuggeeExtensions.cs │ │ │ ├── DebuggerRunnerExtensions.cs │ │ │ ├── FrameInspector.cs │ │ │ ├── IInspectors.cs │ │ │ ├── ThreadInspector.cs │ │ │ └── VariableInspector.cs │ │ ├── ICommand.cs │ │ ├── IDebuggerRunner.cs │ │ ├── IEvent.cs │ │ ├── IResponse.cs │ │ ├── Response.cs │ │ ├── RunBuilder.cs │ │ └── RunnerException.cs │ ├── Ordering │ │ ├── DependencyOrderer.cs │ │ ├── DependencyTestOrderer.cs │ │ └── DependsOnTestAttribute.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Settings │ │ ├── DiagnosticsSettings.cs │ │ └── PathSettings.cs │ ├── SupportedArchitecture.cs │ ├── SupportedCompiler.cs │ ├── SupportedDebugger.cs │ ├── SupportedPlatform.cs │ ├── TestFramework │ │ ├── ITestSettingsProvider.cs │ │ └── TestSettingsDataDiscoverer.cs │ ├── Tests │ │ └── AttributionTests.cs │ └── Utilities │ │ ├── ArgumentBuilder.cs │ │ ├── AssemblyExtensions.cs │ │ ├── DisposableHelper.cs │ │ ├── DisposableObject.cs │ │ ├── EnumerableExtensions.cs │ │ ├── FileUtilities.cs │ │ ├── HashUtilities.cs │ │ ├── Parameter.cs │ │ ├── PlatformUtilities.cs │ │ ├── ProcessHelper.cs │ │ ├── StringExtensions.cs │ │ ├── SupportedArchitectureExtensions.cs │ │ ├── UDebug.cs │ │ ├── UnixNativeMethods.cs │ │ ├── Windows │ │ └── WindowsProcessNativeMethods.cs │ │ └── XmlHelper.cs ├── GlassTestPackage-EULA.txt ├── LaunchOptionsGen │ ├── LaunchOptionsGen.cs │ └── LaunchOptionsGen.csproj ├── MIEngine.regdef └── RegisterMIEngine.cmd └── tools ├── DownloadLldbMI.sh ├── NuGet └── NuGet.exe ├── Setup.cmd ├── Setup.csx ├── Setup.sh ├── VS.list ├── VSCode.list └── iOS ├── CertTool ├── App.config ├── CertTool.cs ├── CertTool.csproj ├── Properties │ └── AssemblyInfo.cs └── README.txt └── DebugListenerTool ├── App.config ├── DebugListenerTool.cs ├── DebugListenerTool.csproj ├── Properties └── AssemblyInfo.cs └── README.txt /.devcontainer/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.devcontainer/Dockerfile -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/Build-And-Test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.github/workflows/Build-And-Test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/.gitignore -------------------------------------------------------------------------------- /IL/.gitignore: -------------------------------------------------------------------------------- 1 | GeneratedAssemblies -------------------------------------------------------------------------------- /IL/HowToGenerate.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/IL/HowToGenerate.MD -------------------------------------------------------------------------------- /IL/Microsoft.Internal.VisualStudio.Interop.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/IL/Microsoft.Internal.VisualStudio.Interop.il -------------------------------------------------------------------------------- /IL/Microsoft.VisualStudio.Linux.ConnectionManager.Contracts.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/IL/Microsoft.VisualStudio.Linux.ConnectionManager.Contracts.il -------------------------------------------------------------------------------- /IL/libadb.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/IL/libadb.il -------------------------------------------------------------------------------- /IL/liblinux.il: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/IL/liblinux.il -------------------------------------------------------------------------------- /Keys/DevDivPublicKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/Keys/DevDivPublicKey.snk -------------------------------------------------------------------------------- /Keys/ExternalKey.snk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/Keys/ExternalKey.snk -------------------------------------------------------------------------------- /License.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/License.txt -------------------------------------------------------------------------------- /MIEngine.UnixPortSupplier.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/MIEngine.UnixPortSupplier.nuspec -------------------------------------------------------------------------------- /MIEngine.mdd.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/MIEngine.mdd.nuspec -------------------------------------------------------------------------------- /PackageLicenses/license-prerelease.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/PackageLicenses/license-prerelease.txt -------------------------------------------------------------------------------- /PublishOpenDebugAD7.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/PublishOpenDebugAD7.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/SECURITY.md -------------------------------------------------------------------------------- /ThirdPartyNotices.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/ThirdPartyNotices.txt -------------------------------------------------------------------------------- /eng/Scripts/CI-Build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/Scripts/CI-Build.cmd -------------------------------------------------------------------------------- /eng/Scripts/CI-Build.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/Scripts/CI-Build.ps1 -------------------------------------------------------------------------------- /eng/Scripts/CI-Build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/Scripts/CI-Build.sh -------------------------------------------------------------------------------- /eng/Scripts/CI-Test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/Scripts/CI-Test.sh -------------------------------------------------------------------------------- /eng/Signing/macOS/debugger-entitlements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/Signing/macOS/debugger-entitlements.plist -------------------------------------------------------------------------------- /eng/pipelines/DebuggerTesting-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/DebuggerTesting-release.yml -------------------------------------------------------------------------------- /eng/pipelines/MIDebugEngine-CI.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/MIDebugEngine-CI.yml -------------------------------------------------------------------------------- /eng/pipelines/VS-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/VS-release.yml -------------------------------------------------------------------------------- /eng/pipelines/VSCode-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/VSCode-release.yml -------------------------------------------------------------------------------- /eng/pipelines/jobs/MSHosted-Linux.job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/jobs/MSHosted-Linux.job.yml -------------------------------------------------------------------------------- /eng/pipelines/jobs/MSHosted-OSX.job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/jobs/MSHosted-OSX.job.yml -------------------------------------------------------------------------------- /eng/pipelines/jobs/MSHosted-Windows.job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/jobs/MSHosted-Windows.job.yml -------------------------------------------------------------------------------- /eng/pipelines/jobs/VSEngSS-MicroBuild2022-1ES.job.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/jobs/VSEngSS-MicroBuild2022-1ES.job.yml -------------------------------------------------------------------------------- /eng/pipelines/resources/TSAConfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/resources/TSAConfig.json -------------------------------------------------------------------------------- /eng/pipelines/resources/falsepositives.gdnsuppress: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /eng/pipelines/resources/policheck_exclusion.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/resources/policheck_exclusion.xml -------------------------------------------------------------------------------- /eng/pipelines/resources/signing_exclusion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/resources/signing_exclusion.txt -------------------------------------------------------------------------------- /eng/pipelines/steps/APIScan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/APIScan.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/BuildSolution.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/BuildSolution.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/CollectAndPublishBinaries.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/CollectAndPublishBinaries.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/CopyAndPublishSymbols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/CopyAndPublishSymbols.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/PostAnalysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/PostAnalysis.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/PublishOpenDebugAD7.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/PublishOpenDebugAD7.yml -------------------------------------------------------------------------------- /eng/pipelines/steps/PublishVSPackages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/steps/PublishVSPackages.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/1ES/PublishPipelineArtifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/1ES/PublishPipelineArtifact.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/AntiMalware.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/AntiMalware.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/BinSkim.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/BinSkim.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/CSharp.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/CSharp.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/CopyFiles.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/CopyFiles.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/CredScan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/CredScan.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/DownloadPipelineArtifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/DownloadPipelineArtifact.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/MSBuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/MSBuild.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/MicroBuildCleanup.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/MicroBuildCleanup.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/MicroBuildLocalizationPlugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/MicroBuildLocalizationPlugin.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/MicroBuildPrefastPlugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/MicroBuildPrefastPlugin.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/MicroBuildSigningPlugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/MicroBuildSigningPlugin.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/NuGetCommand.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/NuGetCommand.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/NuGetToolInstaller.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/NuGetToolInstaller.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/PSScriptAnalyzer.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/PSScriptAnalyzer.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/PoliCheck.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/PoliCheck.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/PublishPipelineArtifact.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/PublishPipelineArtifact.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/PublishSecurityAnalysisLogs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/PublishSecurityAnalysisLogs.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/PublishSymbols.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/PublishSymbols.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/SdtReport.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/SdtReport.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/SignVerify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/SignVerify.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/TSAUpload.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/TSAUpload.yml -------------------------------------------------------------------------------- /eng/pipelines/tasks/UseDotNet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/tasks/UseDotNet.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/Build.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/Build.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/CodeAnalysis.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/CodeAnalysis.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/DebuggerTesting-release.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/DebuggerTesting-release.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/VS-release.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/VS-release.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/VSCode-codesign-osx.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/VSCode-codesign-osx.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/VSCode-esrp-sign-osx.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/VSCode-esrp-sign-osx.template.yml -------------------------------------------------------------------------------- /eng/pipelines/templates/VSCode-release.template.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/eng/pipelines/templates/VSCode-release.template.yml -------------------------------------------------------------------------------- /loc/lci/Microsoft.SSHDebugPS.dll.lci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lci/Microsoft.SSHDebugPS.dll.lci -------------------------------------------------------------------------------- /loc/lci/OpenFolderSchema.json.lci: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lci/OpenFolderSchema.json.lci -------------------------------------------------------------------------------- /loc/lcl/CHS/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CHS/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CHS/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CHS/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/CHT/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CHT/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CHT/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CHT/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/CSY/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CSY/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/CSY/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/CSY/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/DEU/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/DEU/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/DEU/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/DEU/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/ESN/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/ESN/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ESN/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/ESN/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/FRA/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/FRA/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/FRA/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/FRA/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/ITA/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/ITA/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/ITA/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/ITA/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/JPN/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/JPN/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/JPN/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/JPN/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/KOR/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/KOR/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/KOR/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/KOR/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/PLK/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/PLK/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PLK/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/PLK/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/PTB/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/PTB/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/PTB/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/PTB/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/RUS/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/RUS/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/RUS/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/RUS/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /loc/lcl/TRK/Microsoft.SSHDebugPS.dll.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/TRK/Microsoft.SSHDebugPS.dll.lcl -------------------------------------------------------------------------------- /loc/lcl/TRK/OpenFolderSchema.json.lcl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/loc/lcl/TRK/OpenFolderSchema.json.lcl -------------------------------------------------------------------------------- /src/.nuget/NuGet.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/.nuget/NuGet.config -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/AndroidDebugLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/AndroidDebugLauncher.csproj -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/AndroidLaunchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/AndroidLaunchOptions.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/INDKFilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/INDKFilePath.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/InstallPaths.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/InstallPaths.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/Launcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/Launcher.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/LauncherException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/LauncherException.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/LauncherResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/LauncherResources.Designer.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/LauncherResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/LauncherResources.resx -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/Microsoft.Android.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/Microsoft.Android.natvis -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/Microsoft.AndroidDebugLauncher.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/Microsoft.AndroidDebugLauncher.pkgdef -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/NDKPrebuiltFilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/NDKPrebuiltFilePath.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/NDKToolChainFilePath.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/NDKToolChainFilePath.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/NdkReleaseId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/NdkReleaseId.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/NdkToolVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/NdkToolVersion.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/ProcessListParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/ProcessListParser.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/PwdOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/PwdOutputParser.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/RegistryRoot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/RegistryRoot.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/RunAsOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/RunAsOutputParser.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/StringExtensions.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/TargetArchitectureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/TargetArchitectureExtensions.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/Telemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/Telemetry.cs -------------------------------------------------------------------------------- /src/AndroidDebugLauncher/TextColumn.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/AndroidDebugLauncher/TextColumn.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.Common/HostLogChannel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.Common/HostLogChannel.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.Stub/Contract.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.Stub/Contract.ruleset -------------------------------------------------------------------------------- /src/DebugEngineHost.Stub/DebugEngineHost.Stub.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.Stub/DebugEngineHost.Stub.csproj -------------------------------------------------------------------------------- /src/DebugEngineHost.Stub/DebugEngineHost.ref.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.Stub/DebugEngineHost.ref.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.Stub/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.Stub/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/DebugEngineHost.VSCode.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/DebugEngineHost.VSCode.csproj -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/Host.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostConfigurationSection.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostConfigurationStore.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostLoader.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostLogger.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostMarshal.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostNatvisProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostNatvisProject.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostOutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostOutputWindow.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostResources.Designer.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostResources.resx -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostRunInTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostRunInTerminal.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostTelemetry.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostWaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostWaitDialog.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/HostWaitLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/HostWaitLoop.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/VSCode/AssemblyResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/VSCode/AssemblyResolver.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/VSCode/EngineConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/VSCode/EngineConfiguration.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/VSCode/ExceptionBreakpointFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/VSCode/ExceptionBreakpointFilter.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/VSCode/ExceptionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/VSCode/ExceptionSettings.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/VSCode/HandleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/VSCode/HandleCollection.cs -------------------------------------------------------------------------------- /src/DebugEngineHost.VSCode/_Readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost.VSCode/_Readme.txt -------------------------------------------------------------------------------- /src/DebugEngineHost/DebugEngineHost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/DebugEngineHost.csproj -------------------------------------------------------------------------------- /src/DebugEngineHost/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/Host.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostConfigurationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostConfigurationException.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostConfigurationSection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostConfigurationSection.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostConfigurationStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostConfigurationStore.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostDebugger.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostLoader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostLoader.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostLogger.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostMarshal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostMarshal.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostNatvisProject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostNatvisProject.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostOutputWindow.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostOutputWindow.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostRunInTerminal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostRunInTerminal.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostTelemetry.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostWaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostWaitDialog.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/HostWaitLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/HostWaitLoop.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/RegistryMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/RegistryMonitor.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/Resource.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/Resource.Designer.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/Resource.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/Resource.resx -------------------------------------------------------------------------------- /src/DebugEngineHost/VSImpl/VSEventCallbackWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/VSImpl/VSEventCallbackWrapper.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/VSImpl/VsWaitDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/VSImpl/VsWaitDialog.cs -------------------------------------------------------------------------------- /src/DebugEngineHost/VSImpl/VsWaitLoop.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/DebugEngineHost/VSImpl/VsWaitLoop.cs -------------------------------------------------------------------------------- /src/IDECodeAnalysis.ruleset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/IDECodeAnalysis.ruleset -------------------------------------------------------------------------------- /src/JDbg/JDbg.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/JDbg.cs -------------------------------------------------------------------------------- /src/JDbg/JDbg.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/JDbg.csproj -------------------------------------------------------------------------------- /src/JDbg/Jdwp.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/Jdwp.cs -------------------------------------------------------------------------------- /src/JDbg/JdwpCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/JdwpCommand.cs -------------------------------------------------------------------------------- /src/JDbg/JdwpException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/JdwpException.cs -------------------------------------------------------------------------------- /src/JDbg/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JDbg/ReplyPacketParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/ReplyPacketParser.cs -------------------------------------------------------------------------------- /src/JDbg/TcpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/TcpTransport.cs -------------------------------------------------------------------------------- /src/JDbg/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbg/Utils.cs -------------------------------------------------------------------------------- /src/JDbgUnitTests/JDbgUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbgUnitTests/JDbgUnitTests.csproj -------------------------------------------------------------------------------- /src/JDbgUnitTests/JdwpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbgUnitTests/JdwpTests.cs -------------------------------------------------------------------------------- /src/JDbgUnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbgUnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/JDbgUnitTests/UtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/JDbgUnitTests/UtilsTests.cs -------------------------------------------------------------------------------- /src/MICore/Checksum.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Checksum.cs -------------------------------------------------------------------------------- /src/MICore/CommandFactories/MICommandFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/CommandFactories/MICommandFactory.cs -------------------------------------------------------------------------------- /src/MICore/CommandFactories/gdb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/CommandFactories/gdb.cs -------------------------------------------------------------------------------- /src/MICore/CommandFactories/lldb.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/CommandFactories/lldb.cs -------------------------------------------------------------------------------- /src/MICore/CommandLock.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/CommandLock.cs -------------------------------------------------------------------------------- /src/MICore/Debugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Debugger.cs -------------------------------------------------------------------------------- /src/MICore/DebuggerDisposedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/DebuggerDisposedException.cs -------------------------------------------------------------------------------- /src/MICore/ExampleLaunchOptions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/ExampleLaunchOptions.xml -------------------------------------------------------------------------------- /src/MICore/ExampleVsDbgLaunch.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/ExampleVsDbgLaunch.cmd -------------------------------------------------------------------------------- /src/MICore/ExceptionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/ExceptionHelper.cs -------------------------------------------------------------------------------- /src/MICore/GenerateXmlSerializersAssembly.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/GenerateXmlSerializersAssembly.targets -------------------------------------------------------------------------------- /src/MICore/IncludeExcludeList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/IncludeExcludeList.cs -------------------------------------------------------------------------------- /src/MICore/InvalidCoreDumpOperationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/InvalidCoreDumpOperationException.cs -------------------------------------------------------------------------------- /src/MICore/InvalidLaunchOptionsException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/InvalidLaunchOptionsException.cs -------------------------------------------------------------------------------- /src/MICore/JsonLaunchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/JsonLaunchOptions.cs -------------------------------------------------------------------------------- /src/MICore/LaunchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/LaunchCommand.cs -------------------------------------------------------------------------------- /src/MICore/LaunchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/LaunchOptions.cs -------------------------------------------------------------------------------- /src/MICore/LaunchOptions.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/LaunchOptions.xsd -------------------------------------------------------------------------------- /src/MICore/LaunchOptions.xsd.types.designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/LaunchOptions.xsd.types.designer.cs -------------------------------------------------------------------------------- /src/MICore/Logger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Logger.cs -------------------------------------------------------------------------------- /src/MICore/MICore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/MICore.csproj -------------------------------------------------------------------------------- /src/MICore/MICoreResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/MICoreResources.Designer.cs -------------------------------------------------------------------------------- /src/MICore/MICoreResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/MICoreResources.resx -------------------------------------------------------------------------------- /src/MICore/MIException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/MIException.cs -------------------------------------------------------------------------------- /src/MICore/MIResults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/MIResults.cs -------------------------------------------------------------------------------- /src/MICore/PlatformUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/PlatformUtilities.cs -------------------------------------------------------------------------------- /src/MICore/ProcessMonitor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/ProcessMonitor.cs -------------------------------------------------------------------------------- /src/MICore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MICore/RunInTerminalLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/RunInTerminalLauncher.cs -------------------------------------------------------------------------------- /src/MICore/SGEN_SHA2_SIGNATUREKEY: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/SGEN_SHA2_SIGNATUREKEY -------------------------------------------------------------------------------- /src/MICore/Transports/ClientServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/ClientServerTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/ITransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/ITransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/LocalTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/LocalTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/MockTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/MockTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/PipeTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/PipeTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/RunInTerminalTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/RunInTerminalTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/ServerTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/ServerTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/StreamTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/StreamTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/TcpTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/TcpTransport.cs -------------------------------------------------------------------------------- /src/MICore/Transports/UnixShellPortTransport.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Transports/UnixShellPortTransport.cs -------------------------------------------------------------------------------- /src/MICore/UnixNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/UnixNativeMethods.cs -------------------------------------------------------------------------------- /src/MICore/UnixUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/UnixUtilities.cs -------------------------------------------------------------------------------- /src/MICore/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/Utilities.cs -------------------------------------------------------------------------------- /src/MICore/osxlaunchhelper.scpt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICore/osxlaunchhelper.scpt -------------------------------------------------------------------------------- /src/MICoreUnitTests/AndroidLauncherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/AndroidLauncherTests.cs -------------------------------------------------------------------------------- /src/MICoreUnitTests/BasicLaunchOptionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/BasicLaunchOptionsTests.cs -------------------------------------------------------------------------------- /src/MICoreUnitTests/CommandLockTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/CommandLockTests.cs -------------------------------------------------------------------------------- /src/MICoreUnitTests/MICoreUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/MICoreUnitTests.csproj -------------------------------------------------------------------------------- /src/MICoreUnitTests/MIResults.playlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/MIResults.playlist -------------------------------------------------------------------------------- /src/MICoreUnitTests/MIResultsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/MIResultsTests.cs -------------------------------------------------------------------------------- /src/MICoreUnitTests/NdkVersionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/NdkVersionTests.cs -------------------------------------------------------------------------------- /src/MICoreUnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MICoreUnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MIDebugEngine-Unix.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine-Unix.sln -------------------------------------------------------------------------------- /src/MIDebugEngine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine.sln -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Definitions/AD7Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Definitions/AD7Guids.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Definitions/AD7Hresult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Definitions/AD7Hresult.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7BoundBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7BoundBreakpoint.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7BreakpointResolution.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7BreakpointResolution.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Disassembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Disassembly.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7DocumentContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7DocumentContext.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Engine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Engine.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Enums.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Events.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Expression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Expression.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7MemoryAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7MemoryAddress.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Module.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7PendingBreakpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7PendingBreakpoint.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7ProgramNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7ProgramNode.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7ProgramProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7ProgramProvider.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Property.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Property.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7RegProperty.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7RegProperty.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7StackFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7StackFrame.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/AD7Thread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/AD7Thread.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/EngineConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/EngineConstants.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/AD7.Impl/HashAlgorithmId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/AD7.Impl/HashAlgorithmId.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/BreakpointManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/BreakpointManager.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/Breakpoints.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/Breakpoints.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/CygwinFileMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/CygwinFileMapper.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/DebugUnixChildProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/DebugUnixChildProcess.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/DebuggedModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/DebuggedModule.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/DebuggedProcess.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/DebuggedProcess.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/DebuggedThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/DebuggedThread.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/Disassembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/Disassembly.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/EngineCallback.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/EngineCallback.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/EngineTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/EngineTelemetry.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/EngineUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/EngineUtils.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/ExceptionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/ExceptionManager.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/LaunchErrorException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/LaunchErrorException.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/MITextPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/MITextPosition.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/OperationThread.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/OperationThread.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/SourceLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/SourceLine.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/Structures.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/Structures.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Engine.Impl/Variables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Engine.Impl/Variables.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/MIDebugCommandDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/MIDebugCommandDispatcher.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/MIDebugEngine.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/MIDebugEngine.csproj -------------------------------------------------------------------------------- /src/MIDebugEngine/Microsoft.MIDebugEngine.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Microsoft.MIDebugEngine.pkgdef -------------------------------------------------------------------------------- /src/MIDebugEngine/Natvis.Impl/Natvis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Natvis.Impl/Natvis.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Natvis.Impl/NatvisNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Natvis.Impl/NatvisNames.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Natvis.Impl/NatvisXsdTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Natvis.Impl/NatvisXsdTypes.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Natvis.Impl/VisualizationCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Natvis.Impl/VisualizationCache.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/Natvis.Impl/natvis.xsd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Natvis.Impl/natvis.xsd -------------------------------------------------------------------------------- /src/MIDebugEngine/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/ResourceStrings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/ResourceStrings.Designer.cs -------------------------------------------------------------------------------- /src/MIDebugEngine/ResourceStrings.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngine/ResourceStrings.resx -------------------------------------------------------------------------------- /src/MIDebugEngineUnitTests/MIDebugEngineUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngineUnitTests/MIDebugEngineUnitTests.csproj -------------------------------------------------------------------------------- /src/MIDebugEngineUnitTests/NatvisNamesTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugEngineUnitTests/NatvisNamesTest.cs -------------------------------------------------------------------------------- /src/MIDebugPackage/Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/Guids.cs -------------------------------------------------------------------------------- /src/MIDebugPackage/Install.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/Install.cmd -------------------------------------------------------------------------------- /src/MIDebugPackage/MIDebugPackage.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/MIDebugPackage.csproj -------------------------------------------------------------------------------- /src/MIDebugPackage/MIDebugPackage.vsct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/MIDebugPackage.vsct -------------------------------------------------------------------------------- /src/MIDebugPackage/MIDebugPackagePackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/MIDebugPackagePackage.cs -------------------------------------------------------------------------------- /src/MIDebugPackage/OpenFolderSchema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/OpenFolderSchema.json -------------------------------------------------------------------------------- /src/MIDebugPackage/PkgCmdID.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/PkgCmdID.cs -------------------------------------------------------------------------------- /src/MIDebugPackage/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/MIDebugPackage/Resources/Images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/Resources/Images.png -------------------------------------------------------------------------------- /src/MIDebugPackage/SuppressFromVsix.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/SuppressFromVsix.targets -------------------------------------------------------------------------------- /src/MIDebugPackage/VSPackage.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/VSPackage.resx -------------------------------------------------------------------------------- /src/MIDebugPackage/source.extension.vsixmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MIDebugPackage/source.extension.vsixmanifest -------------------------------------------------------------------------------- /src/MakePIAPortable/Dummy.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MakePIAPortable/Dummy.cs -------------------------------------------------------------------------------- /src/MakePIAPortable/MakePIAPortable.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/MakePIAPortable/MakePIAPortable.csproj -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7DebugSession.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7DebugSession.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Exception.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Exception.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7ExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7ExtensionMethods.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7BreakPointRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7BreakPointRequest.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7DocumentPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7DocumentPosition.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7Guids.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7Guids.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7Port.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7Port.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7Process.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Impl/AD7Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Impl/AD7Program.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Resources.Designer.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Resources.resx -------------------------------------------------------------------------------- /src/OpenDebugAD7/AD7Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/AD7Utils.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Constants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Constants.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/DebugEventLogger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/DebugEventLogger.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Document.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Document.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/EngineConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/EngineConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/ErrorBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/ErrorBuilder.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/LanguageUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/LanguageUtilities.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/MILaunchOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/MILaunchOptions.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/OpenDebug/CustomProtocolObjects.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/OpenDebug/CustomProtocolObjects.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/OpenDebug/PathUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/OpenDebug/PathUtilities.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/OpenDebug/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/OpenDebug/Program.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/OpenDebug/Utilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/OpenDebug/Utilities.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/OpenDebugAD7.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/OpenDebugAD7.csproj -------------------------------------------------------------------------------- /src/OpenDebugAD7/PathConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/PathConverter.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/SessionConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/SessionConfiguration.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Telemetry/DebuggerTelemetry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Telemetry/DebuggerTelemetry.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Telemetry/TelemetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Telemetry/TelemetryHelper.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/TextPositionTuple.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/TextPositionTuple.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/ThreadFrameEnumInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/ThreadFrameEnumInfo.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/Tracepoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/Tracepoint.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/VariableManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/VariableManager.cs -------------------------------------------------------------------------------- /src/OpenDebugAD7/cppdbg.ad7Engine.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/OpenDebugAD7/cppdbg.ad7Engine.json -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7Enums.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7Port.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7Port.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7PortSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7PortSupplier.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7Process.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7Process.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7Program.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7UnixAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7UnixAsyncCommand.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/AD7/AD7UnixAsyncShellCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/AD7/AD7UnixAsyncShellCommand.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/CommandFailedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/CommandFailedException.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/CommandRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/CommandRunner.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/ConnectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/ConnectionManager.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerConnection.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerContainerInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerContainerInstance.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerExecutionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerExecutionManager.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerHelper.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerPort.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerPortPicker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerPortPicker.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/DockerPortSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/DockerPortSupplier.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Docker/TransportSettings/DockerTransportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Docker/TransportSettings/DockerTransportSettings.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/HR.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/HR.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/IConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/IConnection.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/IPipeTransportSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/IPipeTransportSettings.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/LineBuffer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/LineBuffer.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/LocalProcessAsyncRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/LocalProcessAsyncRunner.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/MIEngineLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/MIEngineLauncher.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Microsoft.SSHDebugPS.pkgdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Microsoft.SSHDebugPS.pkgdef -------------------------------------------------------------------------------- /src/SSHDebugPS/NativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/NativeMethods.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/PSOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/PSOutputParser.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/PipeAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/PipeAsyncCommand.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/PipeConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/PipeConnection.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/ProcFSOutputParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/ProcFSOutputParser.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHConnection.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHHelper.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHPort.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHPortSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHPortSupplier.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHRemoteShell.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHRemoteShell.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSH/SSHUnixAsyncCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSH/SSHUnixAsyncCommand.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/SSHDebugPS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/SSHDebugPS.csproj -------------------------------------------------------------------------------- /src/SSHDebugPS/StringResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/StringResources.Designer.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/StringResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/StringResources.resx -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/Commands/ContainerUICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/Commands/ContainerUICommand.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ContainerInstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ContainerInstance.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ContainerPickerDialogWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ContainerPickerDialogWindow.xaml -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ContainerPickerDialogWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ContainerPickerDialogWindow.xaml.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/Controls/Automation/ContainerListViewAutomationPeer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/Controls/Automation/ContainerListViewAutomationPeer.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/Controls/ContainerListBox.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/Controls/ContainerListBox.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/Converters/BoolToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/Converters/BoolToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/Converters/TextToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/Converters/TextToVisibilityConverter.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/UIResources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/UIResources.Designer.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/UIResources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/UIResources.resx -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ViewModels/ConnectionViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ViewModels/ConnectionViewModel.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ViewModels/ContainerPickerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ViewModels/ContainerPickerViewModel.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/UI/ViewModels/ContainerViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/UI/ViewModels/ContainerViewModel.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Utilities/ExitCodes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Utilities/ExitCodes.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Utilities/StringExtensionMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Utilities/StringExtensionMethods.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Utilities/TelemetryHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Utilities/TelemetryHelper.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/Utilities/VSMessageBoxHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/Utilities/VSMessageBoxHelper.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/VSOperationWaiter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/VSOperationWaiter.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/VsOutputWindowWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/VsOutputWindowWrapper.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/WSL/WSLCommandLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/WSL/WSLCommandLine.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/WSL/WSLConnection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/WSL/WSLConnection.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/WSL/WSLException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/WSL/WSLException.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/WSL/WSLPort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/WSL/WSLPort.cs -------------------------------------------------------------------------------- /src/SSHDebugPS/WSL/WSLPortSupplier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugPS/WSL/WSLPortSupplier.cs -------------------------------------------------------------------------------- /src/SSHDebugTests/LineBufferTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugTests/LineBufferTests.cs -------------------------------------------------------------------------------- /src/SSHDebugTests/PSOutputParserTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugTests/PSOutputParserTests.cs -------------------------------------------------------------------------------- /src/SSHDebugTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/SSHDebugTests/SSHConnectionStringTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugTests/SSHConnectionStringTests.cs -------------------------------------------------------------------------------- /src/SSHDebugTests/SSHDebugUnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/SSHDebugTests/SSHDebugUnitTests.csproj -------------------------------------------------------------------------------- /src/WindowsDebugLauncher/DebugLauncher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/WindowsDebugLauncher/DebugLauncher.cs -------------------------------------------------------------------------------- /src/WindowsDebugLauncher/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/WindowsDebugLauncher/Program.cs -------------------------------------------------------------------------------- /src/WindowsDebugLauncher/WindowsDebugLauncher.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/WindowsDebugLauncher/WindowsDebugLauncher.csproj -------------------------------------------------------------------------------- /src/tools/MakePIAPortableTool/MakePIAPortableTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/tools/MakePIAPortableTool/MakePIAPortableTool.cs -------------------------------------------------------------------------------- /src/tools/MakePIAPortableTool/MakePIAPortableTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/src/tools/MakePIAPortableTool/MakePIAPortableTool.csproj -------------------------------------------------------------------------------- /test/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/.gitignore -------------------------------------------------------------------------------- /test/Android/Attach/Attach.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach.sln -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.NativeActivity/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.NativeActivity/android_native_app_glue.c -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.NativeActivity/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.NativeActivity/android_native_app_glue.h -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.Packaging/Attach.Packaging.androidproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.Packaging/Attach.Packaging.androidproj -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Attach/Attach/Attach.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Attach/Attach.Packaging/res/values/strings.xml -------------------------------------------------------------------------------- /test/Android/Attach/Glass2.TestCleanup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Glass2.TestCleanup.cmd -------------------------------------------------------------------------------- /test/Android/Attach/Glass2.TestSetup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/Glass2.TestSetup.cmd -------------------------------------------------------------------------------- /test/Android/Attach/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Attach/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Attach/TestScript.xml -------------------------------------------------------------------------------- /test/Android/BreakPointEnableAndDisable/BreakPointEnableAndDisable.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointEnableAndDisable/BreakPointEnableAndDisable.sln -------------------------------------------------------------------------------- /test/Android/BreakPointEnableAndDisable/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointEnableAndDisable/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/BreakPointEnableAndDisable/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointEnableAndDisable/TestScript.xml -------------------------------------------------------------------------------- /test/Android/BreakPointWhenTrueCondition/BreakPointWhenTrueCondition.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointWhenTrueCondition/BreakPointWhenTrueCondition.sln -------------------------------------------------------------------------------- /test/Android/BreakPointWhenTrueCondition/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointWhenTrueCondition/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/BreakPointWhenTrueCondition/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/BreakPointWhenTrueCondition/TestScript.xml -------------------------------------------------------------------------------- /test/Android/Breakpoint/Breakpoint.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/Breakpoint.sln -------------------------------------------------------------------------------- /test/Android/Breakpoint/Breakpoint/Breakpoint.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/Breakpoint/Breakpoint.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Breakpoint/Breakpoint/Breakpoint.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/Breakpoint/Breakpoint.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Breakpoint/Breakpoint/Breakpoint.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/Breakpoint/Breakpoint.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Breakpoint/Breakpoint/Breakpoint.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/Breakpoint/Breakpoint.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Breakpoint/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Breakpoint/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Breakpoint/TestScript.xml -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack.sln -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/Header1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/Header1.h -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/Header2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/Header2.h -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/Source1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/Source1.cpp -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/Source2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/Source2.cpp -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/CallStack/CallStack/CallStack.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/CallStack/CallStack.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/CallStack/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/CallStack/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/CallStack/TestScript.xml -------------------------------------------------------------------------------- /test/Android/Eval/Eval.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval.sln -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.NativeActivity/Eval.NativeActivity.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.NativeActivity/Eval.NativeActivity.vcxproj -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.NativeActivity/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.NativeActivity/android_native_app_glue.c -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.NativeActivity/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.NativeActivity/android_native_app_glue.h -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.Packaging/Eval.Packaging.androidproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.Packaging/Eval.Packaging.androidproj -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Eval/Eval/Eval.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/Eval/Eval.Packaging/res/values/strings.xml -------------------------------------------------------------------------------- /test/Android/Eval/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Eval/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Eval/TestScript.xml -------------------------------------------------------------------------------- /test/Android/EvalComplexExpression/EvalComplexExpression.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalComplexExpression/EvalComplexExpression.sln -------------------------------------------------------------------------------- /test/Android/EvalComplexExpression/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalComplexExpression/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/EvalComplexExpression/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalComplexExpression/TestScript.xml -------------------------------------------------------------------------------- /test/Android/EvalCompoundDataTypes/EvalCompoundDataTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalCompoundDataTypes/EvalCompoundDataTypes.sln -------------------------------------------------------------------------------- /test/Android/EvalCompoundDataTypes/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalCompoundDataTypes/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/EvalCompoundDataTypes/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalCompoundDataTypes/TestScript.xml -------------------------------------------------------------------------------- /test/Android/EvalErrors/EvalErrors.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/EvalErrors.sln -------------------------------------------------------------------------------- /test/Android/EvalErrors/EvalErrors/EvalErrors.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/EvalErrors/EvalErrors.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/EvalErrors/EvalErrors/EvalErrors.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/EvalErrors/EvalErrors.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/EvalErrors/EvalErrors/EvalErrors.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/EvalErrors/EvalErrors.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/EvalErrors/EvalErrors/EvalErrors.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/EvalErrors/EvalErrors.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/EvalErrors/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/EvalErrors/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalErrors/TestScript.xml -------------------------------------------------------------------------------- /test/Android/EvalPrimitiveTypes/EvalPrimitiveTypes.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalPrimitiveTypes/EvalPrimitiveTypes.sln -------------------------------------------------------------------------------- /test/Android/EvalPrimitiveTypes/EvalPrimitiveTypes/EvalPrimitiveTypes.NativeActivity/Header1.h: -------------------------------------------------------------------------------- 1 | #pragma once 2 | 3 | void Func(); -------------------------------------------------------------------------------- /test/Android/EvalPrimitiveTypes/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalPrimitiveTypes/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/EvalPrimitiveTypes/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/EvalPrimitiveTypes/TestScript.xml -------------------------------------------------------------------------------- /test/Android/Exceptions/Exceptions.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/Exceptions.sln -------------------------------------------------------------------------------- /test/Android/Exceptions/Exceptions/Exceptions.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/Exceptions/Exceptions.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Exceptions/Exceptions/Exceptions.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/Exceptions/Exceptions.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Exceptions/Exceptions/Exceptions.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/Exceptions/Exceptions.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Exceptions/Exceptions/Exceptions.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/Exceptions/Exceptions.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Exceptions/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Exceptions/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Exceptions/TestScript.xml -------------------------------------------------------------------------------- /test/Android/FunctionBreakPoints/FunctionBreakPoints.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/FunctionBreakPoints/FunctionBreakPoints.sln -------------------------------------------------------------------------------- /test/Android/FunctionBreakPoints/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/FunctionBreakPoints/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/FunctionBreakPoints/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/FunctionBreakPoints/TestScript.xml -------------------------------------------------------------------------------- /test/Android/Locals/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Locals/Locals.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals.sln -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.NativeActivity/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.NativeActivity/android_native_app_glue.c -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.NativeActivity/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.NativeActivity/android_native_app_glue.h -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.Packaging/Locals.Packaging.androidproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.Packaging/Locals.Packaging.androidproj -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Locals/Locals/Locals.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/Locals/Locals.Packaging/res/values/strings.xml -------------------------------------------------------------------------------- /test/Android/Locals/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Locals/TestScript.xml -------------------------------------------------------------------------------- /test/Android/MultiThreadingCallStack/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/MultiThreadingCallStack/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/MultiThreadingCallStack/MultiThreadingCallStack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/MultiThreadingCallStack/MultiThreadingCallStack.sln -------------------------------------------------------------------------------- /test/Android/MultiThreadingCallStack/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/MultiThreadingCallStack/TestScript.xml -------------------------------------------------------------------------------- /test/Android/PrepareEmulator.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/PrepareEmulator.ps1 -------------------------------------------------------------------------------- /test/Android/Sanity/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity.sln -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.NativeActivity/android_native_app_glue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.NativeActivity/android_native_app_glue.c -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.NativeActivity/android_native_app_glue.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.NativeActivity/android_native_app_glue.h -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.Packaging/Sanity.Packaging.androidproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.Packaging/Sanity.Packaging.androidproj -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Sanity/Sanity/Sanity.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/Sanity/Sanity.Packaging/res/values/strings.xml -------------------------------------------------------------------------------- /test/Android/Sanity/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Sanity/TestScript.xml -------------------------------------------------------------------------------- /test/Android/Stepping/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping.sln -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/Header1.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/Header1.h -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/Header2.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/Header2.h -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/Source1.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/Source1.cpp -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/Source2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/Source2.cpp -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/main.cpp -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.NativeActivity/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.NativeActivity/pch.h -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.Packaging/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.Packaging/AndroidManifest.xml -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.Packaging/build.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.Packaging/build.xml -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.Packaging/project.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.Packaging/project.properties -------------------------------------------------------------------------------- /test/Android/Stepping/Stepping/Stepping.Packaging/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/Stepping/Stepping.Packaging/res/values/strings.xml -------------------------------------------------------------------------------- /test/Android/Stepping/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/Stepping/TestScript.xml -------------------------------------------------------------------------------- /test/Android/SwitchFramesInCallStack/LaunchOptions.xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/SwitchFramesInCallStack/LaunchOptions.xml.template -------------------------------------------------------------------------------- /test/Android/SwitchFramesInCallStack/SwitchFramesInCallStack.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/SwitchFramesInCallStack/SwitchFramesInCallStack.sln -------------------------------------------------------------------------------- /test/Android/SwitchFramesInCallStack/TestScript.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/SwitchFramesInCallStack/TestScript.xml -------------------------------------------------------------------------------- /test/Android/androidtest.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/Android/androidtest.cmd -------------------------------------------------------------------------------- /test/CppTests/CppTestSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/CppTestSettingsProvider.cs -------------------------------------------------------------------------------- /test/CppTests/CppTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/CppTests.csproj -------------------------------------------------------------------------------- /test/CppTests/CppTests.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/CppTests.nuspec -------------------------------------------------------------------------------- /test/CppTests/OpenDebug/CrossPlatCpp/AttachCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/OpenDebug/CrossPlatCpp/AttachCommand.cs -------------------------------------------------------------------------------- /test/CppTests/OpenDebug/CrossPlatCpp/DebuggerRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/OpenDebug/CrossPlatCpp/DebuggerRunner.cs -------------------------------------------------------------------------------- /test/CppTests/OpenDebug/CrossPlatCpp/DebuggerRunnerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/OpenDebug/CrossPlatCpp/DebuggerRunnerExtensions.cs -------------------------------------------------------------------------------- /test/CppTests/OpenDebug/CrossPlatCpp/InspectorValueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/OpenDebug/CrossPlatCpp/InspectorValueExtensions.cs -------------------------------------------------------------------------------- /test/CppTests/OpenDebug/CrossPlatCpp/LaunchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/OpenDebug/CrossPlatCpp/LaunchCommand.cs -------------------------------------------------------------------------------- /test/CppTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/CppTests/TestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/TestBase.cs -------------------------------------------------------------------------------- /test/CppTests/TestConfigurations/config_gdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/TestConfigurations/config_gdb.xml -------------------------------------------------------------------------------- /test/CppTests/TestConfigurations/config_lldb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/TestConfigurations/config_lldb.xml -------------------------------------------------------------------------------- /test/CppTests/TestConfigurations/config_msys_gdb.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/TestConfigurations/config_msys_gdb.xml -------------------------------------------------------------------------------- /test/CppTests/TestConfigurations/config_vsdbg.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/TestConfigurations/config_vsdbg.xml -------------------------------------------------------------------------------- /test/CppTests/Tests/AttachTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/AttachTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/AutoCompleteTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/AutoCompleteTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/BreakpointTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/BreakpointTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/CoreDumpTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/CoreDumpTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/DebuggeeHelpers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/DebuggeeHelpers.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/DebuggeeMonikers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/DebuggeeMonikers.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/EnvironmentTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/EnvironmentTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/ExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/ExceptionTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/ExecutionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/ExecutionTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/ExpressionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/ExpressionTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/MacOSAppTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/MacOSAppTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/MemoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/MemoryTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/NatvisTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/NatvisTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/OptimizationTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/OptimizationTest.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/SampleTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/SampleTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/SharedLibTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/SharedLibTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/SinkHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/SinkHelper.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/SourceMappingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/SourceMappingTests.cs -------------------------------------------------------------------------------- /test/CppTests/Tests/ThreadingTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/Tests/ThreadingTests.cs -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/Shared/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/Shared/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/Shared/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/Shared/main.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/Shared/main.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/Shared/main.hpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/TestApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/TestApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/macOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/macOS/Info.plist -------------------------------------------------------------------------------- /test/CppTests/debuggees/MacOSApp/src/macOS/macOS.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/MacOSApp/src/macOS/macOS.entitlements -------------------------------------------------------------------------------- /test/CppTests/debuggees/exception/src/exception.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/exception/src/exception.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/exception/src/exception.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/exception/src/exception.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/exception/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/exception/src/main.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/hello/src/hello.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/hello/src/hello.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/arguments.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/arguments.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/arguments.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/arguments.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/calling.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/calling.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/calling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/calling.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/environment.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/environment.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/environment.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/expression.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/expression.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/expression.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/expression.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/feature.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/feature.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/feature.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/feature.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/global.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/main.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/main.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/main.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/nonterminating.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/nonterminating.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/nonterminating.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/nonterminating.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/threading.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/threading.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/kitchensink/src/threading.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/kitchensink/src/threading.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/BinarySearchTree.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/BinarySearchTree.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/SimpleArray.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/SimpleArray.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/SimpleClass.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/SimpleClass.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/SimpleLinkedList.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/SimpleLinkedList.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/SimpleMatrix.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/SimpleMatrix.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/SimpleVector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/SimpleVector.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/main.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/visualizer_files/Simple.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/visualizer_files/Simple.natvis -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/visualizer_files/Simple1.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/visualizer_files/Simple1.natvis -------------------------------------------------------------------------------- /test/CppTests/debuggees/natvis/src/visualizer_files/Simple2.natvis: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/natvis/src/visualizer_files/Simple2.natvis -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/foo.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/foo.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/foo.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/foo.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/mylib.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/mylib.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/mylib_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/mylib_base.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/optimization/src/source.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/optimization/src/source.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/global.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/global.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/myapp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/myapp.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/mylib.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/mylib.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/mylib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/mylib.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/mylib_base.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/mylib_base.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/sharedlib/src/sharedlib.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sharedlib/src/sharedlib.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/README.md -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/debuggees.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/debuggees.sln -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/exception/exception.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/exception/exception.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/exception/exception.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/exception/exception.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/hello/hello.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/hello/hello.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/hello/hello.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/hello/hello.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/kitchensink/kitchensink.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/kitchensink/kitchensink.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/kitchensink/kitchensink.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/kitchensink/kitchensink.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/natvis/natvis.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/natvis/natvis.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/natvis/natvis.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/natvis/natvis.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/optimization/optimization.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/optimization/optimization.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/optimization/optimization.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/optimization/optimization.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/sharedlib/sharedlib.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/sharedlib/sharedlib.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/sharedlib/sharedlib.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/sharedlib/sharedlib.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/sourcemap/sourcemap.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/sourcemap/sourcemap.vcxproj -------------------------------------------------------------------------------- /test/CppTests/debuggees/sln/sourcemap/sourcemap.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sln/sourcemap/sourcemap.vcxproj.filters -------------------------------------------------------------------------------- /test/CppTests/debuggees/sourcemap/src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sourcemap/src/main.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sourcemap/src/manager/manager.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sourcemap/src/manager/manager.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sourcemap/src/manager/manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sourcemap/src/manager/manager.h -------------------------------------------------------------------------------- /test/CppTests/debuggees/sourcemap/src/writer/writer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sourcemap/src/writer/writer.cpp -------------------------------------------------------------------------------- /test/CppTests/debuggees/sourcemap/src/writer/writer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/CppTests/debuggees/sourcemap/src/writer/writer.h -------------------------------------------------------------------------------- /test/DebugAdapterRunner/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/Command.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DARException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DARException.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DebugAdapterCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DebugAdapterCommand.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DebugAdapterResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DebugAdapterResponse.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DebugAdapterRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DebugAdapterRunner.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DebugAdapterRunner.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DebugAdapterRunner.csproj -------------------------------------------------------------------------------- /test/DebugAdapterRunner/DebugAdapterRunner.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/DebugAdapterRunner.nuspec -------------------------------------------------------------------------------- /test/DebugAdapterRunner/OpenDebug/DAPConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/OpenDebug/DAPConstants.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/OpenDebug/Messages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/OpenDebug/Messages.cs -------------------------------------------------------------------------------- /test/DebugAdapterRunner/Utils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebugAdapterRunner/Utils.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/CompilerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/CompilerSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/DebuggerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/DebuggerAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/DebuggerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/DebuggerSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/RequiresTestSettingsAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/RequiresTestSettingsAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/SupportedCompilerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/SupportedCompilerAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/SupportedDebuggerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/SupportedDebuggerAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/SupportedPlatformAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/SupportedPlatformAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/TestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/TestSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/TestSettingsHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/TestSettingsHelper.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/TestSettingsProviderAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/TestSettingsProviderAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Attribution/UnsupportedDebuggerAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Attribution/UnsupportedDebuggerAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/ClangCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/ClangCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/CompilerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/CompilerBase.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/CompilerOption.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/CompilerOption.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/CompilerOutputType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/CompilerOutputType.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/Debuggee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/Debuggee.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/GppCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/GppCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/GppStyleCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/GppStyleCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/ICompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/ICompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/IDebuggee.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/IDebuggee.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/VisualCPlusPlusCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/VisualCPlusPlusCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Compilation/XCodeRunCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Compilation/XCodeRunCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/DebuggerTesting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/DebuggerTesting.csproj -------------------------------------------------------------------------------- /test/DebuggerTesting/ICompilerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/ICompilerSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/IDebuggerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/IDebuggerSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/ILoggingComponent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/ILoggingComponent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/ITestSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/ITestSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/AsyncBreakCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/AsyncBreakCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/AttachCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/AttachCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Command.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Command.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/CompletionsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/CompletionsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/ConfigurationDoneCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/ConfigurationDoneCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/DataBreakpointInfoCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/DataBreakpointInfoCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/DisassembleCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/DisassembleCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/DisconnectCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/DisconnectCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/EvaluateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/EvaluateCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/InitializeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/InitializeCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/LaunchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/LaunchCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/ReadMemoryCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/ReadMemoryCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/CommandResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/CommandResponse.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/EvaluateResponseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/EvaluateResponseValue.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/ScopesResponseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/ScopesResponseValue.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/SetExpressionResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/SetExpressionResponse.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/SetVariableResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/SetVariableResponse.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/Source.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/Source.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/SourceResponseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/SourceResponseValue.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/Responses/ThreadsResponseValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/Responses/ThreadsResponseValue.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/ScopesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/ScopesCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetBreakpointsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetBreakpointsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetDataBreakpointsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetDataBreakpointsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetExceptionBreakpointsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetExceptionBreakpointsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetExpressionCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetExpressionCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetFunctionBreakpointsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetFunctionBreakpointsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SetVariableCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SetVariableCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/SourceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/SourceCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/StackTraceCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/StackTraceCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/StepCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/StepCommands.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/ThreadsCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/ThreadsCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Commands/VariablesCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Commands/VariablesCommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/BreakpointEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/BreakpointEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/Event.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/ExitedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/ExitedEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/OutputEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/OutputEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/StoppedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/StoppedEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Events/TerminatedEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Events/TerminatedEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/DebuggeeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/DebuggeeExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/DebuggerRunnerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/DebuggerRunnerExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/FrameInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/FrameInspector.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/IInspectors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/IInspectors.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/ThreadInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/ThreadInspector.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Extensions/VariableInspector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Extensions/VariableInspector.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/ICommand.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/IDebuggerRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/IDebuggerRunner.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/IEvent.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/IResponse.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/Response.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/Response.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/RunBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/RunBuilder.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/OpenDebug/RunnerException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/OpenDebug/RunnerException.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Ordering/DependencyOrderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Ordering/DependencyOrderer.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Ordering/DependencyTestOrderer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Ordering/DependencyTestOrderer.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Ordering/DependsOnTestAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Ordering/DependsOnTestAttribute.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Settings/DiagnosticsSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Settings/DiagnosticsSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Settings/PathSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Settings/PathSettings.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/SupportedArchitecture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/SupportedArchitecture.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/SupportedCompiler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/SupportedCompiler.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/SupportedDebugger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/SupportedDebugger.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/SupportedPlatform.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/SupportedPlatform.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/TestFramework/ITestSettingsProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/TestFramework/ITestSettingsProvider.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/TestFramework/TestSettingsDataDiscoverer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/TestFramework/TestSettingsDataDiscoverer.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Tests/AttributionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Tests/AttributionTests.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/ArgumentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/ArgumentBuilder.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/AssemblyExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/AssemblyExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/DisposableHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/DisposableHelper.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/DisposableObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/DisposableObject.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/EnumerableExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/FileUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/FileUtilities.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/HashUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/HashUtilities.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/Parameter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/Parameter.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/PlatformUtilities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/PlatformUtilities.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/ProcessHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/ProcessHelper.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/StringExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/SupportedArchitectureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/SupportedArchitectureExtensions.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/UDebug.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/UDebug.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/UnixNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/UnixNativeMethods.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/Windows/WindowsProcessNativeMethods.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/Windows/WindowsProcessNativeMethods.cs -------------------------------------------------------------------------------- /test/DebuggerTesting/Utilities/XmlHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/DebuggerTesting/Utilities/XmlHelper.cs -------------------------------------------------------------------------------- /test/GlassTestPackage-EULA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/GlassTestPackage-EULA.txt -------------------------------------------------------------------------------- /test/LaunchOptionsGen/LaunchOptionsGen.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/LaunchOptionsGen/LaunchOptionsGen.cs -------------------------------------------------------------------------------- /test/LaunchOptionsGen/LaunchOptionsGen.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/LaunchOptionsGen/LaunchOptionsGen.csproj -------------------------------------------------------------------------------- /test/MIEngine.regdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/MIEngine.regdef -------------------------------------------------------------------------------- /test/RegisterMIEngine.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/test/RegisterMIEngine.cmd -------------------------------------------------------------------------------- /tools/DownloadLldbMI.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/DownloadLldbMI.sh -------------------------------------------------------------------------------- /tools/NuGet/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/NuGet/NuGet.exe -------------------------------------------------------------------------------- /tools/Setup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/Setup.cmd -------------------------------------------------------------------------------- /tools/Setup.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/Setup.csx -------------------------------------------------------------------------------- /tools/Setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/Setup.sh -------------------------------------------------------------------------------- /tools/VS.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/VS.list -------------------------------------------------------------------------------- /tools/VSCode.list: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/VSCode.list -------------------------------------------------------------------------------- /tools/iOS/CertTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/CertTool/App.config -------------------------------------------------------------------------------- /tools/iOS/CertTool/CertTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/CertTool/CertTool.cs -------------------------------------------------------------------------------- /tools/iOS/CertTool/CertTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/CertTool/CertTool.csproj -------------------------------------------------------------------------------- /tools/iOS/CertTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/CertTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/iOS/CertTool/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/CertTool/README.txt -------------------------------------------------------------------------------- /tools/iOS/DebugListenerTool/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/DebugListenerTool/App.config -------------------------------------------------------------------------------- /tools/iOS/DebugListenerTool/DebugListenerTool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/DebugListenerTool/DebugListenerTool.cs -------------------------------------------------------------------------------- /tools/iOS/DebugListenerTool/DebugListenerTool.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/DebugListenerTool/DebugListenerTool.csproj -------------------------------------------------------------------------------- /tools/iOS/DebugListenerTool/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/DebugListenerTool/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /tools/iOS/DebugListenerTool/README.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/MIEngine/HEAD/tools/iOS/DebugListenerTool/README.txt --------------------------------------------------------------------------------