We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8b9ad4 commit c1b9801Copy full SHA for c1b9801
templates/steps/ci.yml
@@ -34,7 +34,8 @@ steps:
34
}
35
36
$path = $setupInstance.Path
37
- Write-Host "##vso[task.setvariable variable=Unity.Path]$path"
+ $path = Join-Path $path "Editor/Data/Managed/"
38
+ Write-Host "##vso[task.setvariable variable=Unity.AssembliesPath]$path"
39
Write-Host "Using Unity at path '$path'."
40
displayName: Install/find Unity
41
failOnStderr: true
@@ -56,4 +57,4 @@ steps:
56
57
maximumCpuCount: true
58
msbuildArchitecture: x64
59
${{ if eq(parameters.unityProject, 'true') }}:
- msbuildArgs: /p:UnityEditorAssembliesPath="$(Unity.Path)Editor/Data/Managed/"
60
+ msbuildArgs: /p:UnityEditorAssembliesPath="$(Unity.AssembliesPath)"
0 commit comments