Skip to content

Commit a3ef912

Browse files
author
plash
committed
Fixed .gitignores; updated Mono build files and build/update_mono_build_files.sh. Removed user-specific build data. Fixed typo in MooNetServer. Removed some old name references.
1 parent cd3fab1 commit a3ef912

15 files changed

+351
-327
lines changed

WARNING

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
D3Sharp's focus is entirely on education, and we would like to keep it that way.
1+
mooege's focus is entirely on education, and we would like to keep it that way.
22

33
Since any public and/or commercial use of this software is considered illegal
4-
in many countries (please refer to your local law), the D3Sharp team
4+
in many countries (please refer to your local law), the mooege team
55
will not provide any help nor support with such usage in any way.
66
Every user of this software is encouraged to make sure no law is being broken
77
in his/her country.
88

9-
The D3Sharp team cannot take any responsibility for the use of this software
9+
The mooege team cannot take any responsibility for the use of this software
1010
by end-users.

build/.gitignore

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/_ReSharper.Mooege-VS2010/
2-
/*.suo
32
/*.6.0.ReSharper.user
3+
/*.suo
4+
/*.userprefs
5+
/*.user

build/Mooege-Mono.sln

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11

22
Microsoft Visual Studio Solution File, Format Version 11.00
33
# Visual Studio 2010
4-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "D3Proto", "D3Proto\D3Proto.csproj", "{4CC19847-6F24-4453-9E31-126F94308AB9}"
4+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Mooege-Mono", "..\src\Mooege\Mooege-Mono.csproj", "{41BB6B2D-BD3F-42B6-860C-D21DC74B33CD}"
55
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "D3Sharp-Mono", "D3Sharp\D3Sharp-Mono.csproj", "{41BB6B2D-BD3F-42B6-860C-D21DC74B33CD}"
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LibMooNet", "..\src\LibMooNet\LibMooNet.csproj", "{4CC19847-6F24-4453-9E31-126F94308AB9}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
@@ -32,14 +32,16 @@ Global
3232
{4CC19847-6F24-4453-9E31-126F94308AB9}.Debug|Mixed Platforms.ActiveCfg = Debug|Any CPU
3333
{4CC19847-6F24-4453-9E31-126F94308AB9}.Debug|Mixed Platforms.Build.0 = Debug|Any CPU
3434
{4CC19847-6F24-4453-9E31-126F94308AB9}.Debug|x86.ActiveCfg = Debug|Any CPU
35+
{4CC19847-6F24-4453-9E31-126F94308AB9}.Debug|x86.Build.0 = Debug|Any CPU
3536
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|Any CPU.ActiveCfg = Release|Any CPU
3637
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|Any CPU.Build.0 = Release|Any CPU
3738
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|Mixed Platforms.ActiveCfg = Release|Any CPU
3839
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|Mixed Platforms.Build.0 = Release|Any CPU
3940
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|x86.ActiveCfg = Release|Any CPU
41+
{4CC19847-6F24-4453-9E31-126F94308AB9}.Release|x86.Build.0 = Release|Any CPU
4042
EndGlobalSection
4143
GlobalSection(MonoDevelopProperties) = preSolution
42-
StartupItem = D3Sharp\D3Sharp-Mono.csproj
44+
StartupItem = ..\src\Mooege\Mooege-Mono.csproj
4345
EndGlobalSection
4446
GlobalSection(SolutionProperties) = preSolution
4547
HideSolutionNode = FALSE

build/fix_project_for_mono.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,4 @@ fi
1111
file_in=$1
1212
file_out=$2
1313

14-
sed -e 's/\.\.\\libs\\sqlite-mixed/\.\.\\libs\\sqlite-managed/g' $file_in > $file_out
14+
sed -e 's/dep\\sqlite\\sqlite-mixed/dep\\sqlite\\sqlite-managed/g' $file_in > $file_out

build/tools/gs/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/_ReSharper.GS-Tools/
22
/*.6.0.ReSharper.user
33
/*.suo
4+
/*.userprefs
5+
/*.user

build/tools/moonet/.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
/_ReSharper.MooNet-Tools/
22
/*.6.0.ReSharper.user
33
/*.suo
4+
/*.userprefs
5+
/*.user

build/update_mono_build_files.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22

33
# Run from repo root
44

5-
sh scripts/fix_project_for_mono.sh "source/D3Sharp/D3Sharp.csproj" "source/D3Sharp/D3Sharp-Mono.csproj"
5+
sh build/fix_project_for_mono.sh "src/Mooege/Mooege-VS2010.csproj" "src/Mooege/Mooege-Mono.csproj"

src/.gitignore

+3-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
/_ReSharper.D3Sharp-win32/
2-
/*.user
3-
/*.suo
41
/*.6.0.ReSharper.user
2+
/*.suo
53
/*.userprefs
6-
/_ReSharper.D3Sharp/
4+
/*.user
5+

src/LibMooNet/.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
bin/
22
obj/
3-
D3Proto.pidb
3+
/*.ReSharper
4+
/*.pidb

src/LibMooNet/LibMooNet.csproj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
1+
<?xml version="1.0" encoding="utf-8"?>
22
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<PropertyGroup>
44
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
@@ -34,7 +34,7 @@
3434
</Reference>
3535
<Reference Include="Google.ProtocolBuffers, Version=2.3.0.277, Culture=neutral, PublicKeyToken=17b3b1f090c3ea48">
3636
<SpecificVersion>False</SpecificVersion>
37-
<HintPath>..\libs\Google.ProtocolBuffers.dll</HintPath>
37+
<HintPath>..\..\dep\Google.ProtocolBuffers.dll</HintPath>
3838
</Reference>
3939
</ItemGroup>
4040
<ItemGroup>

src/LibMooNet/LibMooNet.pidb

-3.66 MB
Binary file not shown.

src/Mooege/.gitignore

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
bin/
22
obj/
3-
D3Sharp.pidb
4-
D3Sharp-Mono.pidb
3+
/*.ReSharper
4+
/*.pidb

src/Mooege/Mooege-Mono.csproj

+324-308
Large diffs are not rendered by default.

src/Mooege/Mooege-VS2010.pidb

-462 KB
Binary file not shown.

src/Mooege/Net/MooNet/MooNetServer.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ public MooNetServer()
3030

3131
void BnetServer_OnConnect(object sender, ConnectionEventArgs e)
3232
{
33-
Logger.Trace("MoonNet-Client connected: {0}", e.Connection.ToString());
33+
Logger.Trace("MooNet-Client connected: {0}", e.Connection.ToString());
3434
e.Connection.Client = new MooNetClient(e.Connection);
3535
}
3636

0 commit comments

Comments
 (0)