1- namespace Nerdbank . GitVersioning
1+ namespace Nerdbank . GitVersioning . Commands
22{
33 using System ;
44 using System . Collections . Generic ;
77 using Validation ;
88
99 /// <summary>
10- /// Implementation of the "nbgv cloud" command that updates the build environments variables with version variables
10+ /// Implementation of the "nbgv cloud" command that updates the build environments variables with version variables.
1111 /// </summary>
1212 public class CloudCommand
1313 {
@@ -17,23 +17,23 @@ public class CloudCommand
1717 public enum CloudCommandError
1818 {
1919 /// <summary>
20- /// Teh specified CI system was not found
20+ /// The specified CI system was not found.
2121 /// </summary>
2222 NoCloudBuildProviderMatch ,
2323
2424 /// <summary>
25- /// A cloud variable was defined multiple times
25+ /// A cloud variable was defined multiple times.
2626 /// </summary>
2727 DuplicateCloudVariable ,
2828
2929 /// <summary>
30- /// No supported cloud build environment could be detected
30+ /// No supported cloud build environment could be detected.
3131 /// </summary>
32- NoCloudBuildEnvDetected
32+ NoCloudBuildEnvDetected ,
3333 }
3434
3535 /// <summary>
36- /// Exception indicating an error while setting build variables
36+ /// Exception indicating an error while setting build variables.
3737 /// </summary>
3838 public class CloudCommandException : Exception
3939 {
@@ -43,7 +43,7 @@ public class CloudCommandException : Exception
4343 public CloudCommandError Error { get ; }
4444
4545 /// <summary>
46- /// Initializes a new instance of <see cref="CloudCommandException"/>
46+ /// Initializes a new instance of <see cref="CloudCommandException"/> class.
4747 /// </summary>
4848 /// <param name="message">The message that describes the error.</param>
4949 /// <param name="error">The error that occurred.</param>
@@ -79,7 +79,7 @@ public CloudCommand(TextWriter outputWriter = null, TextWriter errorWriter = nul
7979 /// The string to use for the cloud build number. If not specified, the computed version will be used.
8080 /// </param>
8181 /// <param name="ciSystem">
82- /// The CI system to activate. If not specified, auto-detection will be used.
82+ /// The CI system to activate. If not specified, auto-detection will be used.
8383 /// </param>
8484 /// <param name="allVars">
8585 /// Controls whether to define all version variables as cloud build variables.
0 commit comments