-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathFiddlerImportNetLog.nsi
34 lines (24 loc) · 999 Bytes
/
FiddlerImportNetLog.nsi
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
Name "Fiddler FiddlerNetLogImport"
OutFile "FiddlerImportNetLog.exe"
Unicode true
Icon "addon.ico"
RequestExecutionLevel "user"
SetCompressor /solid lzma
XPStyle on
!DEFINE /file VER_ADDON Addon.ver
!define /date NOW "%b-%d-%y"
BrandingText "[${NOW}] v${VER_ADDON}"
VIProductVersion "${VER_ADDON}"
VIAddVersionKey "FileVersion" "${VER_ADDON}"
VIAddVersionKey "ProductName" "Fiddler NetLog Importer"
VIAddVersionKey "Comments" "https://textslashplain.com/"
VIAddVersionKey "LegalCopyright" "©2025 Eric Lawrence"
VIAddVersionKey "CompanyName" "Eric Lawrence"
VIAddVersionKey "FileDescription" "Installer for Fiddler Fiddler NetLog Importer"
InstallDir "$DOCUMENTS\Fiddler2\ImportExport\"
Section "Main" ; (default section)
SetOutPath "$INSTDIR"
SetOverwrite on
File "..\FiddlerImportNetLog\bin\release\FiddlerImportNetLog.dll"
MessageBox MB_OK "Installed Successfully$\n$\nRestart Fiddler to see the 'NetLog JSON' option inside 'File > Import Sessions'."
SectionEnd ; end of default section