Skip to content

Instantly share code, notes, and snippets.

@OksanaH
Created May 23, 2021 22:48
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save OksanaH/b9d892818748d63af58ea5fbc3eded21 to your computer and use it in GitHub Desktop.
Save OksanaH/b9d892818748d63af58ea5fbc3eded21 to your computer and use it in GitHub Desktop.
AppPipelineStage.cs
using Amazon.CDK;
using Amazon.CDK.Pipelines;
namespace CdkPipelines
{
public class AppPipelineStage : Stage
{
public AppPipelineStage(Construct scope, string id, StageProps props = null)
: base(scope, id, props)
{
var service = new WhatDayOfWeekStack(this, "WhatDayOfWeekApp");
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment