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.
2 parents d7c0336 + f3b5df9 commit 4f5d3ceCopy full SHA for 4f5d3ce
BootstrapBlazor.slnx
@@ -4,6 +4,7 @@
4
<File Path=".gitignore" />
5
<File Path="exclusion.dic" />
6
<File Path="Framework.props" />
7
+ <File Path="Version.props" />
8
</Folder>
9
<Folder Name="/docs/">
10
<File Path="README.md" />
delete-bin.cmd
@@ -0,0 +1,20 @@
1
+@ECHO off
2
+cls
3
+
+ECHO Deleting all BIN and OBJ folders...
+ECHO.
+FOR /d /r . %%d in (bin,obj) DO (
+ IF EXIST "%%d" (
+ ECHO %%d | FIND /I "\node_modules\" > Nul && (
+ ECHO.Skipping: %%d
11
+ ) || (
12
+ ECHO.Deleting: %%d
13
+ rd /s/q "%%d"
14
+ )
15
16
+)
17
18
19
+ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit.
20
+pause > nul
0 commit comments