-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #255 from SubnauticaModding/dev
- Loading branch information
Showing
64 changed files
with
613 additions
and
34,549 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
Binary file not shown.
Binary file removed
BIN
-251 KB
BepinexPackages/BelowZero_Packages/SMLHelper/QMods/SMLHelper_BZ/SMLHelper.dll
Binary file not shown.
8,425 changes: 0 additions & 8,425 deletions
8,425
BepinexPackages/BelowZero_Packages/SMLHelper/QMods/SMLHelper_BZ/SMLHelper.xml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
BepinexPackages/BelowZero_Packages/SMLHelper/QMods/SMLHelper_BZ/mod.json
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-251 KB
BepinexPackages/BelowZero_Packages/SMLHelper_Exp/QMods/SMLHelper_BZ/SMLHelper.dll
Binary file not shown.
8,425 changes: 0 additions & 8,425 deletions
8,425
BepinexPackages/BelowZero_Packages/SMLHelper_Exp/QMods/SMLHelper_BZ/SMLHelper.xml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
BepinexPackages/BelowZero_Packages/SMLHelper_Exp/QMods/SMLHelper_BZ/mod.json
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-253 KB
BepinexPackages/Subnautica_Packages/SMLHelper/QMods/Modding Helper/SMLHelper.dll
Binary file not shown.
8,563 changes: 0 additions & 8,563 deletions
8,563
BepinexPackages/Subnautica_Packages/SMLHelper/QMods/Modding Helper/SMLHelper.xml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
BepinexPackages/Subnautica_Packages/SMLHelper/QMods/Modding Helper/mod.json
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file removed
BIN
-253 KB
BepinexPackages/Subnautica_Packages/SMLHelper_Exp/QMods/Modding Helper/SMLHelper.dll
Binary file not shown.
8,563 changes: 0 additions & 8,563 deletions
8,563
BepinexPackages/Subnautica_Packages/SMLHelper_Exp/QMods/Modding Helper/SMLHelper.xml
This file was deleted.
Oops, something went wrong.
11 changes: 0 additions & 11 deletions
11
BepinexPackages/Subnautica_Packages/SMLHelper_Exp/QMods/Modding Helper/mod.json
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,10 @@ | ||
using System.Reflection; | ||
using System.Runtime.CompilerServices; | ||
using System.Runtime.InteropServices; | ||
|
||
// General Information about an assembly is controlled through the following | ||
// set of attributes. Change these attribute values to modify the information | ||
// associated with an assembly. | ||
[assembly: AssemblyTitle("Example mod")] | ||
[assembly: AssemblyDescription("")] | ||
[assembly: AssemblyConfiguration("")] | ||
[assembly: AssemblyCompany("")] | ||
[assembly: AssemblyProduct("Example mod")] | ||
[assembly: AssemblyCopyright("Copyright © 2019")] | ||
[assembly: AssemblyTrademark("")] | ||
[assembly: AssemblyCulture("")] | ||
|
||
// Setting ComVisible to false makes the types in this assembly not visible | ||
// to COM components. If you need to access a type in this assembly from | ||
// COM, set the ComVisible attribute to true on that type. | ||
[assembly: ComVisible(false)] | ||
|
||
// The following GUID is for the ID of the typelib if this project is exposed to COM | ||
[assembly: Guid("c8fb0981-77d2-47c7-bbef-a3a9ebacacbf")] | ||
|
||
// Version information for an assembly consists of the following four values: | ||
// | ||
// Major Version | ||
// Minor Version | ||
// Build Number | ||
// Revision | ||
// | ||
// You can specify all the values or you can default the Build and Revision Numbers | ||
// by using the '*' as shown below: | ||
// [assembly: AssemblyVersion("1.0.*")] | ||
[assembly: AssemblyVersion("2.13.4")] | ||
[assembly: AssemblyFileVersion("2.13.4")] |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Condition="'$(OS)' == 'Windows_NT'"> | ||
<PowerShell>powershell.exe</PowerShell> | ||
</PropertyGroup> | ||
<PropertyGroup Condition="'$(OS)' == 'Unix'"> | ||
<PowerShell>pwsh</PowerShell> | ||
</PropertyGroup> | ||
<Target Name="ZipFiles" AfterTargets="PostBuildEvent"> | ||
<Exec | ||
Command="$(PowerShell) -ExecutionPolicy Bypass -NoProfile -NonInteractive -File $(SolutionDir)Scripts/SMLHelper-post-build.ps1 -SolutionDir $(SolutionDir) -ConfigurationName $(ConfigurationName) -TargetDir $(OutDir) -ProjectDir $(ProjectDir)" | ||
/> | ||
</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
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
Oops, something went wrong.