dotnet.ps1
· 520 B · PowerShell
Surowy
# Clean folder
Get-ChildItem .\ -include bin,obj,bld,Backup,_UpgradeReport_Files,Debug,Release,ipch -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse }
# Merge DLLs
.\ILMerge.exe .\BatchRenamer.exe .\BatchRenamer.Core.dll .\CommandLine.dll .\LiteDB.dll .\log4net.dll .\Microsoft.WindowsAPICodePack.dll .\Microsoft.WindowsAPICodePack.Shell.dll .\Newtonsoft.Json.dll .\System.Linq.Dynamic.dll .\TrID.dll .\Util.dll /out:D:\Dropbox\Software\Development\BatchRenamer\BatchRenamer.exe /target:winexe /ndebug
| 1 | # Clean folder |
| 2 | Get-ChildItem .\ -include bin,obj,bld,Backup,_UpgradeReport_Files,Debug,Release,ipch -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse } |
| 3 | |
| 4 | # Merge DLLs |
| 5 | .\ILMerge.exe .\BatchRenamer.exe .\BatchRenamer.Core.dll .\CommandLine.dll .\LiteDB.dll .\log4net.dll .\Microsoft.WindowsAPICodePack.dll .\Microsoft.WindowsAPICodePack.Shell.dll .\Newtonsoft.Json.dll .\System.Linq.Dynamic.dll .\TrID.dll .\Util.dll /out:D:\Dropbox\Software\Development\BatchRenamer\BatchRenamer.exe /target:winexe /ndebug |
| 6 |