Skip to content
This repository was archived by the owner on Jun 14, 2025. It is now read-only.

Commit 6f99aaa

Browse files
committed
Merge remote-tracking branch 'ServerMod/master'
2 parents 330d353 + 255eb87 commit 6f99aaa

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# ServerMod2 [![Release](https://img.shields.io/github/release/ServerMod/Smod2.svg)](https://github.com/ServerMod/Smod2/releases) [![Downloads](https://img.shields.io/github/downloads/ServerMod/Smod2/total.svg)](https://github.com/ServerMod/Smod2/releases) [![Discord Server](https://img.shields.io/discord/430468637183442945.svg?label=discord)](https://discord.gg/8nvmMTr)
1+
# ServerMod2 [![Release](https://img.shields.io/github/release/ServerMod/Smod2.svg)](https://github.com/ServerMod/Smod2/releases) [![Downloads](https://img.shields.io/github/downloads/ServerMod/Smod2/total.svg)](https://github.com/ServerMod/Smod2/releases) [![GitHub latest commit](https://badgen.net/github/last-commit/ServerMod/Smod2)](https://GitHub.com/ServerMod/Smod2/commit/) [![Discord Server](https://img.shields.io/discord/430468637183442945.svg?label=discord)](https://discord.gg/8nvmMTr)
22
ServerMod2 is a server side plugin system with a bunch of additional configuration options, bug fixes, security patches and some optimisations built in.
33

44
For how to use/configure SMod, go to the [SMOD WIKI](https://github.com/Grover-c13/Smod2/wiki)

Smod2/PluginManager.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ public class PluginManager
2929
public static readonly int SMOD_REVISION = 2;
3030

3131
public static readonly string SMOD_BUILD = "A";
32+
/// <summary> Used by AssemblyInfo.cs, needs to be a const. </summary>
33+
internal const string AssemblyVersion = "3.10.2.0";
3234

3335
public static readonly string DEPENDENCY_FOLDER = "dependencies";
3436

Smod2/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@
2626
// You can specify all the values or you can default the Build and Revision Numbers
2727
// by using the '*' as shown below:
2828
// [assembly: AssemblyVersion("1.0.*")]
29-
[assembly: AssemblyVersion("3.9.0.0")] //Just imagine the last character is the equivalent letter because otherwise it gets angry
30-
[assembly: AssemblyFileVersion("3.9.0.0")]
29+
[assembly: AssemblyVersion(Smod2.PluginManager.AssemblyVersion)]
30+
[assembly: AssemblyFileVersion(Smod2.PluginManager.AssemblyVersion)]
31+
[assembly: AssemblyInformationalVersion(Smod2.PluginManager.AssemblyVersion)]

Smod2/Smod2.csproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,7 @@
88
<GenerateAssemblyProductAttribute>false</GenerateAssemblyProductAttribute>
99
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
1010
<GenerateAssemblyVersionAttribute>false</GenerateAssemblyVersionAttribute>
11+
<RepositoryUrl>https://github.com/ServerMod/Smod2</RepositoryUrl>
12+
<GenerateAssemblyInformationalVersionAttribute>false</GenerateAssemblyInformationalVersionAttribute>
1113
</PropertyGroup>
1214
</Project>

0 commit comments

Comments
 (0)