Skip to content

Commit

Permalink
fix(init): update the C# init sample with the new App API (#1919)
Browse files Browse the repository at this point in the history
The C# jsii bindings don't have optional arguments, so every
new optional argument becomes a breaking change.
  • Loading branch information
rix0rrr authored and RomainMuller committed Mar 1, 2019
1 parent a23f46f commit 02f991d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ class Program
{
static void Main(string[] args)
{
var app = new App();
var app = new App(null);

// A CDK app can contain multiple stacks. You can view a list of all the stacks in your
// app by typing `cdk list`.
Expand Down

0 comments on commit 02f991d

Please sign in to comment.