AinaVT / LethalConfig

A mod configuration menu for Lethal Company
https://thunderstore.io/c/lethal-company/p/AinaVT/LethalConfig/
GNU General Public License v3.0
15 stars 6 forks source link

Publish to NuGet? #51

Open notpeelz opened 1 month ago

notpeelz commented 1 month ago

Would it be possible to publish it to NuGet?

The latest version (0.7.7) of Rune580.Mods.LethalCompany.InputUtils can't be installed via NuGet because it has an unresolved dependency on LethalConfig:

error NU1101: Unable to find package AinaVT-LethalConfig. No packages exist with this id in source(s): BepInEx, nuget.org
qwbarch commented 2 weeks ago

This should really be documented, but here's how you can use NuGet with this project (taken from InputUtils' GitHub):

Nuget.config:

<?xml version="1.0" encoding="utf-8"?>
<configuration>
  <packageSources>
    <add key="BepInEx" value="https://nuget.bepinex.dev/v3/index.json" />
    <add key="AAron Thunderstore" value="https://nuget.windows10ce.com/nuget/v3/index.json" />
  </packageSources>
</configuration>

csproj:

<PackageReference Include="AinaVT-LethalConfig" Version="1.4.3" />