api(dot)getfiddler(dot)com/linux/latest-linux
api(dot)getfiddler(dot)com/mac/latest-mac
api(dot)getfiddler(dot)com/win/latest
If you are using windows, just try https://github.com/dnSpyEx/dnSpy
- dotnet new console -n test
- cd test
- dotnet add package Microsoft.NETCore.ILAsm (ILDAsm)
- dotnet publish -c Release --self-contained --runtime linux-x64
- export PATH=$(pwd)/bin/Release/netcoreapp3.1/linux-x64/publish:$PATH
- ilasm (ildasm)
from
public AccountDTO GetBestAccount(UserWithBestAccountDTO user)
{
if (user.BestEverywhereAccountId != null)
{
return user.Accounts.FirstOrDefault((UserAccountDTO x) => x.Id == user.BestEverywhereAccountId.Value);
}
return null;
}
to
public AccountDTO GetBestAccount(UserWithBestAccountDTO user)
{
if (user.BestEverywhereAccountId != null)
{
return user.Accounts.FirstOrDefault((UserAccountDTO x) => x.Id == user.BestEverywhereAccountId.Value);
}
return user.Accounts.FirstOrDefault();
}
修改 .fiddler\Settings\electron-settings.json
,搜索 autoUpdateSettings
新增
"autoUpdateSettings": {
"downloadedUpdateVersion": "0.0.0",
"disabled":true
}
本仓库仅供技术学习交流使用,如有下载相关文件,请在学习后24小时内删除相关内容。
请勿将本项目内容用于非法用途,使用者在使用时即视为对行为可能产生的任何不良后果负责。
由于传播、利用此工具所提供的信息而造成的任何直接或者间接的后果及损失,均由使用者本人负责,作者不为此承担任何责任。