mirror of
https://github.com/sochix/TLSharp.git
synced 2025-12-06 08:02:00 +01:00
For these tests to pass you not only needed to change the app.config file but the .cs file as well with your API settings (Hash & ID). So let's put everything of them in the app.config so it's easier to discover.
14 lines
463 B
XML
14 lines
463 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<configuration>
|
|
<appSettings>
|
|
<add key="ApiHash" value="" />
|
|
<add key="ApiId" value="" />
|
|
<add key="NumberToAuthenticate" value="" />
|
|
<add key="NotRegisteredNumberToSignUp" value=""/>
|
|
<add key="NumberToSendMessage" value=""/>
|
|
<add key="UserNameToSendMessage" value=""/>
|
|
<add key="NumberToGetUserFull" value=""/>
|
|
<add key="NumberToAddToChat" value=""/>
|
|
</appSettings>
|
|
</configuration>
|