-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added compatibility for Among Us v2021.6.30s
- Loading branch information
Showing
3 changed files
with
35 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,37 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
<PropertyGroup> | ||
<TargetFramework>netstandard2.1</TargetFramework> | ||
<Version>1.1.2</Version> | ||
<GameVersion>2021.3.31.3s</GameVersion> | ||
<Mappings>NuclearPowered/Mappings:0.3.0</Mappings> | ||
<Version>1.1.3</Version> | ||
|
||
<Description>Mod allowing some enhancements in Polus Map</Description> | ||
<Description>An Among Us mod that tweaks Polus, allowing a more balanced experience.</Description> | ||
<Authors>Brybry</Authors> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(GamePlatform)' == 'Steam'"> | ||
<GameVersion>2021.6.30s</GameVersion> | ||
<DefineConstants>$(DefineConstants);STEAM</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<PropertyGroup Condition="'$(GamePlatform)' == 'Itch'"> | ||
<GameVersion>2021.6.30i</GameVersion> | ||
<DefineConstants>$(DefineConstants);ITCH</DefineConstants> | ||
</PropertyGroup> | ||
|
||
<ItemGroup> | ||
<Deobfuscate Include="$(AmongUs)\BepInEx\plugins\Reactor-$(GameVersion).dll" /> | ||
<Reference Include="$(AmongUs)\BepInEx\core\*.dll"> | ||
<Private>false</Private> | ||
</Reference> | ||
|
||
<Reference Include="$(AmongUs)\BepInEx\unhollowed\*.dll"> | ||
<Private>false</Private> | ||
</Reference> | ||
|
||
<Reference Remove="$(AmongUs)\BepInEx\unhollowed\netstandard.dll;$(AmongUs)\BepInEx\unhollowed\Newtonsoft.Json.dll" /> | ||
|
||
<PackageReference Include="Reactor.OxygenFilter.MSBuild" Version="0.3.0" /> | ||
<Reference Include="$(AmongUs)\BepInEx\plugins\Reactor.dll" /> | ||
</ItemGroup> | ||
|
||
<Target Name="Copy" AfterTargets="Reobfuscate"> | ||
<Copy SourceFiles="$(OutputPath)reobfuscated/$(AssemblyName)-$(GameVersion).dll" DestinationFolder="$(AmongUs)/BepInEx/plugins/" Condition="'$(Configuration)' == 'Debug'" /> | ||
<Target Name="Copy" AfterTargets="Build"> | ||
<Copy SourceFiles="$(OutputPath)$(AssemblyName).dll" DestinationFiles="$(AmongUs)/BepInEx/plugins/$(AssemblyName)-$(Version).dll" /> | ||
</Target> | ||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters