Advertisement
fernandop

fede.bat

Jan 12th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Batch 0.19 KB | None | 0 0
  1. @echo off
  2.  
  3. if "%1" == "" goto Usage
  4.  
  5. for %%i in (%1\*.*) do (
  6.     c:\tools\dnSpy\dnSpy.Console.exe -o output\%%i %%i
  7. )
  8.  
  9. exit /b 1
  10.  
  11. :Usage
  12. echo Usage: %0 ^<folder containing .NET samples^>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement