This content is part of a third party extension that is not supported by the Cake project.
                        For more information about this extension see 
Cake.Bumpy.
                            
 
	
		Summary
	
            Runs "bumpy.exe assign [position] [number]" to assign a given position with a given number for all versions.
            
		
	Syntax
	public static void BumpyAssign(this ICakeContext context, int position, int number, BumpySettings settings)
	Examples
	
            // e.g. 1.0.0.0 -> 1.42.0.0
BumpyAssign(2, 42, new BumpySettings() { Profile = "my_profile" });
             
	Attributes
	
		
			
				
					
						| Type | Description | 
				
					
						| CakeMethodAliasAttribute |  | 
			
		 
	 	
	Parameters
	
		
			
				
					
						| Name | Type | Description | 
				
					
						| context | ICakeContext | The context. | 
					
						| position | int | The position. | 
					
						| number | int | The version number part. | 
					
						| settings | BumpySettings | The tool settings. | 
			
		 
	 	
	Return Value