Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9d07cde

Browse files
authoredOct 1, 2019
Remove engine from files and namespaces (#1048)
1 parent 7d4516f commit 9d07cde

File tree

199 files changed

+378
-379
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

199 files changed

+378
-379
lines changed
 

‎.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ docs/metadata/
3737
*.zip
3838

3939
# Generated build info file
40-
src/PowerShellEditorServices.Engine/Hosting/BuildInfo.cs
40+
src/PowerShellEditorServices/Hosting/BuildInfo.cs
4141

4242
# quickbuild.exe
4343
/VersionGeneratingLogs/

‎PowerShellEditorServices.build.ps1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ $script:ModuleBinPath = "$PSScriptRoot/module/PowerShellEditorServices/bin/"
2727
$script:VSCodeModuleBinPath = "$PSScriptRoot/module/PowerShellEditorServices.VSCode/bin/"
2828
$script:WindowsPowerShellFrameworkTarget = 'net461'
2929
$script:NetFrameworkPlatformId = 'win'
30-
$script:BuildInfoPath = [System.IO.Path]::Combine($PSScriptRoot, "src", "PowerShellEditorServices.Engine", "Hosting", "BuildInfo.cs")
30+
$script:BuildInfoPath = [System.IO.Path]::Combine($PSScriptRoot, "src", "PowerShellEditorServices", "Hosting", "BuildInfo.cs")
3131

3232
$script:PSCoreModulePath = $null
3333

@@ -50,16 +50,16 @@ Schema is:
5050
#>
5151
$script:RequiredBuildAssets = @{
5252
$script:ModuleBinPath = @{
53-
'PowerShellEditorServices.Engine' = @(
53+
'PowerShellEditorServices' = @(
5454
'publish/Microsoft.Extensions.DependencyInjection.Abstractions.dll',
5555
'publish/Microsoft.Extensions.DependencyInjection.dll',
5656
'publish/Microsoft.Extensions.FileSystemGlobbing.dll',
5757
'publish/Microsoft.Extensions.Logging.Abstractions.dll',
5858
'publish/Microsoft.Extensions.Logging.dll',
5959
'publish/Microsoft.Extensions.Options.dll',
6060
'publish/Microsoft.Extensions.Primitives.dll',
61-
'publish/Microsoft.PowerShell.EditorServices.Engine.dll',
62-
'publish/Microsoft.PowerShell.EditorServices.Engine.pdb',
61+
'publish/Microsoft.PowerShell.EditorServices.dll',
62+
'publish/Microsoft.PowerShell.EditorServices.pdb',
6363
'publish/Newtonsoft.Json.dll',
6464
'publish/OmniSharp.Extensions.JsonRpc.dll',
6565
'publish/OmniSharp.Extensions.LanguageProtocol.dll',
@@ -304,7 +304,7 @@ task CreateBuildInfo -Before Build {
304304
[string]$buildTime = [datetime]::Now.ToString("s", [System.Globalization.CultureInfo]::InvariantCulture)
305305

306306
$buildInfoContents = @"
307-
namespace Microsoft.PowerShell.EditorServices.Engine.Hosting
307+
namespace Microsoft.PowerShell.EditorServices.Hosting
308308
{
309309
public static class BuildInfo
310310
{
@@ -319,7 +319,7 @@ namespace Microsoft.PowerShell.EditorServices.Engine.Hosting
319319
}
320320

321321
task Build {
322-
exec { & $script:dotnetExe publish -c $Configuration .\src\PowerShellEditorServices.Engine\PowerShellEditorServices.Engine.csproj -f $script:TargetPlatform }
322+
exec { & $script:dotnetExe publish -c $Configuration .\src\PowerShellEditorServices\PowerShellEditorServices.csproj -f $script:TargetPlatform }
323323
exec { & $script:dotnetExe build -c $Configuration .\src\PowerShellEditorServices.VSCode\PowerShellEditorServices.VSCode.csproj $script:TargetFrameworksParam }
324324
}
325325

0 commit comments

Comments
 (0)
Please sign in to comment.