pulumi/tests/integration/construct_component_slow/dotnet/MyStack.cs

12 lines
186 B
C#

// Copyright 2016-2021, Pulumi Corporation. All rights reserved.
using Pulumi;
class MyStack : Stack
{
public MyStack()
{
var componentA = new Component("a");
}
}