Mercurial > hg > Database > jungle-sharp
changeset 38:e954d456665c
library is made by rake
line wrap: on
line diff
--- a/Main/ObjectMapper/ConvertObject.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Main/ObjectMapper/ConvertObject.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using System; using System.Runtime.Serialization.Formatters.Binary;
--- a/Main/ObjectMapper/SceneNode.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Main/ObjectMapper/SceneNode.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,6 +1,6 @@ using System.Collections; using System.Collections.Generic; -using UnityEngine; +// using UnityEngine; using System; namespace JungleDB { [Serializable] @@ -49,4 +49,4 @@ m_childs.Clear(); } } -} \ No newline at end of file +}
--- a/Main/jungle-main/data/treemap/TreeMap.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Main/jungle-main/data/treemap/TreeMap.cs Wed Feb 22 16:58:10 2017 +0900 @@ -74,6 +74,7 @@ root.checkDepth (0, 0); } +#pragma warning disable 0169 public class iterators<T> : IEnumerator<T> { Stack<TreeMapNode<T, V>> nodeStack = new Stack<TreeMapNode<T, V>>(); TreeMapNode<T,V> currentNode = new TreeMap<T,V>().getRoot(); @@ -124,6 +125,7 @@ } } +#pragma warning restore 0169 } }
--- a/Test/junge-main/DefaultJungleTreeTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/DefaultJungleTreeTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System; //using System.Diagnostics; using JungleDB; @@ -12,4 +12,4 @@ private void Start () { } -} \ No newline at end of file +}
--- a/Test/junge-main/data/list/ListTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/list/ListTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using JungleDB;
--- a/Test/junge-main/data/list/deleteTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/list/deleteTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using JungleDB; public class deleteTest : MonoBehaviour {
--- a/Test/junge-main/data/list/listAdd.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/list/listAdd.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using System; using JungleDB;
--- a/Test/junge-main/data/list/replaceTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/list/replaceTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using JungleDB; public class replaceTest : MonoBehaviour {
--- a/Test/junge-main/data/treemap/TreeMapDelete.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/treemap/TreeMapDelete.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using JungleDB; public class TreeMapDelete : MonoBehaviour {
--- a/Test/junge-main/data/treemap/TreeMapTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/data/treemap/TreeMapTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using JungleDB;
--- a/Test/junge-main/jungle/core/nodeeditor/PutAttributeTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/junge-main/jungle/core/nodeeditor/PutAttributeTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using JungleDB;
--- a/Test/jungle-network/operations/NetworkAppendChildOperationTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkAppendChildOperationTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using JungleDB;
--- a/Test/jungle-network/operations/NetworkDeleteAttributeOperationTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkDeleteAttributeOperationTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using JungleDB;
--- a/Test/jungle-network/operations/NetworkDeleteChildAtOperationTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkDeleteChildAtOperationTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using JungleDB;
--- a/Test/jungle-network/operations/NetworkNodeOperationTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkNodeOperationTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using JungleDB;
--- a/Test/jungle-network/operations/NetworkPutAttributeOperationTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkPutAttributeOperationTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using System;
--- a/Test/jungle-network/operations/NetworkTreeOperationLogTest.cs Wed Feb 22 16:35:16 2017 +0900 +++ b/Test/jungle-network/operations/NetworkTreeOperationLogTest.cs Wed Feb 22 16:58:10 2017 +0900 @@ -1,4 +1,4 @@ -using UnityEngine; +// using UnityEngine; using System.Collections; using MsgPack; using JungleDB;
--- a/rakefile.rb Wed Feb 22 16:35:16 2017 +0900 +++ b/rakefile.rb Wed Feb 22 16:58:10 2017 +0900 @@ -1,10 +1,36 @@ CSC = "mcs" +UNITY_SRC = [ + "Test/junge-main/DefaultJungleTreeTest.cs", + "Test/junge-main/data/list/ListTest.cs", + "Test/junge-main/data/list/deleteTest.cs", + "Test/junge-main/data/list/listAdd.cs", + "Test/junge-main/data/list/replaceTest.cs", + "Test/junge-main/data/treemap/TreeMapDelete.cs", + "Test/junge-main/data/treemap/TreeMapTest.cs", + "Test/junge-main/jungle/core/nodeeditor/PutAttributeTest.cs", + "Test/jungle-network/operations/NetworkAppendChildOperationTest.cs", + "Test/jungle-network/operations/NetworkDeleteAttributeOperationTest.cs", + "Test/jungle-network/operations/NetworkDeleteChildAtOperationTest.cs", + "Test/jungle-network/operations/NetworkNodeOperationTest.cs", + "Test/jungle-network/operations/NetworkPutAttributeOperationTest.cs", + "Test/jungle-network/operations/NetworkTreeOperationLogTest.cs", + "Main/ObjectMapper/SceneNode.cs", + "Main/ObjectMapper/ConvertObject.cs", +] + + SRC = FileList[ '**/*.cs'] + +UNITY_SRC.each do | f | + SRC.exclude(f) +end + + BUILD_DIR = "build" FULL_NAME = "jungle-sharp.exe" -TARGET = 'exe' +TARGET = 'library' REFS = ["jungle-sharp.dll"] task :compile do