PowerShell clang fix (#714)

* Fixes script running in commandline mode by adding System.Net inclusion at the top.
Also adds clang-format.exe to gitignore.

* Change System.Net namespace to System.
This commit is contained in:
Malkierian 2024-06-24 20:42:12 -07:00 committed by GitHub
parent 791064e870
commit 1f3ca038a8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 0 deletions

1
.gitignore vendored
View File

@ -66,3 +66,4 @@ _packages/
/mm/src/boot/build.c
/mm/windows/properties.h
/clang-format.exe

View File

@ -1,3 +1,4 @@
Using Namespace System
$url = "https://github.com/llvm/llvm-project/releases/download/llvmorg-14.0.6/LLVM-14.0.6-win64.exe"
$llvmInstallerPath = ".\LLVM-14.0.6-win64.exe"
$clangFormatFilePath = ".\clang-format.exe"