Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

Commit 0b7f579

Browse files
authored
Merge pull request #1056 from github-for-unity/cleanup
Cleanup some code
2 parents 67131ce + ab50d4e commit 0b7f579

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

src/GitHub.Api/GitHub.Api.45.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
<Compile Include="Installer\OctorunInstaller.cs" />
103103
<Compile Include="Installer\UnzipTask.cs" />
104104
<Compile Include="IO\FileSystem.cs" />
105-
<Compile Include="Managers\Downloader.cs" />
105+
<Compile Include="Tasks\Downloader.cs" />
106106
<Compile Include="OutputProcessors\GitAheadBehindStatusOutputProcessor.cs" />
107107
<Compile Include="OutputProcessors\GitCountObjectsProcessor.cs" />
108108
<Compile Include="OutputProcessors\LfsVersionOutputProcessor.cs" />
@@ -195,15 +195,17 @@
195195
<Compile Include="Installer\ZipHelper.cs" />
196196
<Compile Include="Extensions\AsyncExtensions.cs" />
197197
<Compile Include="Platform\Settings.cs" />
198+
<Compile Include="Process\IProcessEnvironment.cs" />
199+
<Compile Include="Process\ProcessEnvironment.cs" />
200+
<Compile Include="Process\IProcessManager.cs" />
201+
<Compile Include="Process\ProcessManager.cs" />
198202
<Compile Include="OutputProcessors\BranchListOutputProcessor.cs" />
199203
<Compile Include="OutputProcessors\LocksOutputProcessor.cs" />
200204
<Compile Include="OutputProcessors\LogEntryOutputProcessor.cs" />
201-
<Compile Include="OutputProcessors\ProcessManager.cs" />
202205
<Compile Include="OutputProcessors\StatusOutputProcessor.cs" />
203206
<Compile Include="Git\GitConfig.cs" />
204207
<Compile Include="OutputProcessors\LineProcessor.cs" />
205208
<Compile Include="Git\GitRemote.cs" />
206-
<Compile Include="OutputProcessors\IProcessManager.cs" />
207209
<Compile Include="IO\NiceIO.cs" />
208210
<Compile Include="OutputProcessors\RemoteListOutputProcessor.cs" />
209211
<Compile Include="Git\IRepository.cs" />
@@ -213,8 +215,6 @@
213215
<DesignTime>True</DesignTime>
214216
<DependentUpon>Localization.resx</DependentUpon>
215217
</Compile>
216-
<Compile Include="Platform\ProcessEnvironment.cs" />
217-
<Compile Include="Platform\IProcessEnvironment.cs" />
218218
<Compile Include="Properties\AssemblyInfo.cs" />
219219
<Compile Include="Git\Repository.cs" />
220220
<Compile Include="Git\RepositoryManager.cs" />

src/GitHub.Api/GitHub.Api.csproj

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@
113113
<Compile Include="Installer\OctorunInstaller.cs" />
114114
<Compile Include="Installer\UnzipTask.cs" />
115115
<Compile Include="IO\FileSystem.cs" />
116-
<Compile Include="Managers\Downloader.cs" />
116+
<Compile Include="Tasks\Downloader.cs" />
117117
<Compile Include="OutputProcessors\GitAheadBehindStatusOutputProcessor.cs" />
118118
<Compile Include="OutputProcessors\GitCountObjectsProcessor.cs" />
119119
<Compile Include="OutputProcessors\LfsVersionOutputProcessor.cs" />
@@ -180,15 +180,17 @@
180180
<Compile Include="Installer\ZipHelper.cs" />
181181
<Compile Include="Extensions\AsyncExtensions.cs" />
182182
<Compile Include="Platform\Settings.cs" />
183+
<Compile Include="Process\IProcessEnvironment.cs" />
184+
<Compile Include="Process\ProcessEnvironment.cs" />
185+
<Compile Include="Process\IProcessManager.cs" />
186+
<Compile Include="Process\ProcessManager.cs" />
183187
<Compile Include="OutputProcessors\BranchListOutputProcessor.cs" />
184188
<Compile Include="OutputProcessors\LocksOutputProcessor.cs" />
185189
<Compile Include="OutputProcessors\LogEntryOutputProcessor.cs" />
186-
<Compile Include="OutputProcessors\ProcessManager.cs" />
187190
<Compile Include="OutputProcessors\StatusOutputProcessor.cs" />
188191
<Compile Include="Git\GitConfig.cs" />
189192
<Compile Include="OutputProcessors\LineProcessor.cs" />
190193
<Compile Include="Git\GitRemote.cs" />
191-
<Compile Include="OutputProcessors\IProcessManager.cs" />
192194
<Compile Include="IO\NiceIO.cs" />
193195
<Compile Include="OutputProcessors\RemoteListOutputProcessor.cs" />
194196
<Compile Include="Git\IRepository.cs" />
@@ -198,8 +200,6 @@
198200
<DesignTime>True</DesignTime>
199201
<DependentUpon>Localization.resx</DependentUpon>
200202
</Compile>
201-
<Compile Include="Platform\ProcessEnvironment.cs" />
202-
<Compile Include="Platform\IProcessEnvironment.cs" />
203203
<Compile Include="Properties\AssemblyInfo.cs" />
204204
<Compile Include="Git\Repository.cs" />
205205
<Compile Include="Git\RepositoryManager.cs" />

0 commit comments

Comments
 (0)