-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
15 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# Những gì cần làm trước khi build | ||
- Sửa lại reference tới `Fiddler.exe` và `Standard.dll` theo [hướng dẫn này](https://docs.telerik.com/fiddler/extend-fiddler/extendwithdotnet#sample-extension-step-by-step). File `Fiddler.exe` nằm trong thư mục chính, còn file `Standard.dll` nằm trong thư mục `\Inspectors`. | ||
- Kiểm tra lại build events: Trong Solution Explorer của Visual Studio, right-click vào project `FiddlerMomoPlugin` chọn `Properties`, mở tab `Build Events`, bạn sẽ thấy những event này: | ||
```bash | ||
copy "$(TargetPath)" "%localappdata%\Programs\Fiddler\Scripts\$(TargetFilename)" | ||
copy "$(TargetPath)" "%localappdata%\Programs\Fiddler\Inspectors\$(TargetFilename)" | ||
|
||
copy "BouncyCastle.Crypto.dll" "%localappdata%\Programs\Fiddler\Scripts\BouncyCastle.Crypto.dll" | ||
copy "BouncyCastle.Crypto.dll" "%localappdata%\Programs\Fiddler\Inspectors\BouncyCastle.Crypto.dll" | ||
|
||
copy "Newtonsoft.Json.dll" "%localappdata%\Programs\Fiddler\Scripts\Newtonsoft.Json.dll" | ||
copy "Newtonsoft.Json.dll" "%localappdata%\Programs\Fiddler\Inspectors\Newtonsoft.Json.dll" | ||
``` | ||
- Nếu `%localappdata%\Programs\Fiddler` không phải là folder Fiddler trên máy của bạn, hãy sửa lại. | ||
- Kế tiếp mở tab `Debug`, ở input `Start external program`, hãy chọn đường dẫn tới Fiddler.exe |