This is part of the Fake.Runtime module.
								
                
							
This module contains functions which allow to read and write environment variables and build parameters
 
  
  
    
      | Function or value | Description | 
    
    
      
        
          
            environVar(name)
          
          
            Signature: name:string -> string 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable with the given name 
         | 
      
      
        
          
            environVarOrDefault name defaultValue
          
          
            Signature: name:string -> defaultValue:string -> string 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable with the given name or returns the default if no value was set 
         | 
      
      
        
          
            environVarOrFail(name)
          
          
            Signature: name:string -> string 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable with the given name or fails if not found 
         | 
      
      
        
          
            environVarOrNone(name)
          
          
            Signature: name:string -> string option 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable or None 
         | 
      
      
        
          
            environVars()
          
          
            Signature: unit -> (obj * obj) list 
                                   
         | 
        
                      
              
            
           Retrieves all environment variables from the given target 
         | 
      
      
        
          
            fakeVersion
          
          
            Signature: string 
                                   
         | 
        
                      
              
            
           Gets the FAKE version no. 
         | 
      
      
        
          
            fakeVersionStr
          
          
            Signature: string 
                                   
         | 
        
                      
              
            
           Gets the FAKE Version string 
         | 
      
      
        
          
            getEnvironmentVarAsBool(varName)
          
          
            Signature: varName:string -> bool 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable with the given name or returns the false if no value was set 
         | 
      
      
        
          
            getEnvironmentVarAsBoolOrDefault(...)
          
          
            Signature: varName:string -> defaultValue:bool -> bool 
                                   
         | 
        
                      
              
            
           Retrieves the environment variable with the given name or returns the default bool if no value was set 
         | 
      
      
        
          
            hasEnvironVar(name)
          
          
            Signature: name:string -> bool 
                                   
         | 
        
                      
              
            
           Returns if the build parameter with the given name was set 
         | 
      
      
        
          
            setEnvironVar name value
          
          
            Signature: name:string -> value:string -> unit 
                                   
         | 
        
                      
              
            
           Sets the environment variable with the given name 
         |