Completed migration to .NET 6.0.

This commit is contained in:
2022-01-02 16:20:29 -06:00
parent c1d8891c44
commit 07c41be42d
17 changed files with 5614 additions and 159 deletions

View File

@@ -0,0 +1 @@

View File

@@ -0,0 +1,14 @@
import os
import shutil
CACHE_DIR = "./Props/node_modules/.cache/webpack"
def clear():
os.chdir(os.path.dirname(os.path.realpath(__file__)))
os.chdir("..")
shutil.rmtree(CACHE_DIR, ignore_errors=True)
if __name__ == "main":
clear()