chore(Tools): remove pack/watch scripts (#7123)

* chore(Tools): remove pack/watch scripts

* chore: bump version net10
This commit is contained in:
Argo Zhang
2025-11-15 14:57:19 +08:00
committed by GitHub
parent 72ed324443
commit aa4d7d26fd
4 changed files with 2 additions and 37 deletions

View File

@@ -2,13 +2,13 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<TargetFramework>net10.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="BenchmarkDotNet" Version="0.14.0" />
<PackageReference Include="BenchmarkDotNet" Version="0.15.6" />
</ItemGroup>
</Project>

View File

@@ -1,21 +0,0 @@
@ECHO off
cls
cd ..
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
) || (
ECHO.Deleting: %%d
rd /s/q "%%d"
)
)
)
ECHO.
ECHO.BIN and OBJ folders have been successfully deleted. Press any key to exit.
pause > nul

View File

@@ -1,7 +0,0 @@
@echo off
setlocal enabledelayedexpansion
cd ../src/BootstrapBlazor
dotnet pack -c Release
endlocal

View File

@@ -1,7 +0,0 @@
@echo off
setlocal enabledelayedexpansion
cd ../src/BootstrapBlazor.Server
dotnet watch run
endlocal