forked from dotnet/MobileBlazorBindings
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclean.cmd
18 lines (18 loc) · 1.47 KB
/
clean.cmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
@echo off
echo +------------------------------------------------------------------------------------------+
echo ^| 0. Cleaning up installed/restored contents of Mobile Blazor Bindings... ^|
echo + -----------------------------------------------------------------------------------------+
echo +------------------------------------------------------------------------------------------+
echo ^| 1. Deleting Microsoft.MobileBlazorBindings.* from .nuget folder (some errors are normal) ^|
echo + -----------------------------------------------------------------------------------------+
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.core
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.webview
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.webview.android
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.webview.ios
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.webview.macos
rd /s /q %userprofile%\.nuget\packages\microsoft.mobileblazorbindings.webview.windows
echo +----------------------------------------------------------------------------------------+
echo ^| 2. Uninstalling templates (some errors are normal) ^|
echo +----------------------------------------------------------------------------------------+
dotnet new -u Microsoft.MobileBlazorBindings.Templates