所有C#程序都支持使用.config配置项来配置http代理。
把如下内容中的http://127.0.0.1:1080改成你的http代理地址,保存为osu!.exe.config存放在osu!.exe的同目录下,重启osu后,osu就会走http代理啦。
把如下内容中的http://127.0.0.1:1080改成你的http代理地址,保存为osu!.exe.config存放在osu!.exe的同目录下,重启osu后,osu就会走http代理啦。
内容
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:1080" usesystemdefault="false" />
</defaultProxy>
</system.net>
</configuration>
<configuration>
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:1080" usesystemdefault="false" />
</defaultProxy>
</system.net>
</configuration>