Skip to content

Commit

Permalink
Added clean.bat, updated readme
Browse files Browse the repository at this point in the history
  • Loading branch information
lbugnion committed Jun 28, 2016
1 parent 5ce95a7 commit f9f6f91
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
3 changes: 2 additions & 1 deletion README.md
@@ -1,4 +1,5 @@
# sample-evolve-2016
# An In-Depth Study of the MVVM Light Databinding System

My code samples for the Xamarin Evolve 2016 conference

# Presentation details, Slides, Video
Expand Down
20 changes: 20 additions & 0 deletions clean.bat
@@ -0,0 +1,20 @@
del /s /ah /f *.suo
del /s /f *.user
del /s /f *.userprefs
del /s /f *.cache
del /s /f *.keep
del /s /ah StyleCop.Cache

rd /s /q bin obj ClientBin _Resharper.* _Upgrade* TestResults .vs

del dirs.txt
dir /s /b /ad bin > dirs.txt
dir /s /b /ad obj >> dirs.txt
dir /s /b /ad ClientBin >> dirs.txt
dir /s /b /ad _Resharper.* >> dirs.txt
dir /s /b /ad _Upgrade* >> dirs.txt
dir /s /b /ad TestResults >> dirs.txt
dir /s /b /ad .vs >> dirs.txt

for /f "delims=;" %%i in (dirs.txt) DO rd /s /q "%%i"
del dirs.txt

0 comments on commit f9f6f91

Please sign in to comment.