Unofficial, in-game Valorant API Wrapper for .NET / C#
Build the project using any configuration (Debug / Release); Copy the .nupkg file from the build folder to the location of your local Nuget source folder. You can add one by going to %appdata%NuGetNuGet.Config and adding a key to a folder, e.g.
<packageSources>
...
<add key="MyLocalSharedSource" value="Path/To/Folder" protocolVersion="3" />
</packageSources>
After that, you can go to your IDE and install the package from there by searching for "Valorant" from the "MyLocalSharedSource" source.
The package is now available on NuGet, you only need to run
dotnet add package Valorant --version 1.0.6
in the .NET CLI or install it using your IDE's NuGet tab.
After the installation, you can immediately start using it by typing Valorant. and letting the IDE autocomplete. The API handler takes care of taking info from the Lockfile, encoding the password, making the requests, so everything becomes as simple as calling a method.
You can check out an example project here.