Show / Hide Table of Contents

Class ProjectRuntimeOptions

Various configuration options that apply to different language runtimes.

Inheritance
object
ProjectRuntimeOptions
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Pulumi.Automation
Assembly: Pulumi.Automation.dll
Syntax
public class ProjectRuntimeOptions

Properties

View Source

Binary

Applies to Go and .NET project only.

Go: A string that specifies the name of a pre-build executable to look for on your path.

.NET: A string that specifies the path of a pre-build .NET assembly.
Declaration
public string? Binary { get; set; }
Property Value
Type Description
string
View Source

TypeScript

Applies to NodeJS projects only.

A boolean that controls whether to use ts-node to execute sources.
Declaration
public bool? TypeScript { get; set; }
Property Value
Type Description
bool?
View Source

VirtualEnv

Applies to Python projects only.

A string that specifies the path to a virtual environment to use when running the program.
Declaration
public string? VirtualEnv { get; set; }
Property Value
Type Description
string
  • View Source
Back to top Copyright 2016-2023, Pulumi Corporation.