Skip to content

Commit 4cc3ed8

Browse files
committed
Added CI config
1 parent 7a99f62 commit 4cc3ed8

File tree

3 files changed

+17
-3
lines changed

3 files changed

+17
-3
lines changed

MLAPI.sln

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ Global
1212
Debug|Any CPU = Debug|Any CPU
1313
Development|Any CPU = Development|Any CPU
1414
Release|Any CPU = Release|Any CPU
15+
CI|Any CPU = CI|Any CPU
1516
EndGlobalSection
1617
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1718
{EE431720-A9ED-43DC-9E74-10B693816D38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
@@ -20,12 +21,16 @@ Global
2021
{EE431720-A9ED-43DC-9E74-10B693816D38}.Development|Any CPU.Build.0 = Development|Any CPU
2122
{EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.ActiveCfg = Release|Any CPU
2223
{EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.Build.0 = Release|Any CPU
24+
{EE431720-A9ED-43DC-9E74-10B693816D38}.CI|Any CPU.ActiveCfg = CI|Any CPU
25+
{EE431720-A9ED-43DC-9E74-10B693816D38}.CI|Any CPU.Build.0 = CI|Any CPU
2326
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
2427
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Debug|Any CPU.Build.0 = Debug|Any CPU
2528
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Development|Any CPU.ActiveCfg = Debug|Any CPU
2629
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Development|Any CPU.Build.0 = Debug|Any CPU
2730
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Release|Any CPU.ActiveCfg = Release|Any CPU
2831
{A45DBD43-D640-4562-9F24-6745269CEDF7}.Release|Any CPU.Build.0 = Release|Any CPU
32+
{A45DBD43-D640-4562-9F24-6745269CEDF7}.CI|Any CPU.ActiveCfg = CI|Any CPU
33+
{A45DBD43-D640-4562-9F24-6745269CEDF7}.CI|Any CPU.Build.0 = CI|Any CPU
2934
EndGlobalSection
3035
GlobalSection(SolutionProperties) = preSolution
3136
HideSolutionNode = FALSE

MLAPI/MLAPI.csproj

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<DocumentationFile>bin\Debug\MLAPI.xml</DocumentationFile>
2828
</PropertyGroup>
2929
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
30-
<DebugType>pdbonly</DebugType>
30+
<DebugType></DebugType>
3131
<Optimize>true</Optimize>
3232
<OutputPath>bin\Release\</OutputPath>
3333
<DefineConstants>TRACE</DefineConstants>
@@ -39,7 +39,7 @@
3939
<OutputPath>..\..\MLAPI-Examples\Assets\MLAPI\Lib\</OutputPath>
4040
<DefineConstants>DEBUG;TRACE</DefineConstants>
4141
<DebugType>full</DebugType>
42-
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<PlatformTarget>anycpu</PlatformTarget>
4343
<ErrorReport>prompt</ErrorReport>
4444
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
4545
<GenerateSerializationAssemblies>Off</GenerateSerializationAssemblies>
@@ -50,6 +50,12 @@
5050
<PropertyGroup>
5151
<SignAssembly>false</SignAssembly>
5252
</PropertyGroup>
53+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'CI|AnyCPU' ">
54+
<Optimize>true</Optimize>
55+
<OutputPath>bin\CI</OutputPath>
56+
<DefineConstants>TRACE</DefineConstants>
57+
<WarningLevel>4</WarningLevel>
58+
</PropertyGroup>
5359
<ItemGroup>
5460
<Reference Include="IntXLib, Version=1.0.0.0, Culture=neutral, PublicKeyToken=1744b76c74eaee1e, processorArchitecture=MSIL">
5561
<HintPath>..\packages\IntX.1.0.1.0\lib\net20\IntXLib.dll</HintPath>
@@ -67,6 +73,9 @@
6773
<SpecificVersion>False</SpecificVersion>
6874
<HintPath>..\..\..\..\..\..\Program Files\Unity\Editor\Data\Managed\UnityEngine.dll</HintPath>
6975
</Reference>
76+
<Reference Include="UnityStupidity" Condition="'$(Configuration)' == 'CI'">
77+
<HintPath>..\UnityStupidity.dll</HintPath>
78+
</Reference>
7079
</ItemGroup>
7180
<ItemGroup>
7281
<Compile Include="Attributes\BinaryIgnore.cs" />
@@ -127,4 +136,4 @@
127136
<None Include="packages.config" />
128137
</ItemGroup>
129138
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
130-
</Project>
139+
</Project>

UnityStupidity.dll

10.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)