NuGet package of OpenTTD admin implementation via FSharp
First of all u need connect to NuGet feed. Easies way to do this is to add next configuration into your nuget.config
file:
<configuration>
<packageSources>
<add key="github" value="https://nuget.pkg.github.com/TG-OpenTTD/index.json" />
</packageSources>
<packageSourceCredentials>
<github>
<add key="Username" value="PublicToken" />
<add key="ClearTextPassword" value="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" />
</github>
</packageSourceCredentials>
</configuration>
Then you will be able to install package with next command:
dotnet add [<PROJECT>] package FSharp.OpenTTD.Admin