You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
1. Modify the **Additional Options** property, and then choose **OK**.
39
39
40
-
## Example
40
+
## Examples
41
41
42
42
The following command produces SARIF information for the compilation of `main.cpp` and saves it in the file `main.sarif`:
43
43
44
44
```cmd
45
-
CL /experimental:log main.cpp
45
+
cl /experimental:log main.cpp
46
+
```
47
+
48
+
The following command produces SARIF information for the compilation of `main.cpp` and saves it in the file `mySarifInfo.sarif`:
49
+
50
+
```cmd
51
+
cl /experimental:log mySarifInfo main.cpp
46
52
```
47
53
48
54
The following command produces SARIF information for the entire compilation and saves it in the `sarif_output` directory in the files `main.sarif` and `other.sarif`:
0 commit comments