Skip to content

Commit 2027b8d

Browse files
author
Timothy Mothra Lee (from Dev Box)
committed
update and gitignore
1 parent 09e1740 commit 2027b8d

File tree

2 files changed

+7
-4
lines changed

2 files changed

+7
-4
lines changed

.github/workflows/codeql-daily.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,9 +95,9 @@ jobs:
9595
exit 1
9696
}
9797
98-
# Prepare the build script as a string
98+
REM Prepare the build script as a string
9999
$buildScript = @'
100-
# Set required environment variables
100+
REM Set required environment variables
101101
set APPINSIGHTS_WIN10_SDK_PATH="C:\Program Files (x86)\Windows Kits\10"
102102
set APPINSIGHTS_VS_PATH=%VsInstallRoot%
103103
set JAVA_HOME=%JAVA_HOME_17_X64%
@@ -153,11 +153,11 @@ jobs:
153153
)
154154
'@
155155
156-
# Write the batch script to a file
156+
REM Write the batch script to a file
157157
$batchFile = 'run-cpp-build.bat'
158158
Set-Content -Path $batchFile -Value $buildScript -NoNewline
159159
160-
# Call vcvars64.bat and then the batch file (fix quoting for spaces)
160+
REM Call vcvars64.bat and then the batch file (fix quoting for spaces)
161161
& cmd /c "`"$vcvarsPath`" && $batchFile"
162162
163163
- name: Perform CodeQL analysis

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ build/
55

66
# Intellij
77
/.idea/
8+
9+
# Visual Studio
10+
.vs

0 commit comments

Comments
 (0)