Skip to content

Commit 4f5d3ce

Browse files
committed
Merge branch 'main' into refactor-sass
2 parents d7c0336 + f3b5df9 commit 4f5d3ce

File tree

2 files changed

+21
-0
lines changed

2 files changed

+21
-0
lines changed

BootstrapBlazor.slnx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<File Path=".gitignore" />
55
<File Path="exclusion.dic" />
66
<File Path="Framework.props" />
7+
<File Path="Version.props" />
78
</Folder>
89
<Folder Name="/docs/">
910
<File Path="README.md" />

delete-bin.cmd

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
@ECHO off
2+
cls
3+
4+
ECHO Deleting all BIN and OBJ folders...
5+
ECHO.
6+
7+
FOR /d /r . %%d in (bin,obj) DO (
8+
IF EXIST "%%d" (
9+
ECHO %%d | FIND /I "\node_modules\" > Nul && (
10+
ECHO.Skipping: %%d
11+
) || (
12+
ECHO.Deleting: %%d
13+
rd /s/q "%%d"
14+
)
15+
)
16+
)
17+
18+
ECHO.
19+
ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit.
20+
pause > nul

0 commit comments

Comments
 (0)