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 3541fc2 commit 06700eeCopy full SHA for 06700ee
.azdo/codeql.yml
@@ -30,9 +30,9 @@ stages:
30
- pwsh: |
31
Write-Verbose "Starting the build configuration:Release Platform:x64"
32
$destination = "$(Build.SourcesDirectory)\bin\x64\Release"
33
- CreateDirectory -directory $destination
+ New-Item -Path $destination -ItemType Directory -Force
34
$buildPath = "$(Build.SourcesDirectory)\build_x64"
35
- CreateDirectory -directory $buildPath
+ New-Item -Path $buildPath -ItemType Directory -Force
36
Set-location $buildPath
37
cmake -DBUILD_SHARED_LIBS=ON -G"Visual Studio 17 2022" -A"x64" ..
38
$buildLogPath = "$(Build.SourcesDirectory)\build\build_x64_Release.log"
0 commit comments