More renaming
This commit is contained in:
2
.vscode/tasks.json
vendored
2
.vscode/tasks.json
vendored
@@ -50,7 +50,7 @@
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
"label": "Dotnet watch",
|
"label": "Dotnet watch",
|
||||||
"detail": "Dotnet run and watch of Web.UI.NetCore",
|
"detail": "Dotnet run and watch of Web.UI",
|
||||||
"promptOnClose": true,
|
"promptOnClose": true,
|
||||||
"command": "dotnet",
|
"command": "dotnet",
|
||||||
"type": "process",
|
"type": "process",
|
||||||
|
|||||||
@@ -189,7 +189,7 @@ stages:
|
|||||||
- powershell: Invoke-Sqlcmd -Query "CREATE DATABASE $env:UmbracoDatabaseName" -ServerInstance $env:UmbracoDatabaseServer
|
- powershell: Invoke-Sqlcmd -Query "CREATE DATABASE $env:UmbracoDatabaseName" -ServerInstance $env:UmbracoDatabaseServer
|
||||||
displayName: Create database
|
displayName: Create database
|
||||||
# - task: DotNetCoreCLI@2
|
# - task: DotNetCoreCLI@2
|
||||||
# displayName: dotnet build (Netcore)
|
# displayName: dotnet build
|
||||||
# inputs:
|
# inputs:
|
||||||
# command: build
|
# command: build
|
||||||
# projects: '**/Umbraco.Web.UI.csproj'
|
# projects: '**/Umbraco.Web.UI.csproj'
|
||||||
@@ -209,9 +209,9 @@ stages:
|
|||||||
targets: build
|
targets: build
|
||||||
workingDirectory: src\Umbraco.Web.UI.Client
|
workingDirectory: src\Umbraco.Web.UI.Client
|
||||||
- powershell: Start-Process -FilePath "dotnet" -ArgumentList "run", "-p", "src\Umbraco.Web.UI\Umbraco.Web.UI.csproj"
|
- powershell: Start-Process -FilePath "dotnet" -ArgumentList "run", "-p", "src\Umbraco.Web.UI\Umbraco.Web.UI.csproj"
|
||||||
displayName: dotnet run (Netcore)
|
displayName: dotnet run
|
||||||
# - powershell: dotnet run --no-build -p .\src\Umbraco.Web.UI\Umbraco.Web.UI.csproj
|
# - powershell: dotnet run --no-build -p .\src\Umbraco.Web.UI\Umbraco.Web.UI.csproj
|
||||||
# displayName: dotnet run (Netcore)
|
# displayName: dotnet run
|
||||||
- task: PowerShell@1
|
- task: PowerShell@1
|
||||||
displayName: Generate Cypress.env.json
|
displayName: Generate Cypress.env.json
|
||||||
inputs:
|
inputs:
|
||||||
@@ -302,7 +302,7 @@ stages:
|
|||||||
targets: build
|
targets: build
|
||||||
workingDirectory: src/Umbraco.Web.UI.Client
|
workingDirectory: src/Umbraco.Web.UI.Client
|
||||||
- task: Bash@3
|
- task: Bash@3
|
||||||
displayName: dotnet run (Netcore)
|
displayName: dotnet run
|
||||||
inputs:
|
inputs:
|
||||||
targetType: 'inline'
|
targetType: 'inline'
|
||||||
script: 'nohup dotnet run -p ./src/Umbraco.Web.UI/Umbraco.Web.UI.csproj &'
|
script: 'nohup dotnet run -p ./src/Umbraco.Web.UI/Umbraco.Web.UI.csproj &'
|
||||||
|
|||||||
@@ -85,8 +85,8 @@ namespace Umbraco.Cms.Tests.Integration.DependencyInjection
|
|||||||
currFolder = currFolder.Parent;
|
currFolder = currFolder.Parent;
|
||||||
}
|
}
|
||||||
|
|
||||||
DirectoryInfo netcoreUI = currFolder.GetDirectories("Umbraco.Web.UI", SearchOption.TopDirectoryOnly).First();
|
DirectoryInfo uiProject = currFolder.GetDirectories("Umbraco.Web.UI", SearchOption.TopDirectoryOnly).First();
|
||||||
var mainLangFolder = new DirectoryInfo(Path.Combine(netcoreUI.FullName, globalSettings.Value.UmbracoPath.TrimStart("~/"), "config", "lang"));
|
var mainLangFolder = new DirectoryInfo(Path.Combine(uiProject.FullName, globalSettings.Value.UmbracoPath.TrimStart("~/"), "config", "lang"));
|
||||||
|
|
||||||
return new LocalizedTextServiceFileSources(
|
return new LocalizedTextServiceFileSources(
|
||||||
loggerFactory.CreateLogger<LocalizedTextServiceFileSources>(),
|
loggerFactory.CreateLogger<LocalizedTextServiceFileSources>(),
|
||||||
|
|||||||
Reference in New Issue
Block a user