diff --git a/docs/providers/aws/examples/hello-world/csharp/serverless.yml b/docs/providers/aws/examples/hello-world/csharp/serverless.yml index f35b67f44..4f8212227 100644 --- a/docs/providers/aws/examples/hello-world/csharp/serverless.yml +++ b/docs/providers/aws/examples/hello-world/csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/** diff --git a/lib/plugins/create/templates/aws-csharp/serverless.yml b/lib/plugins/create/templates/aws-csharp/serverless.yml index 7917d937d..850d59ad8 100644 --- a/lib/plugins/create/templates/aws-csharp/serverless.yml +++ b/lib/plugins/create/templates/aws-csharp/serverless.yml @@ -46,7 +46,7 @@ provider: # you can add packaging information here package: - artifact: bin/Release/netcoreapp1.0/publish/deploy-package.zip + artifact: bin/release/netcoreapp1.0/publish/deploy-package.zip # exclude: # - exclude-me.js # - exclude-me-dir/** diff --git a/tests/templates/test_all_templates b/tests/templates/test_all_templates index 473d5b981..d1a1f2d93 100755 --- a/tests/templates/test_all_templates +++ b/tests/templates/test_all_templates @@ -8,7 +8,7 @@ function integration-test { $DIR/integration-test-template $@ } -integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/Release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd' +integration-test aws-csharp 'apt-get -qq update && apt-get -qq -y install zip && dotnet restore && dotnet publish -c release && pushd bin/release/netcoreapp1.0/publish && zip -r ./deploy-package.zip ./* && popd' integration-test aws-java-gradle ./gradlew build integration-test aws-java-maven mvn package integration-test aws-scala-sbt sbt assembly