├── .github └── workflows │ └── main.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md └── src └── DotNetPad ├── .editorconfig ├── Changelog.txt ├── Directory.Build.props ├── Directory.Packages.props ├── DotNetPad.Applications ├── ApplicationsModule.cs ├── CodeAnalysis │ ├── BuildResult.cs │ ├── ClassificationTags.cs │ ├── FileBasedXmlDocumentationProvider.cs │ ├── ScriptingWorkspace.cs │ └── TemplateCode.cs ├── Controllers │ ├── FileController.cs │ ├── ModuleController.cs │ └── WorkspaceController.cs ├── DataModels │ └── DocumentDataModel.cs ├── DotNetPad.Applications.csproj ├── GlobalSuppressions.cs ├── Host │ ├── DelegateTextWriter.cs │ └── ScriptHost.cs ├── Properties │ ├── AppSettings.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Samples │ ├── AutoPropertyInitializers.cs │ ├── AutoPropertyInitializers.vb │ ├── LocalFunctions.cs │ ├── NameOfOperator.cs │ ├── NameOfOperator.vb │ ├── NullConditionalOperator.cs │ ├── NullConditionalOperator.vb │ ├── NullableReferenceTypes.cs │ ├── OutVariables.cs │ ├── PatternMatching.cs │ ├── Record.cs │ ├── StringInterpolation.cs │ ├── StringInterpolation.vb │ ├── SwitchExpression.cs │ ├── Tuples.cs │ └── Tuples.vb ├── Services │ ├── CSharpSampleService.cs │ ├── CodeEditorService.cs │ ├── FileService.cs │ ├── IClipboardService.cs │ ├── ICodeEditorService.cs │ ├── IDocumentService.cs │ ├── IEnvironmentService.cs │ ├── IFileService.cs │ ├── IShellService.cs │ ├── IWorkspaceService.cs │ ├── ShellService.cs │ └── VisualBasicSampleService.cs ├── ViewModels │ ├── CodeEditorViewModel.cs │ ├── ErrorListViewModel.cs │ ├── InfoViewModel.cs │ ├── OutputViewModel.cs │ ├── SaveChangesViewModel.cs │ └── ShellViewModel.cs └── Views │ ├── ICodeEditorView.cs │ ├── IErrorListView.cs │ ├── IInfoView.cs │ ├── IOutputView.cs │ ├── ISaveChangesView.cs │ └── IShellView.cs ├── DotNetPad.Domain ├── DocumentContent.cs ├── DocumentFile.cs ├── DocumentType.cs ├── DotNetPad.Domain.csproj ├── ErrorListItem.cs ├── ErrorSeverity.cs ├── GlobalSuppressions.cs ├── Log.cs ├── PerformanceTrace.cs └── TaskUtility.cs ├── DotNetPad.Packaging ├── DotNetPad.Packaging.wapproj ├── Images │ ├── LargeTile.scale-100.png │ ├── LargeTile.scale-125.png │ ├── LargeTile.scale-150.png │ ├── LargeTile.scale-200.png │ ├── LargeTile.scale-400.png │ ├── LockScreenLogo.scale-200.png │ ├── SmallTile.scale-100.png │ ├── SmallTile.scale-125.png │ ├── SmallTile.scale-150.png │ ├── SmallTile.scale-200.png │ ├── SmallTile.scale-400.png │ ├── SplashScreen.scale-100.png │ ├── SplashScreen.scale-125.png │ ├── SplashScreen.scale-150.png │ ├── SplashScreen.scale-200.png │ ├── SplashScreen.scale-400.png │ ├── Square150x150Logo.scale-100.png │ ├── Square150x150Logo.scale-125.png │ ├── Square150x150Logo.scale-150.png │ ├── Square150x150Logo.scale-200.png │ ├── Square150x150Logo.scale-400.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-16.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-24.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-256.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-32.png │ ├── Square44x44Logo.altform-lightunplated_targetsize-48.png │ ├── Square44x44Logo.altform-unplated_targetsize-16.png │ ├── Square44x44Logo.altform-unplated_targetsize-256.png │ ├── Square44x44Logo.altform-unplated_targetsize-32.png │ ├── Square44x44Logo.altform-unplated_targetsize-48.png │ ├── Square44x44Logo.scale-100.png │ ├── Square44x44Logo.scale-125.png │ ├── Square44x44Logo.scale-150.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.scale-400.png │ ├── Square44x44Logo.targetsize-16.png │ ├── Square44x44Logo.targetsize-24.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── Square44x44Logo.targetsize-256.png │ ├── Square44x44Logo.targetsize-32.png │ ├── Square44x44Logo.targetsize-48.png │ ├── StoreLogo.backup.png │ ├── StoreLogo.scale-100.png │ ├── StoreLogo.scale-125.png │ ├── StoreLogo.scale-150.png │ ├── StoreLogo.scale-200.png │ ├── StoreLogo.scale-400.png │ ├── Wide310x150Logo.scale-100.png │ ├── Wide310x150Logo.scale-125.png │ ├── Wide310x150Logo.scale-150.png │ ├── Wide310x150Logo.scale-200.png │ └── Wide310x150Logo.scale-400.png ├── Package.StoreAssociation.xml └── Package.appxmanifest ├── DotNetPad.Presentation ├── App.xaml ├── App.xaml.cs ├── Controls │ ├── CodeCompletionData.cs │ ├── CodeCompletionDescription.cs │ ├── CodeEditor.cs │ ├── CodeHighlightColors.cs │ ├── CodeHighlighter.cs │ ├── CodeHighlightingColorizer.cs │ ├── ErrorTextMarker.cs │ ├── ErrorTextMarkerService.cs │ ├── Flyout.cs │ ├── HorizontalFlyoutAlignment.cs │ └── IconInfo.cs ├── Converters │ ├── ErrorSeverityToImageConverter.cs │ ├── IndexToNumberConverter.cs │ ├── TabFileNameConverter.cs │ ├── TaggedTextListConverter.cs │ └── WindowTitleConverter.cs ├── DesignData │ ├── MockDocumentService.cs │ ├── MockFileService.cs │ ├── MockShellService.cs │ ├── MockView.cs │ ├── SampleCodeEditorViewModel.cs │ ├── SampleErrorListViewModel.cs │ ├── SampleInfoViewModel.cs │ ├── SampleOutputViewModel.cs │ ├── SampleSaveChangesViewModel.cs │ └── SampleShellViewModel.cs ├── DotNetPad.Presentation.csproj ├── GlobalSuppressions.cs ├── PresentationModule.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ └── Resources.resx ├── Resources │ ├── BrushResources.xaml │ ├── ButtonResources.xaml │ ├── CodeEditorResources.xaml │ ├── ControlResources.xaml │ ├── ImageResources.xaml │ └── Images │ │ └── DotNetPad.ico ├── Services │ ├── ClipboardService.cs │ └── EnvironmentService.cs └── Views │ ├── CodeEditorView.xaml │ ├── CodeEditorView.xaml.cs │ ├── ErrorListView.xaml │ ├── ErrorListView.xaml.cs │ ├── InfoWindow.xaml │ ├── InfoWindow.xaml.cs │ ├── OutputView.xaml │ ├── OutputView.xaml.cs │ ├── SaveChangesWindow.xaml │ ├── SaveChangesWindow.xaml.cs │ ├── ShellWindow.xaml │ └── ShellWindow.xaml.cs └── DotNetPad.sln /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/.gitignore -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/README.md -------------------------------------------------------------------------------- /src/DotNetPad/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/.editorconfig -------------------------------------------------------------------------------- /src/DotNetPad/Changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/Changelog.txt -------------------------------------------------------------------------------- /src/DotNetPad/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/Directory.Build.props -------------------------------------------------------------------------------- /src/DotNetPad/Directory.Packages.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/Directory.Packages.props -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ApplicationsModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ApplicationsModule.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/CodeAnalysis/BuildResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/CodeAnalysis/BuildResult.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/CodeAnalysis/ClassificationTags.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/CodeAnalysis/ClassificationTags.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/CodeAnalysis/FileBasedXmlDocumentationProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/CodeAnalysis/FileBasedXmlDocumentationProvider.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/CodeAnalysis/ScriptingWorkspace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/CodeAnalysis/ScriptingWorkspace.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/CodeAnalysis/TemplateCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/CodeAnalysis/TemplateCode.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Controllers/FileController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Controllers/FileController.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Controllers/ModuleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Controllers/ModuleController.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Controllers/WorkspaceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Controllers/WorkspaceController.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/DataModels/DocumentDataModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/DataModels/DocumentDataModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/DotNetPad.Applications.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/DotNetPad.Applications.csproj -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Host/DelegateTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Host/DelegateTextWriter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Host/ScriptHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Host/ScriptHost.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Properties/AppSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Properties/AppSettings.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Properties/Resources.resx -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/AutoPropertyInitializers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/AutoPropertyInitializers.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/AutoPropertyInitializers.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/AutoPropertyInitializers.vb -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/LocalFunctions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/LocalFunctions.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/NameOfOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/NameOfOperator.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/NameOfOperator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/NameOfOperator.vb -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/NullConditionalOperator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/NullConditionalOperator.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/NullConditionalOperator.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/NullConditionalOperator.vb -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/NullableReferenceTypes.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/NullableReferenceTypes.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/OutVariables.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/OutVariables.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/PatternMatching.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/PatternMatching.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/Record.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/Record.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/StringInterpolation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/StringInterpolation.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/StringInterpolation.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/StringInterpolation.vb -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/SwitchExpression.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/SwitchExpression.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/Tuples.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/Tuples.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Samples/Tuples.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Samples/Tuples.vb -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/CSharpSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/CSharpSampleService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/CodeEditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/CodeEditorService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/FileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/FileService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IClipboardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IClipboardService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/ICodeEditorService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/ICodeEditorService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IDocumentService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IEnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IEnvironmentService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IFileService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IShellService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/IWorkspaceService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/IWorkspaceService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/ShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/ShellService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Services/VisualBasicSampleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Services/VisualBasicSampleService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/CodeEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/CodeEditorViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/ErrorListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/ErrorListViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/InfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/InfoViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/OutputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/OutputViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/SaveChangesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/SaveChangesViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/ViewModels/ShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/ViewModels/ShellViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/ICodeEditorView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/ICodeEditorView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/IErrorListView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/IErrorListView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/IInfoView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/IInfoView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/IOutputView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/IOutputView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/ISaveChangesView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/ISaveChangesView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Applications/Views/IShellView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Applications/Views/IShellView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/DocumentContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/DocumentContent.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/DocumentFile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/DocumentFile.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/DocumentType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/DocumentType.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/DotNetPad.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/DotNetPad.Domain.csproj -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/ErrorListItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/ErrorListItem.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/ErrorSeverity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/ErrorSeverity.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/Log.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/Log.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/PerformanceTrace.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/PerformanceTrace.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Domain/TaskUtility.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Domain/TaskUtility.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/DotNetPad.Packaging.wapproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/DotNetPad.Packaging.wapproj -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LargeTile.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SmallTile.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/SplashScreen.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square150x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-16.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-24.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-256.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-32.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-lightunplated_targetsize-48.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-16.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-256.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-32.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.altform-unplated_targetsize-48.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-16.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-24.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-256.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-32.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Square44x44Logo.targetsize-48.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.backup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.backup.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/StoreLogo.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-100.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-100.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-125.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-125.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-150.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-400.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Images/Wide310x150Logo.scale-400.png -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Package.StoreAssociation.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Package.StoreAssociation.xml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Packaging/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Packaging/Package.appxmanifest -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/App.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/App.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeCompletionData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeCompletionData.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeCompletionDescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeCompletionDescription.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeEditor.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlightColors.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlightColors.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlighter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlighter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlightingColorizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/CodeHighlightingColorizer.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/ErrorTextMarker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/ErrorTextMarker.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/ErrorTextMarkerService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/ErrorTextMarkerService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/Flyout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/Flyout.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/HorizontalFlyoutAlignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/HorizontalFlyoutAlignment.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Controls/IconInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Controls/IconInfo.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Converters/ErrorSeverityToImageConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Converters/ErrorSeverityToImageConverter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Converters/IndexToNumberConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Converters/IndexToNumberConverter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Converters/TabFileNameConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Converters/TabFileNameConverter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Converters/TaggedTextListConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Converters/TaggedTextListConverter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Converters/WindowTitleConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Converters/WindowTitleConverter.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/MockDocumentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/MockDocumentService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/MockFileService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/MockFileService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/MockShellService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/MockShellService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/MockView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/MockView.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleCodeEditorViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleCodeEditorViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleErrorListViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleErrorListViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleInfoViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleInfoViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleOutputViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleOutputViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleSaveChangesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleSaveChangesViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DesignData/SampleShellViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DesignData/SampleShellViewModel.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/DotNetPad.Presentation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/DotNetPad.Presentation.csproj -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/GlobalSuppressions.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/PresentationModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/PresentationModule.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Properties/Resources.resx -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/BrushResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/BrushResources.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/ButtonResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/ButtonResources.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/CodeEditorResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/CodeEditorResources.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/ControlResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/ControlResources.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/ImageResources.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/ImageResources.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Resources/Images/DotNetPad.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Resources/Images/DotNetPad.ico -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Services/ClipboardService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Services/ClipboardService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Services/EnvironmentService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Services/EnvironmentService.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/CodeEditorView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/CodeEditorView.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/CodeEditorView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/CodeEditorView.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/ErrorListView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/ErrorListView.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/ErrorListView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/ErrorListView.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/InfoWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/InfoWindow.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/InfoWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/InfoWindow.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/OutputView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/OutputView.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/OutputView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/OutputView.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/SaveChangesWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/SaveChangesWindow.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/SaveChangesWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/SaveChangesWindow.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/ShellWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/ShellWindow.xaml -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.Presentation/Views/ShellWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.Presentation/Views/ShellWindow.xaml.cs -------------------------------------------------------------------------------- /src/DotNetPad/DotNetPad.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jbe2277/dotnetpad/HEAD/src/DotNetPad/DotNetPad.sln --------------------------------------------------------------------------------