File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -183,6 +183,23 @@ public void CanUpdateAssemblyInformationalVersioningSchemeWithMultipleVariables(
183
183
config . AssemblyInformationalFormat . ShouldBe ( "{Major}.{Minor}.{Patch}" ) ;
184
184
}
185
185
186
+
187
+ [ Test ]
188
+ public void CanUpdateAssemblyInformationalVersioningSchemeWithFullSemVer ( )
189
+ {
190
+ const string text = @"assembly-versioning-scheme: MajorMinorPatch
191
+ assembly-informational-format: '{FullSemVer}'
192
+ mode: ContinuousDelivery
193
+ next-version: 5.3.0
194
+ branches: {}" ;
195
+
196
+ SetupConfigFileContent ( text ) ;
197
+
198
+ var config = ConfigurationProvider . Provide ( repoPath , fileSystem ) ;
199
+ config . AssemblyVersioningScheme . ShouldBe ( AssemblyVersioningScheme . MajorMinorPatch ) ;
200
+ config . AssemblyInformationalFormat . ShouldBe ( "{FullSemVer}" ) ;
201
+ }
202
+
186
203
[ Test ]
187
204
public void CanReadDefaultDocument ( )
188
205
{
You can’t perform that action at this time.
0 commit comments