From b69ba47ed19fa8f22d85bf4a8f0868488fa0a782 Mon Sep 17 00:00:00 2001 From: "Ivan \"KaiSD\" Korystin" Date: Mon, 23 Jun 2014 01:08:01 +0400 Subject: [PATCH] Reconfigured the solution. Relocated the files to suite the Unity3D project folder structure. --- Assembly-CSharp-vs.csproj | 97 +++++++++++++++++ Assembly-CSharp.csproj | 97 +++++++++++++++++ .../scripts/coa4u}/ActionsBase/Action.cs | 0 .../coa4u}/ActionsBase/ActionInterval.cs | 0 .../coa4u}/ActionsBase/ActionParallel.cs | 0 .../coa4u}/ActionsBase/ActionRandom.cs | 0 .../coa4u}/ActionsBase/ActionRepeat.cs | 0 .../coa4u}/ActionsBase/ActionSequence.cs | 0 .../scripts/coa4u}/ActionsBase/ActionStop.cs | 0 .../coa4u}/ActionsInstant/ActionHide.cs | 0 .../coa4u}/ActionsInstant/ActionLog.cs | 0 .../ActionsInstant/ActionSendMessage.cs | 0 .../ActionsInstant/ActionSetDirection.cs | 0 .../coa4u}/ActionsInstant/ActionSetPlace.cs | 0 .../ActionsInstant/ActionSetRotation.cs | 0 .../coa4u}/ActionsInstant/ActionSetTint.cs | 0 .../coa4u}/ActionsInstant/ActionShow.cs | 0 .../ActionsInstant/ActionToggleVisibility.cs | 0 .../coa4u}/ActionsInterval/ActionBezierAbs.cs | 0 .../coa4u}/ActionsInterval/ActionBezierRel.cs | 0 .../coa4u}/ActionsInterval/ActionBlink.cs | 0 .../coa4u}/ActionsInterval/ActionDelay.cs | 0 .../coa4u}/ActionsInterval/ActionFadeBy.cs | 0 .../coa4u}/ActionsInterval/ActionFadeIn.cs | 0 .../coa4u}/ActionsInterval/ActionFadeOut.cs | 0 .../coa4u}/ActionsInterval/ActionFadeTo.cs | 0 .../coa4u}/ActionsInterval/ActionJumpBy.cs | 0 .../coa4u}/ActionsInterval/ActionJumpTo.cs | 0 .../coa4u}/ActionsInterval/ActionMoveBy.cs | 0 .../coa4u}/ActionsInterval/ActionMoveTo.cs | 0 .../coa4u}/ActionsInterval/ActionRotateBy.cs | 0 .../coa4u}/ActionsInterval/ActionRotateTo.cs | 0 .../coa4u}/ActionsInterval/ActionScaleBy.cs | 0 .../coa4u}/ActionsInterval/ActionScaleTo.cs | 0 .../coa4u}/ActionsInterval/ActionSkewBy.cs | 0 .../coa4u}/ActionsInterval/ActionTintBy.cs | 0 .../coa4u}/ActionsInterval/ActionTintTo.cs | 0 .../coa4u}/CoreClasses/MethodHolder.cs | 0 .../scripts/coa4u}/UnityComponents/Actor.cs | 0 .../UnityComponents/ActorSampleActions.cs | 0 coa4u-csharp.sln | 39 +++++++ coa4u.csproj | 102 ------------------ coa4u.csproj.user | 3 - coa4u.sln | 36 +++++-- coa4u.suo | Bin 35328 -> 0 bytes 45 files changed, 260 insertions(+), 114 deletions(-) create mode 100644 Assembly-CSharp-vs.csproj create mode 100644 Assembly-CSharp.csproj rename {src => Assets/scripts/coa4u}/ActionsBase/Action.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionInterval.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionParallel.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionRandom.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionRepeat.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionSequence.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsBase/ActionStop.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionHide.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionLog.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionSendMessage.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionSetDirection.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionSetPlace.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionSetRotation.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionSetTint.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionShow.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInstant/ActionToggleVisibility.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionBezierAbs.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionBezierRel.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionBlink.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionDelay.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionFadeBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionFadeIn.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionFadeOut.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionFadeTo.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionJumpBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionJumpTo.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionMoveBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionMoveTo.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionRotateBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionRotateTo.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionScaleBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionScaleTo.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionSkewBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionTintBy.cs (100%) rename {src => Assets/scripts/coa4u}/ActionsInterval/ActionTintTo.cs (100%) rename {src => Assets/scripts/coa4u}/CoreClasses/MethodHolder.cs (100%) rename {src => Assets/scripts/coa4u}/UnityComponents/Actor.cs (100%) rename {src => Assets/scripts/coa4u}/UnityComponents/ActorSampleActions.cs (100%) create mode 100644 coa4u-csharp.sln delete mode 100644 coa4u.csproj delete mode 100644 coa4u.csproj.user delete mode 100644 coa4u.suo diff --git a/Assembly-CSharp-vs.csproj b/Assembly-CSharp-vs.csproj new file mode 100644 index 0000000..330ce6d --- /dev/null +++ b/Assembly-CSharp-vs.csproj @@ -0,0 +1,97 @@ + + + + Debug + AnyCPU + 10.0.20506 + 2.0 + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5} + Library + Properties + + Assembly-CSharp + v3.5 + 512 + Assets + + + true + full + false + Temp\bin\Debug\ + DEBUG;TRACE;UNITY_STANDALONE_WIN;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_AUDIO_FMOD;UNITY_STANDALONE;ENABLE_MONO;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_GENERICS;ENABLE_SUBSTANCE;INCLUDE_WP8SUPPORT;ENABLE_MOVIES;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_DUCK_TYPING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;UNITY_4_3_4;UNITY_4_3;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_WIN + prompt + 4 + 0169 + + + pdbonly + true + Temp\bin\Release\ + TRACE + prompt + 4 + 0169 + + + + + + + + C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEngine.dll + + + C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEditor.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Assembly-CSharp.csproj b/Assembly-CSharp.csproj new file mode 100644 index 0000000..330ce6d --- /dev/null +++ b/Assembly-CSharp.csproj @@ -0,0 +1,97 @@ + + + + Debug + AnyCPU + 10.0.20506 + 2.0 + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5} + Library + Properties + + Assembly-CSharp + v3.5 + 512 + Assets + + + true + full + false + Temp\bin\Debug\ + DEBUG;TRACE;UNITY_STANDALONE_WIN;ENABLE_MICROPHONE;ENABLE_TEXTUREID_MAP;ENABLE_AUDIO_FMOD;UNITY_STANDALONE;ENABLE_MONO;ENABLE_SPRITES;ENABLE_TERRAIN;ENABLE_GENERICS;ENABLE_SUBSTANCE;INCLUDE_WP8SUPPORT;ENABLE_MOVIES;ENABLE_WWW;ENABLE_IMAGEEFFECTS;ENABLE_WEBCAM;INCLUDE_METROSUPPORT;RENDER_SOFTWARE_CURSOR;ENABLE_NETWORK;ENABLE_PHYSICS;ENABLE_CACHING;ENABLE_CLOTH;ENABLE_2D_PHYSICS;ENABLE_SHADOWS;ENABLE_AUDIO;ENABLE_NAVMESH_CARVING;ENABLE_DUCK_TYPING;ENABLE_SINGLE_INSTANCE_BUILD_SETTING;UNITY_4_3_4;UNITY_4_3;ENABLE_PROFILER;UNITY_EDITOR;UNITY_EDITOR_WIN + prompt + 4 + 0169 + + + pdbonly + true + Temp\bin\Release\ + TRACE + prompt + 4 + 0169 + + + + + + + + C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEngine.dll + + + C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEditor.dll + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/src/ActionsBase/Action.cs b/Assets/scripts/coa4u/ActionsBase/Action.cs similarity index 100% rename from src/ActionsBase/Action.cs rename to Assets/scripts/coa4u/ActionsBase/Action.cs diff --git a/src/ActionsBase/ActionInterval.cs b/Assets/scripts/coa4u/ActionsBase/ActionInterval.cs similarity index 100% rename from src/ActionsBase/ActionInterval.cs rename to Assets/scripts/coa4u/ActionsBase/ActionInterval.cs diff --git a/src/ActionsBase/ActionParallel.cs b/Assets/scripts/coa4u/ActionsBase/ActionParallel.cs similarity index 100% rename from src/ActionsBase/ActionParallel.cs rename to Assets/scripts/coa4u/ActionsBase/ActionParallel.cs diff --git a/src/ActionsBase/ActionRandom.cs b/Assets/scripts/coa4u/ActionsBase/ActionRandom.cs similarity index 100% rename from src/ActionsBase/ActionRandom.cs rename to Assets/scripts/coa4u/ActionsBase/ActionRandom.cs diff --git a/src/ActionsBase/ActionRepeat.cs b/Assets/scripts/coa4u/ActionsBase/ActionRepeat.cs similarity index 100% rename from src/ActionsBase/ActionRepeat.cs rename to Assets/scripts/coa4u/ActionsBase/ActionRepeat.cs diff --git a/src/ActionsBase/ActionSequence.cs b/Assets/scripts/coa4u/ActionsBase/ActionSequence.cs similarity index 100% rename from src/ActionsBase/ActionSequence.cs rename to Assets/scripts/coa4u/ActionsBase/ActionSequence.cs diff --git a/src/ActionsBase/ActionStop.cs b/Assets/scripts/coa4u/ActionsBase/ActionStop.cs similarity index 100% rename from src/ActionsBase/ActionStop.cs rename to Assets/scripts/coa4u/ActionsBase/ActionStop.cs diff --git a/src/ActionsInstant/ActionHide.cs b/Assets/scripts/coa4u/ActionsInstant/ActionHide.cs similarity index 100% rename from src/ActionsInstant/ActionHide.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionHide.cs diff --git a/src/ActionsInstant/ActionLog.cs b/Assets/scripts/coa4u/ActionsInstant/ActionLog.cs similarity index 100% rename from src/ActionsInstant/ActionLog.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionLog.cs diff --git a/src/ActionsInstant/ActionSendMessage.cs b/Assets/scripts/coa4u/ActionsInstant/ActionSendMessage.cs similarity index 100% rename from src/ActionsInstant/ActionSendMessage.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionSendMessage.cs diff --git a/src/ActionsInstant/ActionSetDirection.cs b/Assets/scripts/coa4u/ActionsInstant/ActionSetDirection.cs similarity index 100% rename from src/ActionsInstant/ActionSetDirection.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionSetDirection.cs diff --git a/src/ActionsInstant/ActionSetPlace.cs b/Assets/scripts/coa4u/ActionsInstant/ActionSetPlace.cs similarity index 100% rename from src/ActionsInstant/ActionSetPlace.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionSetPlace.cs diff --git a/src/ActionsInstant/ActionSetRotation.cs b/Assets/scripts/coa4u/ActionsInstant/ActionSetRotation.cs similarity index 100% rename from src/ActionsInstant/ActionSetRotation.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionSetRotation.cs diff --git a/src/ActionsInstant/ActionSetTint.cs b/Assets/scripts/coa4u/ActionsInstant/ActionSetTint.cs similarity index 100% rename from src/ActionsInstant/ActionSetTint.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionSetTint.cs diff --git a/src/ActionsInstant/ActionShow.cs b/Assets/scripts/coa4u/ActionsInstant/ActionShow.cs similarity index 100% rename from src/ActionsInstant/ActionShow.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionShow.cs diff --git a/src/ActionsInstant/ActionToggleVisibility.cs b/Assets/scripts/coa4u/ActionsInstant/ActionToggleVisibility.cs similarity index 100% rename from src/ActionsInstant/ActionToggleVisibility.cs rename to Assets/scripts/coa4u/ActionsInstant/ActionToggleVisibility.cs diff --git a/src/ActionsInterval/ActionBezierAbs.cs b/Assets/scripts/coa4u/ActionsInterval/ActionBezierAbs.cs similarity index 100% rename from src/ActionsInterval/ActionBezierAbs.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionBezierAbs.cs diff --git a/src/ActionsInterval/ActionBezierRel.cs b/Assets/scripts/coa4u/ActionsInterval/ActionBezierRel.cs similarity index 100% rename from src/ActionsInterval/ActionBezierRel.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionBezierRel.cs diff --git a/src/ActionsInterval/ActionBlink.cs b/Assets/scripts/coa4u/ActionsInterval/ActionBlink.cs similarity index 100% rename from src/ActionsInterval/ActionBlink.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionBlink.cs diff --git a/src/ActionsInterval/ActionDelay.cs b/Assets/scripts/coa4u/ActionsInterval/ActionDelay.cs similarity index 100% rename from src/ActionsInterval/ActionDelay.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionDelay.cs diff --git a/src/ActionsInterval/ActionFadeBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionFadeBy.cs similarity index 100% rename from src/ActionsInterval/ActionFadeBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionFadeBy.cs diff --git a/src/ActionsInterval/ActionFadeIn.cs b/Assets/scripts/coa4u/ActionsInterval/ActionFadeIn.cs similarity index 100% rename from src/ActionsInterval/ActionFadeIn.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionFadeIn.cs diff --git a/src/ActionsInterval/ActionFadeOut.cs b/Assets/scripts/coa4u/ActionsInterval/ActionFadeOut.cs similarity index 100% rename from src/ActionsInterval/ActionFadeOut.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionFadeOut.cs diff --git a/src/ActionsInterval/ActionFadeTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionFadeTo.cs similarity index 100% rename from src/ActionsInterval/ActionFadeTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionFadeTo.cs diff --git a/src/ActionsInterval/ActionJumpBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionJumpBy.cs similarity index 100% rename from src/ActionsInterval/ActionJumpBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionJumpBy.cs diff --git a/src/ActionsInterval/ActionJumpTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionJumpTo.cs similarity index 100% rename from src/ActionsInterval/ActionJumpTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionJumpTo.cs diff --git a/src/ActionsInterval/ActionMoveBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionMoveBy.cs similarity index 100% rename from src/ActionsInterval/ActionMoveBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionMoveBy.cs diff --git a/src/ActionsInterval/ActionMoveTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionMoveTo.cs similarity index 100% rename from src/ActionsInterval/ActionMoveTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionMoveTo.cs diff --git a/src/ActionsInterval/ActionRotateBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionRotateBy.cs similarity index 100% rename from src/ActionsInterval/ActionRotateBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionRotateBy.cs diff --git a/src/ActionsInterval/ActionRotateTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionRotateTo.cs similarity index 100% rename from src/ActionsInterval/ActionRotateTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionRotateTo.cs diff --git a/src/ActionsInterval/ActionScaleBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionScaleBy.cs similarity index 100% rename from src/ActionsInterval/ActionScaleBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionScaleBy.cs diff --git a/src/ActionsInterval/ActionScaleTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionScaleTo.cs similarity index 100% rename from src/ActionsInterval/ActionScaleTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionScaleTo.cs diff --git a/src/ActionsInterval/ActionSkewBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionSkewBy.cs similarity index 100% rename from src/ActionsInterval/ActionSkewBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionSkewBy.cs diff --git a/src/ActionsInterval/ActionTintBy.cs b/Assets/scripts/coa4u/ActionsInterval/ActionTintBy.cs similarity index 100% rename from src/ActionsInterval/ActionTintBy.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionTintBy.cs diff --git a/src/ActionsInterval/ActionTintTo.cs b/Assets/scripts/coa4u/ActionsInterval/ActionTintTo.cs similarity index 100% rename from src/ActionsInterval/ActionTintTo.cs rename to Assets/scripts/coa4u/ActionsInterval/ActionTintTo.cs diff --git a/src/CoreClasses/MethodHolder.cs b/Assets/scripts/coa4u/CoreClasses/MethodHolder.cs similarity index 100% rename from src/CoreClasses/MethodHolder.cs rename to Assets/scripts/coa4u/CoreClasses/MethodHolder.cs diff --git a/src/UnityComponents/Actor.cs b/Assets/scripts/coa4u/UnityComponents/Actor.cs similarity index 100% rename from src/UnityComponents/Actor.cs rename to Assets/scripts/coa4u/UnityComponents/Actor.cs diff --git a/src/UnityComponents/ActorSampleActions.cs b/Assets/scripts/coa4u/UnityComponents/ActorSampleActions.cs similarity index 100% rename from src/UnityComponents/ActorSampleActions.cs rename to Assets/scripts/coa4u/UnityComponents/ActorSampleActions.cs diff --git a/coa4u-csharp.sln b/coa4u-csharp.sln new file mode 100644 index 0000000..ceb8ee5 --- /dev/null +++ b/coa4u-csharp.sln @@ -0,0 +1,39 @@ +Microsoft Visual Studio Solution File, Format Version 11.00 +# Visual Studio 2008 + +Project("{6494E6C4-8F81-AC54-513F-F4FE85E59CCD}") = "coa4u", "Assembly-CSharp-vs.csproj", "{AFB33E13-8308-E8F8-7362-3FF643D1ACD5}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = Assembly-CSharp.csproj + Policies = $0 + $0.TextStylePolicy = $1 + $1.inheritsSet = null + $1.scope = text/x-csharp + $0.CSharpFormattingPolicy = $2 + $2.inheritsSet = Mono + $2.inheritsScope = text/x-csharp + $2.scope = text/x-csharp + $0.TextStylePolicy = $3 + $3.FileWidth = 120 + $3.TabWidth = 4 + $3.EolMarker = Unix + $3.inheritsSet = Mono + $3.inheritsScope = text/plain + $3.scope = text/plain + EndGlobalSection + +EndGlobal diff --git a/coa4u.csproj b/coa4u.csproj deleted file mode 100644 index 3002389..0000000 --- a/coa4u.csproj +++ /dev/null @@ -1,102 +0,0 @@ - - - - Debug - x86 - 8.0.30703 - 2.0 - {9B556AA5-C2CD-4F5A-A087-7D4E3437F09B} - Library - Properties - coa4u - coa4u - v4.0 - Client - 512 - - - x86 - true - full - false - bin\Debug\ - DEBUG;TRACE - prompt - 4 - - - x86 - pdbonly - true - bin\Release\ - TRACE - prompt - 4 - - - - - - - - - - - C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEngine.dll - - - C:/Program Files (x86)/Unity/Editor/Data/Managed/UnityEditor.dll - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/coa4u.csproj.user b/coa4u.csproj.user deleted file mode 100644 index ace9a86..0000000 --- a/coa4u.csproj.user +++ /dev/null @@ -1,3 +0,0 @@ - - - \ No newline at end of file diff --git a/coa4u.sln b/coa4u.sln index aa977b5..363f88b 100644 --- a/coa4u.sln +++ b/coa4u.sln @@ -1,20 +1,38 @@ - Microsoft Visual Studio Solution File, Format Version 11.00 -# Visual C# Express 2010 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "coa4u", "coa4u.csproj", "{9B556AA5-C2CD-4F5A-A087-7D4E3437F09B}" +# Visual Studio 2008 + +Project("{6494E6C4-8F81-AC54-513F-F4FE85E59CCD}") = "coa4u", "Assembly-CSharp.csproj", "{AFB33E13-8308-E8F8-7362-3FF643D1ACD5}" EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|x86 = Debug|x86 - Release|x86 = Release|x86 + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {9B556AA5-C2CD-4F5A-A087-7D4E3437F09B}.Debug|x86.ActiveCfg = Debug|x86 - {9B556AA5-C2CD-4F5A-A087-7D4E3437F09B}.Debug|x86.Build.0 = Debug|x86 - {9B556AA5-C2CD-4F5A-A087-7D4E3437F09B}.Release|x86.ActiveCfg = Release|x86 - {9B556AA5-C2CD-4F5A-A087-7D4E3437F09B}.Release|x86.Build.0 = Release|x86 + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Debug|Any CPU.Build.0 = Debug|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Release|Any CPU.ActiveCfg = Release|Any CPU + {AFB33E13-8308-E8F8-7362-3FF643D1ACD5}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE EndGlobalSection + GlobalSection(MonoDevelopProperties) = preSolution + StartupItem = Assembly-CSharp.csproj + Policies = $0 + $0.TextStylePolicy = $1 + $1.inheritsSet = null + $1.scope = text/x-csharp + $0.CSharpFormattingPolicy = $2 + $2.inheritsSet = Mono + $2.inheritsScope = text/x-csharp + $2.scope = text/x-csharp + $0.TextStylePolicy = $3 + $3.FileWidth = 120 + $3.TabWidth = 4 + $3.EolMarker = Unix + $3.inheritsSet = Mono + $3.inheritsScope = text/plain + $3.scope = text/plain + EndGlobalSection EndGlobal diff --git a/coa4u.suo b/coa4u.suo deleted file mode 100644 index a8ba14d75a7fef193688895ef1ee0b5d521a6324..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 35328 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