Last active 4 months ago

tnt1232007's Avatar tnt1232007 revised this gist 4 months ago. Go to revision

1 file changed, 5 insertions

dotnet.ps1(file created)

@@ -0,0 +1,5 @@
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
Newer Older