@@ -37,12 +37,16 @@ public void DevelopBranchFormatsSemVerForCiFeed()
3737 [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . None , false , "1.0.0.0" , "2.3.4.0" ) ]
3838 [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . Major , true , "2.0.0.0" , "2.3.4.5" ) ]
3939 [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . Major , false , "2.0.0.0" , "2.3.4.0" ) ]
40+ [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . MajorMinor , true , "2.3.0.0" , "2.3.4.5" ) ]
41+ [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . MajorMinor , false , "2.3.0.0" , "2.3.4.0" ) ]
4042 [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . MajorMinorPatch , true , "2.3.4.0" , "2.3.4.5" ) ]
4143 [ TestCase ( 2 , 3 , 4 , "5.Branch.master" , AssemblyVersioningScheme . MajorMinorPatch , false , "2.3.4.0" , "2.3.4.0" ) ]
4244 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . None , true , "1.0.0.0" , "2.3.4.0" ) ]
4345 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . None , false , "1.0.0.0" , "2.3.4.0" ) ]
4446 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . Major , true , "2.0.0.0" , "2.3.4.0" ) ]
4547 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . Major , false , "2.0.0.0" , "2.3.4.0" ) ]
48+ [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . MajorMinor , true , "2.3.0.0" , "2.3.4.0" ) ]
49+ [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . MajorMinor , false , "2.3.0.0" , "2.3.4.0" ) ]
4650 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . MajorMinorPatch , true , "2.3.4.0" , "2.3.4.0" ) ]
4751 [ TestCase ( 2 , 3 , 4 , "5.Branch.develop" , AssemblyVersioningScheme . MajorMinorPatch , false , "2.3.4.0" , "2.3.4.0" ) ]
4852 public void AssemblyVersion (
0 commit comments