Skip to content

Commit 7db20e3

Browse files
committed
new config type
1 parent 7703b90 commit 7db20e3

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

‎Torch.API/Torch.API.csproj‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,6 +187,7 @@
187187
<Compile Include="Session\ITorchSession.cs" />
188188
<Compile Include="Session\ITorchSessionManager.cs" />
189189
<Compile Include="Session\TorchSessionState.cs" />
190+
<Compile Include="TorchBranchType.cs" />
190191
<Compile Include="TorchGameState.cs" />
191192
<Compile Include="UGCServiceType.cs" />
192193
<Compile Include="Utils\ColorUtils.cs" />
@@ -202,4 +203,4 @@
202203
</ItemGroup>
203204
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
204205
<Import Project="$(SolutionDir)\TransformOnBuild.targets" />
205-
</Project>
206+
</Project>

‎Torch.API/TorchBranchType.cs‎

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace Torch.API
8+
{
9+
public enum TorchBranchType
10+
{
11+
master,
12+
staging
13+
}
14+
}

0 commit comments

Comments
 (0)