forked from aws-samples/aws-cdk-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(csharp): update cdk configs for new csharp CI builds
- Added package-lambda script to capitalize-string - Added context to elasticbeanstalk-environment - Added DO_NOT_AUTOTEST to static-site (requires user credentials in code) - Added context to static-site Fixes aws-samples#228 <!-- Please create a new issue if none exists yet -->
- Loading branch information
Showing
4 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
{ | ||
"app": "dotnet run -p src/CapitalizeString/CapitalizeString.csproj" | ||
} | ||
"app": "dotnet publish -c Release CapitalizeStringHandler/src/CapitalizeStringHandler; dotnet run -p src/CapitalizeString" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
{ | ||
"app": "dotnet run -p src/ElasticbeanstalkEnvironment/ElasticbeanstalkEnvironment.csproj" | ||
"context": { | ||
"platform": "arn:aws:elasticbeanstalk:us-east-1::platform/Tomcat 8 with Java 8 running on 64bit Amazon Linux" | ||
}, | ||
"app": "dotnet run -p src/ElasticbeanstalkEnvironment" | ||
} |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"context": { | ||
"domain": "mystaticsite.com", | ||
"subdomain": "www" | ||
}, | ||
"app": "dotnet run -p src/StaticSite/StaticSite.csproj" | ||
} |