Skip to content

Commit 412387d

Browse files
committed
Added Development Profile
1 parent ad88c20 commit 412387d

File tree

3 files changed

+15
-3
lines changed

3 files changed

+15
-3
lines changed

MLAPI.sln

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11

22
Microsoft Visual Studio Solution File, Format Version 12.00
33
# Visual Studio 15
4-
VisualStudioVersion = 15.0.27130.2010
4+
VisualStudioVersion = 15.0.27130.2027
55
MinimumVisualStudioVersion = 10.0.40219.1
66
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MLAPI", "MLAPI\MLAPI.csproj", "{EE431720-A9ED-43DC-9E74-10B693816D38}"
77
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
11+
Development|Any CPU = Development|Any CPU
1112
Release|Any CPU = Release|Any CPU
1213
EndGlobalSection
1314
GlobalSection(ProjectConfigurationPlatforms) = postSolution
1415
{EE431720-A9ED-43DC-9E74-10B693816D38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
1516
{EE431720-A9ED-43DC-9E74-10B693816D38}.Debug|Any CPU.Build.0 = Debug|Any CPU
17+
{EE431720-A9ED-43DC-9E74-10B693816D38}.Development|Any CPU.ActiveCfg = Development|Any CPU
18+
{EE431720-A9ED-43DC-9E74-10B693816D38}.Development|Any CPU.Build.0 = Development|Any CPU
1619
{EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.ActiveCfg = Release|Any CPU
1720
{EE431720-A9ED-43DC-9E74-10B693816D38}.Release|Any CPU.Build.0 = Release|Any CPU
1821
EndGlobalSection

MLAPI/MLAPI.csproj

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
<DebugSymbols>true</DebugSymbols>
2020
<DebugType>full</DebugType>
2121
<Optimize>false</Optimize>
22-
<OutputPath>..\..\..\..\Documents\MLAPI\Assets\</OutputPath>
22+
<OutputPath>bin\Debug\</OutputPath>
2323
<DefineConstants>DEBUG;TRACE</DefineConstants>
2424
<ErrorReport>prompt</ErrorReport>
2525
<WarningLevel>4</WarningLevel>
@@ -33,6 +33,15 @@
3333
<ErrorReport>prompt</ErrorReport>
3434
<WarningLevel>4</WarningLevel>
3535
</PropertyGroup>
36+
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Development|AnyCPU'">
37+
<DebugSymbols>true</DebugSymbols>
38+
<OutputPath>..\..\MLAPI-Examples\Assets\</OutputPath>
39+
<DefineConstants>DEBUG;TRACE</DefineConstants>
40+
<DebugType>full</DebugType>
41+
<PlatformTarget>AnyCPU</PlatformTarget>
42+
<ErrorReport>prompt</ErrorReport>
43+
<CodeAnalysisRuleSet>MinimumRecommendedRules.ruleset</CodeAnalysisRuleSet>
44+
</PropertyGroup>
3645
<ItemGroup>
3746
<Reference Include="System" />
3847
<Reference Include="System.Core" />

MLAPI/MonoBehaviours/Core/NetworkingManager.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -954,4 +954,4 @@ private void HandleApproval(int clientId, bool approved)
954954
}
955955
}
956956
}
957-
}
957+
}

0 commit comments

Comments
 (0)