Skip to content

Commit 0b3e3d2

Browse files
committed
Reorganize core library file structure
1 parent f7c9400 commit 0b3e3d2

22 files changed

+21
-107
lines changed

src/PowerShellEditorServices/Console/ConsoleService.cs

Lines changed: 0 additions & 84 deletions
This file was deleted.

src/PowerShellEditorServices/PowerShellEditorServices.csproj

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -59,19 +59,11 @@
5959
<ItemGroup>
6060
<Compile Include="Analysis\AnalysisOutputWriter.cs" />
6161
<Compile Include="Analysis\AnalysisService.cs" />
62-
<Compile Include="Console\BreakpointDetails.cs" />
63-
<Compile Include="Console\ChoiceDetails.cs" />
64-
<Compile Include="Console\ConsoleServicePSHost.cs" />
65-
<Compile Include="Console\ConsoleServicePSHostRawUserInterface.cs" />
66-
<Compile Include="Console\ConsoleServicePSHostUserInterface.cs" />
67-
<Compile Include="Console\OutputType.cs" />
68-
<Compile Include="Console\PowerShellSession.cs" />
69-
<Compile Include="Console\ProgressDetails.cs" />
70-
<Compile Include="Console\StackFrameDetails.cs" />
71-
<Compile Include="Console\SynchronizingConsoleHostWrapper.cs" />
72-
<Compile Include="Console\IConsoleHost.cs" />
73-
<Compile Include="Console\VariableDetails.cs" />
74-
<Compile Include="DebugService.cs" />
62+
<Compile Include="Debugging\BreakpointDetails.cs" />
63+
<Compile Include="Debugging\DebugService.cs" />
64+
<Compile Include="Debugging\StackFrameDetails.cs" />
65+
<Compile Include="Debugging\VariableDetails.cs" />
66+
<Compile Include="Debugging\VariableScope.cs" />
7567
<Compile Include="IHost.cs" />
7668
<Compile Include="Language\AstOperations.cs" />
7769
<Compile Include="Language\CompletionResults.cs" />
@@ -90,16 +82,23 @@
9082
<Compile Include="Language\SymbolReference.cs" />
9183
<Compile Include="Language\SymbolType.cs" />
9284
<Compile Include="Properties\AssemblyInfo.cs" />
93-
<Compile Include="Console\ConsoleService.cs" />
85+
<Compile Include="Session\ChoiceDetails.cs" />
9486
<Compile Include="Session\EditorSession.cs" />
95-
<Compile Include="Session\ScriptFile.cs" />
96-
<Compile Include="Session\FileChange.cs" />
97-
<Compile Include="Session\ScriptFileMarker.cs" />
98-
<Compile Include="Session\ScriptRegion.cs" />
99-
<Compile Include="Session\Workspace.cs" />
87+
<Compile Include="Session\IConsoleHost.cs" />
88+
<Compile Include="Session\OutputType.cs" />
89+
<Compile Include="Session\PowerShellSession.cs" />
90+
<Compile Include="Session\ProgressDetails.cs" />
91+
<Compile Include="Session\SessionPSHost.cs" />
92+
<Compile Include="Session\SessionPSHostRawUserInterface.cs" />
93+
<Compile Include="Session\SessionPSHostUserInterface.cs" />
94+
<Compile Include="Session\SynchronizingConsoleHostWrapper.cs" />
10095
<Compile Include="Utility\Logger.cs" />
10196
<Compile Include="Utility\Validate.cs" />
102-
<Compile Include="Console\VariableScope.cs" />
97+
<Compile Include="Workspace\FileChange.cs" />
98+
<Compile Include="Workspace\ScriptFile.cs" />
99+
<Compile Include="Workspace\ScriptFileMarker.cs" />
100+
<Compile Include="Workspace\ScriptRegion.cs" />
101+
<Compile Include="Workspace\Workspace.cs" />
103102
</ItemGroup>
104103
<ItemGroup>
105104
<None Include="packages.config" />
@@ -110,6 +109,7 @@
110109
<Name>ScriptAnalyzerEngine</Name>
111110
</ProjectReference>
112111
</ItemGroup>
112+
<ItemGroup />
113113
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
114114
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
115115
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">

0 commit comments

Comments
 (0)