@manhng

Welcome to my blog!

MSBuild + Clean + Remove Bin/Obj Folder

September 10, 2018 10:36

Start > Run > CMD (edit)

Xem thêm

http://manhng.com/blog/msbuild/

http://manhng.com/blog/xcopy/

http://manhng.com/blog/appcmd/

http://manhng.com/blog/powershell/

Tiếp tục

https://ss64.com/nt/run.html

https://ss64.com/nt/syntax-windows.html

Microsoft OLE DB Provider for SQL: Using an UDL file

https://blogs.msdn.microsoft.com/farukcelik/2007/12/31/basics-first-udl-test/

https://dougrathbone.com/blog/2013/11/18/testing-connectivity-to-microsoft-sql-server-without-any-tools-installed

ODBC Data Sources

https://weblogs.asp.net/dixin/easy-ways-to-test-sql-server-sql-azure-connection

https://knowhow.visual-paradigm.com/hibernate/solving-sql-server-connection-problem/

Easy way to check connectivity to SQL Server from client

+ Telnet: telnet servername 1433

+ UDL file: Create new TestConnect.udl file and click into TestConnect.udl (Data Link Properties)

Remove ASP.NET Temporary files

C:\WINDOWS\system32>del /q "C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*"

C:\WINDOWS\system32>FOR /D %p IN ("C:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\*.*") DO rmdir "%p" /s /q

Remove all Bin, Obj folders

Bin, Obj via command prompt

for /d /r . %d in (bin,obj) do @if exist "%d" rd /s/q "%d"

Bin, Obj via .bat file

for /d /r . %%d in (bin,obj) do @if exist "%%d" rd /s/q "%%d"

Guide

I want to delete all bin and obj folders to force all projects

Deleting all bin obj folders in a solution

Categories

Recent posts