-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added compilation for ZiosThemesEditor as editor-only managed plugin
-- ZiosTheme project file has been split into two, one UnityEngine/Standalone specific; the other UnityEditor type -- ZiosTheme solution now compiles the projects into two managed .dll's -- Adjustments have been done for the Hook support and Themes editor interface file from preventing building the standalone build -- Compilation scripts/batch files are updated to handle the operation of multiple .dll compilation and cleanup properly
- Loading branch information
zios
committed
Jun 20, 2016
1 parent
ed0ec03
commit c091f48
Showing
21 changed files
with
116 additions
and
23 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
/@Solutions/ZiosThemes.dll | ||
/@Solutions~/ZiosThemesEditor.dll | ||
/@Solutions~/ZiosThemes.dll |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion
2
@Solutions/Compile Themes 3.5.7.bat → @Solutions~/Compile Themes 3.5.7.bat
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
2 changes: 1 addition & 1 deletion
2
@Solutions/Compile Themes 4.7.2.bat → @Solutions~/Compile Themes 4.7.2.bat
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
2 changes: 1 addition & 1 deletion
2
...ons/Compile Themes 5.4 (Mono Windows).bat → ...ns~/Compile Themes 5.4 (Mono Windows).bat
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,7 +1,7 @@ | ||
@ECHO OFF | ||
copy /Y 5.4\* . >NUL | ||
echo Compiling ZiosThemes.dll - Mono Framework 4.5 / Unity 5.x... | ||
del ZiosThemes.dll | ||
del ZiosThemes*.dll | ||
call "%programfiles%\Unity\Editor\Data\MonoBleedingEdge\bin\xbuild.bat" ZiosThemes.sln | ||
rmdir /Q /S obj | ||
copy /Y 5.4\* . >NUL |
2 changes: 1 addition & 1 deletion
2
@Solutions/Compile Themes 5.4.bat → @Solutions~/Compile Themes 5.4.bat
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
5 changes: 2 additions & 3 deletions
5
@Solutions/Compile Themes Mac OS X.sh → @Solutions~/Compile Themes Mac OS X.sh
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,5 +1,4 @@ | ||
#!/bin/sh | ||
|
||
rm ZiosThemes.dll | ||
/Applications/Unity/Unity.app/Contents/MonoBleedingEdge/bin/xbuild ZiosThemesMono.sln | ||
rm ZiosThemes*.dll | ||
/Applications/Unity/Unity.app/Contents/MonoBleedingEdge/bin/xbuild ZiosThemes.sln | ||
rm -R obj |
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Release</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProjectGuid>{181349BA-06EE-47B5-928A-AA3413A8C2DA}</ProjectGuid> | ||
<OutputType>Library</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>ZiosThemesEditor</RootNamespace> | ||
<AssemblyName>ZiosThemesEditor</AssemblyName> | ||
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion> | ||
<FileAlignment>512</FileAlignment> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<Optimize>true</Optimize> | ||
<OutputPath>.</OutputPath> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
<DefineConstants>UNITY_EDITOR;UNITY_EDITOR_64;UNITY_EDITOR_WIN;UNITY_THEMES</DefineConstants> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Xml" /> | ||
<Reference Include="UnityEditor"> | ||
<HintPath>UnityEditor.dll</HintPath> | ||
</Reference> | ||
<Reference Include="UnityEngine"> | ||
<HintPath>UnityEngine.dll</HintPath> | ||
</Reference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="Properties\AssemblyInfo.cs" /> | ||
<Compile Include="..\Containers\Container.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\Color.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\ComponentExtensions.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\EditorGUI.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\EditorGUILayout.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\Editor\GenericMenu.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\GameObject.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\GUIContent.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\GUISkin.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\GUIStyle.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\Rect.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\RectOffset.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\Texture.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\UnityObjectExtensions.cs" /> | ||
<Compile Include="..\Extensions\%40Unity\Vector3.cs" /> | ||
<Compile Include="..\Extensions\Array.cs" /> | ||
<Compile Include="..\Extensions\BitArray.cs" /> | ||
<Compile Include="..\Extensions\BitStream.cs" /> | ||
<Compile Include="..\Extensions\Bool.cs" /> | ||
<Compile Include="..\Extensions\Byte.cs" /> | ||
<Compile Include="..\Extensions\ByteArray.cs" /> | ||
<Compile Include="..\Extensions\DateTime.cs" /> | ||
<Compile Include="..\Extensions\Decimal.cs" /> | ||
<Compile Include="..\Extensions\Delegate.cs" /> | ||
<Compile Include="..\Extensions\Dictionary.cs" /> | ||
<Compile Include="..\Extensions\Double.cs" /> | ||
<Compile Include="..\Extensions\Enum.cs" /> | ||
<Compile Include="..\Extensions\Float.cs" /> | ||
<Compile Include="..\Extensions\IEnumerable.cs" /> | ||
<Compile Include="..\Extensions\Int.cs" /> | ||
<Compile Include="..\Extensions\List.cs" /> | ||
<Compile Include="..\Extensions\Object\Object.cs" /> | ||
<Compile Include="..\Extensions\Object\ObjectReflection.cs" /> | ||
<Compile Include="..\Extensions\Serializable.cs" /> | ||
<Compile Include="..\Extensions\Short.cs" /> | ||
<Compile Include="..\Extensions\StringBuilder.cs" /> | ||
<Compile Include="..\Extensions\String\String.cs" /> | ||
<Compile Include="..\Extensions\Type.cs" /> | ||
<Compile Include="..\Supports\Button.cs" /> | ||
<Compile Include="..\Supports\Colors.cs" /> | ||
<Compile Include="..\Supports\Hook.cs" /> | ||
<Compile Include="..\Supports\Locate.cs" /> | ||
<Compile Include="..\Supports\Store.cs" /> | ||
<Compile Include="..\Supports\Utility\Utility.cs" /> | ||
<Compile Include="..\Supports\Utility\UtilityEditor.cs" /> | ||
<Compile Include="..\Supports\Utility\UtilityProxy.cs" /> | ||
<Compile Include="..\System Attributes\EnumMask.cs" /> | ||
<Compile Include="..\System Attributes\Internal.cs" /> | ||
<Compile Include="..\System Attributes\Unity\InitializeOnLoad.cs" /> | ||
<Compile Include="..\Systems\Event\Event.cs" /> | ||
<Compile Include="..\Systems\Event\EventDetector.cs" /> | ||
<Compile Include="..\Systems\Event\EventListener.cs" /> | ||
<Compile Include="..\Systems\Event\EventStepper.cs" /> | ||
<Compile Include="..\Systems\File\FileManager.cs" /> | ||
<Compile Include="..\Systems\Interface\Style\Style.cs" /> | ||
<Compile Include="..\Systems\Interface\Style\StyleCSS.cs" /> | ||
<Compile Include="..\Systems\Interface\Themes\Editor\ThemeVerticalSpace.cs" /> | ||
<Compile Include="..\Systems\Interface\Themes\Themes.cs" /> | ||
<Compile Include="..\Systems\Interface\Themes\ThemesLoading.cs" /> | ||
<Compile Include="..\Systems\Interface\Themes\ThemesSaving.cs" /> | ||
<Compile Include="..\Systems\Interface\Themes\ThemesUtility.cs" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
</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