File tree Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Expand file tree Collapse file tree 1 file changed +3
-0
lines changed Original file line number Diff line number Diff line change @@ -14,11 +14,13 @@ public void CanReadDocument()
14
14
assemblyVersioningScheme: MajorMinor
15
15
develop-branch-tag: alpha
16
16
release-branch-tag: rc
17
+ tag-prefix: '[vV|version-]'
17
18
" ;
18
19
var config = ConfigReader . Read ( new StringReader ( text ) ) ;
19
20
config . AssemblyVersioningScheme . ShouldBe ( AssemblyVersioningScheme . MajorMinor ) ;
20
21
config . DevelopBranchTag . ShouldBe ( "alpha" ) ;
21
22
config . ReleaseBranchTag . ShouldBe ( "rc" ) ;
23
+ config . TagPrefix . ShouldBe ( "[vV|version-]" ) ;
22
24
}
23
25
24
26
[ Test ]
@@ -29,5 +31,6 @@ public void CanReadDefaultDocument()
29
31
config . AssemblyVersioningScheme . ShouldBe ( AssemblyVersioningScheme . MajorMinorPatch ) ;
30
32
config . DevelopBranchTag . ShouldBe ( "unstable" ) ;
31
33
config . ReleaseBranchTag . ShouldBe ( "beta" ) ;
34
+ config . TagPrefix . ShouldBe ( "v" ) ;
32
35
}
33
36
}
You can’t perform that action at this time.
0 commit comments