Skip to content

Commit abf456f

Browse files
committed
PR 34: Updatred to support creating team folders +semver:minor
- Updatred to support creating team folders +semver:minor
1 parent 1a82975 commit abf456f

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

GitVersion.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
assembly-versioning-scheme: None
22
mode: ContinuousDeployment
33
continuous-delivery-fallback-tag: ''
4-
next-version: 1.0.0
4+
next-version: 2.1.0
55
branches:
66
master:
77
mode: ContinuousDeployment
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
using System;
2+
using System.Collections.Generic;
3+
using System.Linq;
4+
using System.Text;
5+
using System.Threading.Tasks;
6+
7+
namespace VSTS.DataBulkEditor.Engine.Configuration.Processing
8+
{
9+
public class CreateTeamFoldersConfig : ITfsProcessingConfig
10+
{
11+
public bool Disabled { get; set; }
12+
13+
public Type Processor
14+
{
15+
get
16+
{
17+
return typeof(CreateTeamFolders);
18+
}
19+
}
20+
21+
}
22+
}
23+

0 commit comments

Comments
 (0)