Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/quick_start/install_bepinex.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Installing BepInEx is first step in the [Overall Goals](/#overall-goals).
## How to download

BepInEx is distributed as a zip file which contains the necessary bootstrapping code to mod the game.
- Download `BepInEx-Unity.IL2CPP-win-x86-....zip` from [builds.bepinex.dev](https://builds.bepinex.dev/projects/bepinex_be).
- Download `BepInEx-Unity.IL2CPP-win-x86-....zip` from [github.com](https://github.com/BepInEx/BepInEx/releases/v6.0.0-pre.2/).


### Installing BepInEx
Expand Down
10 changes: 5 additions & 5 deletions docs/quick_start/install_configure_ide.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,14 +63,14 @@ In the `.csproj` file, there are few important properties:

<PropertyGroup>
<GamePlatform Condition="'$(GamePlatform)' == ''">Steam</GamePlatform>
<GameVersion Condition="'$(GamePlatform)' == 'Steam'">2021.6.30</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Itch'">2021.6.30</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Steam'">2024.10.29</GameVersion>
<GameVersion Condition="'$(GamePlatform)' == 'Itch'">2024.10.29</GameVersion>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Reactor" Version="2.0.0" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.662" Private="false" ExcludeAssets="runtime;native" />
<PackageReference Include="AmongUs.GameLibs.Steam" Version="2022.10.25" PrivateAssets="all" />
<PackageReference Include="Reactor" Version="2.3.1" />
<PackageReference Include="BepInEx.Unity.IL2CPP" Version="6.0.0-be.697" Private="false" ExcludeAssets="runtime;native" />
<PackageReference Include="AmongUs.GameLibs.Steam" Version="2024.10.29" PrivateAssets="all" />

<PackageReference Include="BepInEx.AutoPlugin" Version="1.1.0" PrivateAssets="all" />
<PackageReference Include="BepInEx.IL2CPP.MSBuild" Version="2.0.1" PrivateAssets="all" ExcludeAssets="runtime" />
Expand Down