Skip to content

Commit

Permalink
chore: update dependencies & lib-stripped
Browse files Browse the repository at this point in the history
  • Loading branch information
WEGFan committed Jul 1, 2021
1 parent 505b875 commit 0aadc9d
Show file tree
Hide file tree
Showing 7 changed files with 45 additions and 21 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Custom ignores
.idea
.idea/
lib/
InfiniteBackups_*.zip

# Ignore Visual Studio temporary files, build results, and files generated by popular Visual Studio add-ons.
Expand Down
57 changes: 39 additions & 18 deletions InfiniteBackups.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,28 +19,49 @@
<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin\</OutputPath>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
</PropertyGroup>
<ItemGroup>
<Reference Include="Celeste">
<HintPath>lib-stripped\Celeste.exe</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="FNA">
<HintPath>lib-stripped\FNA.dll</HintPath>
<Private>False</Private>
</Reference>
<Reference Include="MMHOOK_Celeste, Version=0.0.0.0, Culture=neutral, PublicKeyToken=null">
<HintPath>lib-stripped\MMHOOK_Celeste.dll</HintPath>
<Private>False</Private>
</Reference>
</ItemGroup>
<Choose>
<When Condition="Exists('lib')">
<ItemGroup>
<Reference Include="Celeste">
<Private>false</Private>
<HintPath>lib\Celeste.exe</HintPath>
</Reference>
<Reference Include="MMHOOK_Celeste">
<Private>false</Private>
<HintPath>lib\MMHOOK_Celeste.dll</HintPath>
</Reference>
<Reference Include="FNA">
<Private>false</Private>
<HintPath>lib\FNA.dll</HintPath>
</Reference>
</ItemGroup>
</When>
<Otherwise>
<ItemGroup>
<Reference Include="Celeste">
<Private>false</Private>
<HintPath>lib-stripped\Celeste.exe</HintPath>
</Reference>
<Reference Include="MMHOOK_Celeste">
<Private>false</Private>
<HintPath>lib-stripped\MMHOOK_Celeste.dll</HintPath>
</Reference>
<Reference Include="FNA">
<Private>false</Private>
<HintPath>lib-stripped\FNA.dll</HintPath>
</Reference>
</ItemGroup>
</Otherwise>
</Choose>
<ItemGroup>
<PackageReference Include="DotNetZip" Version="1.13.8" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="Mono.Cecil" Version="0.11.3" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod" Version="21.03.01.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="21.03.01.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour.HookGen" Version="21.03.01.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.Utils" Version="21.03.01.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.RuntimeDetour.HookGen" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="MonoMod.Utils" Version="21.04.29.01" PrivateAssets="all" ExcludeAssets="runtime" />
<PackageReference Include="YamlDotNet" Version="8.1.2" PrivateAssets="all" ExcludeAssets="runtime" />
</ItemGroup>
</Project>
4 changes: 3 additions & 1 deletion everest.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,7 @@
Version: 1.1.1
DLL: bin/InfiniteBackups.dll
Dependencies:
- Name: Celeste
Version: 1.4.0.0
- Name: Everest
Version: 1.2707.0
Version: 1.2879.0
Binary file modified lib-stripped/Celeste.exe
Binary file not shown.
Binary file modified lib-stripped/FNA.dll
Binary file not shown.
Binary file modified lib-stripped/MMHOOK_Celeste.dll
Binary file not shown.
2 changes: 1 addition & 1 deletion lib-stripped/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
These are stripped versions of `Celeste 1.3.1.2 [Everest: 2707-azure-e2671]` with [mono-cil-strip](https://github.com/mono/mono/tree/master/mcs/tools/cil-strip), for being able to compile without having the game installed.
These are stripped versions of `Celeste 1.4.0.0 [Everest: 2879-azure-fc9e7]` with [mono-cil-strip](https://github.com/mono/mono/tree/master/mcs/tools/cil-strip), for being able to compile without having the game installed.

0 comments on commit 0aadc9d

Please sign in to comment.