├── .gitignore ├── .nuget ├── NuGet.Config ├── NuGet.exe └── NuGet.targets ├── CodeOwls.SeeShell.sln ├── CodeOwls.SeeShell ├── .nuget │ ├── NuGet.Config │ ├── NuGet.exe │ └── NuGet.targets ├── CodeOwls.AssemblyInfo.cs ├── CodeOwls.PowerShell.AssemblyInfo.cs ├── CodeOwls.SeeShell.AssemblyInfo.cs ├── CodeOwls.SeeShell.Common.Tests │ ├── ChartSeriesAxisSelectorTests.cs │ ├── CodeOwls.SeeShell.Common.Tests.csproj │ ├── DataSourceViewModelTests.cs │ ├── ImmediateTriggerTests.cs │ ├── IntervalTriggerTests.cs │ ├── ManualTriggerTests.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RangeDescriptorFactoryTests.cs │ ├── SolidPSObjectTests.cs │ ├── app.config │ └── packages.config ├── CodeOwls.SeeShell.Common │ ├── Attributes │ │ ├── DriveInfoAttribute.cs │ │ ├── PathArgumentTransformationAttribute.cs │ │ ├── PropertyNameToGroupByArgumentTransformationAttribute.cs │ │ ├── PropertyNameToSelectPropertyArgumentTransformationAttribute.cs │ │ ├── ScriptBlockDataSourceArgumentTransformationAttribute.cs │ │ ├── ScriptBlockDynamicPropertyArgumentTransformationAttribute.cs │ │ ├── ScriptBlockToGroupByArgumentTransformationAttribute.cs │ │ ├── ScriptTransformationAttribute.cs │ │ ├── TimeSpanArgumentTransformationAttribute.cs │ │ └── ViewModelDataTemplateAttribute.cs │ ├── Charts │ │ ├── AxisLocation.cs │ │ ├── ChartAxisType.cs │ │ ├── ChartSeriesType.cs │ │ └── ChartSeriesTypeExtensions.cs │ ├── CodeOwls.SeeShell.Common.csproj │ ├── DataSources │ │ ├── AcrossByPowerShellDataSource.cs │ │ ├── CompositeDataSource.cs │ │ ├── DataSourceManager.cs │ │ ├── DefaultRunspaceManager.cs │ │ ├── DynamicMemberFactory.cs │ │ ├── DynamicMemberSpecification.cs │ │ ├── DynamicPropertyScaleDescriptor.cs │ │ ├── IPowerShellDataSource.cs │ │ ├── IRangeDescriptor.cs │ │ ├── IScaleDescriptor.cs │ │ ├── IScaleDescriptorAssignment.cs │ │ ├── NullPowerShellDataSource.cs │ │ ├── PSObjectSolidifier.cs │ │ ├── PowerShellDataSource.cs │ │ ├── RangeDescriptor.cs │ │ ├── RangeDescriptorFactory.cs │ │ ├── ScaleDescriptor.cs │ │ ├── ScaleDescriptorAssignmentCollection.cs │ │ ├── SolidPSObjectBase.cs │ │ └── StringExtensions.cs │ ├── Exceptions │ │ └── InvalidChartAxisTypeException.cs │ ├── LoggingManager.cs │ ├── Nouns.cs │ ├── ObjectExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderNounAttribute.cs │ ├── Providers │ │ └── IDriveOf.cs │ ├── Singleton.cs │ ├── Support │ │ └── IssueReportingClient.cs │ ├── Triggers │ │ ├── ITrigger.cs │ │ ├── ImmediateTrigger.cs │ │ ├── IntervalTrigger.cs │ │ └── ManualTrigger.cs │ ├── TypeExtensions.cs │ ├── Utility │ │ ├── ColorManager.cs │ │ ├── DispatchingCollectionDecorator.cs │ │ ├── EnumerableExtensions.cs │ │ ├── RemainingArguments.cs │ │ └── VisualImageExporter.cs │ ├── ViewModels │ │ ├── AggragatingDataViewModelBase.cs │ │ ├── Charts │ │ │ ├── ChartAxisViewModel.cs │ │ │ ├── ChartSeriesViewModel.cs │ │ │ └── ChartViewModel.cs │ │ ├── DashboardPaneViewModel.cs │ │ ├── DataViewModelBase.cs │ │ ├── DelegateCommand.cs │ │ ├── Grids │ │ │ └── GridViewModel.cs │ │ ├── SingleDataSourceViewModelBase.cs │ │ ├── ViewModelBase.cs │ │ ├── VisualizationState.cs │ │ ├── VisualizationViewModel.cs │ │ └── VisualizationWindowViewModel.cs │ └── packages.config ├── CodeOwls.SeeShell.PowerShell.Cmdlets │ ├── CodeOwls.SeeShell.PowerShell.Cmdlets.csproj │ ├── ConvertToImageCmdlet.cs │ ├── ConvertToSolidObjectCmdlet.cs │ ├── ExportImageCmdlet.cs │ ├── IDynamicMemberSpecificationViewModelAdapter.cs │ ├── MultiSeriesDynamicMemberSpecificationAdapter.cs │ ├── OneDimensionalOutputCmdletBase.cs │ ├── OutChartCmdlet.cs │ ├── OutputCmdletBase.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SendBugReportCmdlet.cs │ ├── SingleSeriesDynamicMemberSpecificationAdapter.cs │ ├── TwoDimensionalOutputCmdletBase.cs │ ├── ViewCmdletBase.cs │ ├── app.config │ └── packages.config ├── CodeOwls.SeeShell.PowerShell.Providers │ ├── Charts │ │ ├── ChartNodeFactory.cs │ │ ├── ChartProvider.cs │ │ └── ChartRootNodeFactory.cs │ ├── CodeOwls.SeeShell.PowerShell.Providers.csproj │ ├── CollectionViewModelNodeFactory.cs │ ├── ContainedViewModelNodeFactory.cs │ ├── ContainerPathNode.cs │ ├── ContainerViewModelNodeFactory.cs │ ├── DataSources │ │ ├── DataSourceDrive.cs │ │ ├── DataSourceNewItemParameters.cs │ │ ├── DataSourceNodeFactory.cs │ │ ├── DataSourcePathNodeProcessor.cs │ │ ├── DataSourceProvider.cs │ │ ├── DataSourceRootNodeFactory.cs │ │ ├── RangeNodeFactory.cs │ │ └── ScaleAssignmentNodeFactory.cs │ ├── Drive.cs │ ├── ObservableCollectionViewModelNodeFactory.cs │ ├── PathNodeProcessor.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Provider.cs │ ├── ProviderNames.cs │ ├── RootNodeFactory.cs │ ├── ShellContainer.cs │ ├── Triggers │ │ ├── TriggerDrive.cs │ │ ├── TriggerNewItemParameters.cs │ │ ├── TriggerNodeFactory.cs │ │ ├── TriggerPathNodeProcessor.cs │ │ ├── TriggerProvider.cs │ │ └── TriggerRootNodeFactory.cs │ ├── ViewModelNodeFactory.cs │ ├── app.config │ └── packages.config ├── CodeOwls.SeeShell.Providers.Tests │ ├── ChartProviderTests.cs │ ├── CodeOwls.SeeShell.Providers.Tests.csproj │ ├── DataSourceProviderTests.cs │ ├── Host.cs │ ├── HostUI.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ProviderTestsBase.cs │ ├── TriggerProviderTests.cs │ ├── app.config │ └── packages.config └── CodeOwls.SeeShell.Visualizations │ ├── CodeOwls.SeeShell.Visualizations.csproj │ ├── Dashboard │ └── Manager.cs │ ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings │ ├── Resources │ ├── Software and computing_Alerts_24.png │ ├── Software and computing_Alerts_Disabled_24.png │ ├── Software and computing_Alerts_Hovered_24.png │ ├── Web commerce_Download_24.png │ ├── Web commerce_Download_Disabled_24.png │ ├── Web commerce_Download_Hovered_24.png │ └── error.png │ ├── ViewModels │ ├── BooleanToOrientationConverter.cs │ ├── BooleanToVisibilityConverter.cs │ ├── CategoryDateTimeAxis.cs │ ├── OxyPlotVisualizationViewModel.cs │ └── OxyPlotVisualizationViewModelAdapter.cs │ ├── Views │ ├── VisualizationControl.xaml │ ├── VisualizationControl.xaml.cs │ ├── VisualizationStateSummaryView.xaml │ ├── VisualizationStateSummaryView.xaml.cs │ ├── VisualizationView.xaml │ ├── VisualizationView.xaml.cs │ ├── VisualizationWindow.xaml │ └── VisualizationWindow.xaml.cs │ ├── app.config │ └── packages.config ├── LICENSE ├── Modules └── SeeShell │ ├── SeeShell.psd1 │ └── en-US │ ├── CodeOwls.SeeShell.PowerShell.Cmdlets.dll-help.xml │ ├── about_SeeShell.help.txt │ ├── about_SeeShell_Charts.help.txt │ ├── about_SeeShell_DataSources.help.txt │ ├── about_SeeShell_Drives.help.txt │ ├── about_SeeShell_License.help.txt │ ├── about_SeeShell_Version.help.txt │ └── cmdlets │ ├── Install-SeeShellLicense.help.xml │ ├── Out-Chart.help.xml │ ├── Out-Grid.help.xml │ ├── Out-Timeline.help.xml │ ├── Send-SeeShellIncident.help.xml │ ├── Test-SeeShellLicense.help.xml │ └── commonparameters.xml ├── README.md ├── Resources ├── error.png ├── icons.xcf └── warning.png ├── default.ps1 ├── lib └── System.Management.Automation.dll └── psake ├── commontask.ps1 └── psake.psm1 /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/.gitignore -------------------------------------------------------------------------------- /.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/.nuget/NuGet.Config -------------------------------------------------------------------------------- /.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/.nuget/NuGet.exe -------------------------------------------------------------------------------- /.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/.nuget/NuGet.targets -------------------------------------------------------------------------------- /CodeOwls.SeeShell.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell.sln -------------------------------------------------------------------------------- /CodeOwls.SeeShell/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/.nuget/NuGet.Config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/.nuget/NuGet.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/.nuget/NuGet.exe -------------------------------------------------------------------------------- /CodeOwls.SeeShell/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/.nuget/NuGet.targets -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.PowerShell.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.PowerShell.AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ChartSeriesAxisSelectorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ChartSeriesAxisSelectorTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/CodeOwls.SeeShell.Common.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/CodeOwls.SeeShell.Common.Tests.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/DataSourceViewModelTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/DataSourceViewModelTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ImmediateTriggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ImmediateTriggerTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/IntervalTriggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/IntervalTriggerTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ManualTriggerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/ManualTriggerTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/RangeDescriptorFactoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/RangeDescriptorFactoryTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/SolidPSObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/SolidPSObjectTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/app.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common.Tests/packages.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/DriveInfoAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/DriveInfoAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PathArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PathArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PropertyNameToGroupByArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PropertyNameToGroupByArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PropertyNameToSelectPropertyArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/PropertyNameToSelectPropertyArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockDataSourceArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockDataSourceArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockDynamicPropertyArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockDynamicPropertyArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockToGroupByArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptBlockToGroupByArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ScriptTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/TimeSpanArgumentTransformationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/TimeSpanArgumentTransformationAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ViewModelDataTemplateAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Attributes/ViewModelDataTemplateAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/AxisLocation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/AxisLocation.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartAxisType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartAxisType.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartSeriesType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartSeriesType.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartSeriesTypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Charts/ChartSeriesTypeExtensions.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/CodeOwls.SeeShell.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/CodeOwls.SeeShell.Common.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/AcrossByPowerShellDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/AcrossByPowerShellDataSource.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/CompositeDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/CompositeDataSource.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DataSourceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DataSourceManager.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DefaultRunspaceManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DefaultRunspaceManager.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicMemberFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicMemberFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicMemberSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicMemberSpecification.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicPropertyScaleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/DynamicPropertyScaleDescriptor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IPowerShellDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IPowerShellDataSource.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IRangeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IRangeDescriptor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IScaleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IScaleDescriptor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IScaleDescriptorAssignment.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/IScaleDescriptorAssignment.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/NullPowerShellDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/NullPowerShellDataSource.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/PSObjectSolidifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/PSObjectSolidifier.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/PowerShellDataSource.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/PowerShellDataSource.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/RangeDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/RangeDescriptor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/RangeDescriptorFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/RangeDescriptorFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/ScaleDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/ScaleDescriptor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/ScaleDescriptorAssignmentCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/ScaleDescriptorAssignmentCollection.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/SolidPSObjectBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/SolidPSObjectBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/DataSources/StringExtensions.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Exceptions/InvalidChartAxisTypeException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Exceptions/InvalidChartAxisTypeException.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/LoggingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/LoggingManager.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Nouns.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Nouns.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ObjectExtensions.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ProviderNounAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ProviderNounAttribute.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Providers/IDriveOf.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Providers/IDriveOf.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Singleton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Singleton.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Support/IssueReportingClient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Support/IssueReportingClient.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ITrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ITrigger.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ImmediateTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ImmediateTrigger.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/IntervalTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/IntervalTrigger.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ManualTrigger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Triggers/ManualTrigger.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/TypeExtensions.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/ColorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/ColorManager.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/DispatchingCollectionDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/DispatchingCollectionDecorator.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/EnumerableExtensions.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/RemainingArguments.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/RemainingArguments.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/VisualImageExporter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/Utility/VisualImageExporter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/AggragatingDataViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/AggragatingDataViewModelBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartAxisViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartAxisViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartSeriesViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartSeriesViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Charts/ChartViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DashboardPaneViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DashboardPaneViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DataViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DataViewModelBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DelegateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/DelegateCommand.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Grids/GridViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/Grids/GridViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/SingleDataSourceViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/SingleDataSourceViewModelBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/ViewModelBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/ViewModelBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationState.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationWindowViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/ViewModels/VisualizationWindowViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Common/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Common/packages.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/CodeOwls.SeeShell.PowerShell.Cmdlets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/CodeOwls.SeeShell.PowerShell.Cmdlets.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ConvertToImageCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ConvertToImageCmdlet.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ConvertToSolidObjectCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ConvertToSolidObjectCmdlet.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ExportImageCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ExportImageCmdlet.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/IDynamicMemberSpecificationViewModelAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/IDynamicMemberSpecificationViewModelAdapter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/MultiSeriesDynamicMemberSpecificationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/MultiSeriesDynamicMemberSpecificationAdapter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OneDimensionalOutputCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OneDimensionalOutputCmdletBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OutChartCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OutChartCmdlet.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OutputCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/OutputCmdletBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/SendBugReportCmdlet.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/SendBugReportCmdlet.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/SingleSeriesDynamicMemberSpecificationAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/SingleSeriesDynamicMemberSpecificationAdapter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/TwoDimensionalOutputCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/TwoDimensionalOutputCmdletBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ViewCmdletBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/ViewCmdletBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/app.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Cmdlets/packages.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartProvider.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartRootNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Charts/ChartRootNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/CodeOwls.SeeShell.PowerShell.Providers.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/CodeOwls.SeeShell.PowerShell.Providers.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/CollectionViewModelNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/CollectionViewModelNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainedViewModelNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainedViewModelNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainerPathNode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainerPathNode.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainerViewModelNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ContainerViewModelNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceDrive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceDrive.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceNewItemParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceNewItemParameters.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourcePathNodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourcePathNodeProcessor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceProvider.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceRootNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/DataSourceRootNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/RangeNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/RangeNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/ScaleAssignmentNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/DataSources/ScaleAssignmentNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Drive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Drive.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ObservableCollectionViewModelNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ObservableCollectionViewModelNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/PathNodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/PathNodeProcessor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Provider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Provider.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ProviderNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ProviderNames.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/RootNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/RootNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ShellContainer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ShellContainer.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerDrive.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerDrive.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerNewItemParameters.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerNewItemParameters.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerPathNodeProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerPathNodeProcessor.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerProvider.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerRootNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/Triggers/TriggerRootNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ViewModelNodeFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/ViewModelNodeFactory.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/app.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.PowerShell.Providers/packages.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/ChartProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/ChartProviderTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/CodeOwls.SeeShell.Providers.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/CodeOwls.SeeShell.Providers.Tests.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/DataSourceProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/DataSourceProviderTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/Host.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/Host.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/HostUI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/HostUI.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/ProviderTestsBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/ProviderTestsBase.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/TriggerProviderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/TriggerProviderTests.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/app.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Providers.Tests/packages.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/CodeOwls.SeeShell.Visualizations.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/CodeOwls.SeeShell.Visualizations.csproj -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Dashboard/Manager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Dashboard/Manager.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Resources.resx -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Properties/Settings.settings -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_Disabled_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_Disabled_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_Hovered_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Software and computing_Alerts_Hovered_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_Disabled_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_Disabled_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_Hovered_24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/Web commerce_Download_Hovered_24.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Resources/error.png -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/BooleanToOrientationConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/BooleanToOrientationConverter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/BooleanToVisibilityConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/BooleanToVisibilityConverter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/CategoryDateTimeAxis.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/CategoryDateTimeAxis.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/OxyPlotVisualizationViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/OxyPlotVisualizationViewModel.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/OxyPlotVisualizationViewModelAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/ViewModels/OxyPlotVisualizationViewModelAdapter.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationControl.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationControl.xaml -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationControl.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationControl.xaml.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationStateSummaryView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationStateSummaryView.xaml -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationStateSummaryView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationStateSummaryView.xaml.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationView.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationView.xaml -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationView.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationView.xaml.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationWindow.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationWindow.xaml -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationWindow.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/Views/VisualizationWindow.xaml.cs -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/app.config -------------------------------------------------------------------------------- /CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/CodeOwls.SeeShell/CodeOwls.SeeShell.Visualizations/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/LICENSE -------------------------------------------------------------------------------- /Modules/SeeShell/SeeShell.psd1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/SeeShell.psd1 -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/CodeOwls.SeeShell.PowerShell.Cmdlets.dll-help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/CodeOwls.SeeShell.PowerShell.Cmdlets.dll-help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell_Charts.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell_Charts.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell_DataSources.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell_DataSources.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell_Drives.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell_Drives.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell_License.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell_License.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/about_SeeShell_Version.help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/about_SeeShell_Version.help.txt -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Install-SeeShellLicense.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Install-SeeShellLicense.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Out-Chart.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Out-Chart.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Out-Grid.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Out-Grid.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Out-Timeline.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Out-Timeline.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Send-SeeShellIncident.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Send-SeeShellIncident.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/Test-SeeShellLicense.help.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/Test-SeeShellLicense.help.xml -------------------------------------------------------------------------------- /Modules/SeeShell/en-US/cmdlets/commonparameters.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Modules/SeeShell/en-US/cmdlets/commonparameters.xml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/README.md -------------------------------------------------------------------------------- /Resources/error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Resources/error.png -------------------------------------------------------------------------------- /Resources/icons.xcf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Resources/icons.xcf -------------------------------------------------------------------------------- /Resources/warning.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/Resources/warning.png -------------------------------------------------------------------------------- /default.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/default.ps1 -------------------------------------------------------------------------------- /lib/System.Management.Automation.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/lib/System.Management.Automation.dll -------------------------------------------------------------------------------- /psake/commontask.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/psake/commontask.ps1 -------------------------------------------------------------------------------- /psake/psake.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/beefarino/seeshell/HEAD/psake/psake.psm1 --------------------------------------------------------------------------------