Skip to content

Installing TinyFFR

TinyFFR is currently provided as a .NET9 NuGet package targeting Windows x64 platforms only (1). If you already know how to use NuGet all you need to do is install Egodystonic.TinyFFR from the standard Nuget package source. Otherwise, follow one of guides below, depending on your preferred environment:

  1. Support for other platforms is planned for the future. See github.

Visual Studio#

With Visual Studio, the easiest way to add TinyFFR is via the NuGet package manager.

  1. Right-click on the project you wish to add TinyFFR to and select "Manage NuGet Packages":
    • Image showing "Manage NuGet Packages"
  2. In the package browser, make sure your package source is set to "Nuget" (or "All"):
    • Image showing how to set nuget package manager source
  3. In the search box, type "TinyFFR", and you should see the TinyFFR package show up. The official name of the package is "Egodystonic.TinyFFR" by EgodystonicStudios:
    • Image showing TinyFFR in the nuget package manager browser
  4. Select the package from the list and then on the right Install the latest stable version:
    • Image showing the install button for TinyFFR
  5. You should now see TinyFFR in the Installed tab:
    • Image showing TinyFFR in the installed tab

For more assistance using NuGet in Visual Studio, consult the official documentation.

Visual Studio Code#

TinyFFR can be installed via the command palette in VS Code, assuming you have the C# Dev Kit installed. Follow the official instructions on installing a NuGet package to add Egodystonic.TinyFFR to your project.

Editing the .csproj File Manually#

To add the TinyFFR package manually by editing the .csproj file, simply add a <PackageReference> to Egodystonic.TinyFFR:

<ItemGroup>
  <PackageReference Include="Egodystonic.TinyFFR" Version="M.m.p" /> <!-- (1)! -->
</ItemGroup>
  1. Replace "M.m.p" with the actual version number of the package you'd like to install. See the TinyFFR Github page for the latest versions.

Commandline#

To install TinyFFR via commandline, use the .NET CLI. In your project's root directory, run the following command:

dotnet add package Egodystonic.TinyFFR

Other Environments#

For other environments follow the instructions provided by the environment author for working with NuGet packages and add Egodystonic.TinyFFR from the official Nuget source.

Help is always available on the discussions tab on TinyFFR's Github page.

Comments