Skip to content

Commit

Permalink
Merge pull request #525 from aws/dev
Browse files Browse the repository at this point in the history
chore: release 0.41
  • Loading branch information
philasmar authored Apr 25, 2022
2 parents b60c3d5 + 91cebca commit 9cd26f3
Show file tree
Hide file tree
Showing 11 changed files with 24 additions and 30 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,18 +34,18 @@ The deployment tool is distributed as a .NET Tool from NuGet.org. The installati
To install the deployment tool, use the dotnet tool install command:

```
dotnet tool install -g aws.deploy.cli
dotnet tool install -g aws.deploy.tools
```

To update to the latest version of the deployment tool, use the dotnet tool update command.

```
dotnet tool update -g aws.deploy.cli
dotnet tool update -g aws.deploy.tools
```

To uninstall it, simply type:
```
dotnet tool uninstall -g aws.deploy.cli
dotnet tool uninstall -g aws.deploy.tools
```

Once you install the tool, you can view the list of available commands by typing:
Expand Down
2 changes: 1 addition & 1 deletion src/AWS.Deploy.CLI/AWS.Deploy.CLI.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<PackAsTool>true</PackAsTool>
<Description>Opinionated tooling that simplifies deployment of .NET applications with minimum AWS knowledge.</Description>
<Product>AWS .NET deployment tool</Product>
<PackageId>AWS.Deploy.CLI</PackageId>
<PackageId>AWS.Deploy.Tools</PackageId>
<PackageTags>AWS;Amazon;ElasticBeanstalk;ECS;Deploy</PackageTags>
<AssemblyName>AWS.Deploy.CLI</AssemblyName>
<RootNamespace>AWS.Deploy.CLI</RootNamespace>
Expand Down
6 changes: 0 additions & 6 deletions src/AWS.Deploy.CLI/App.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,6 @@ public async Task<int> Run(string[] args)
_toolInteractiveService.WriteLine("AWS .NET deployment tool for deploying .NET Core applications to AWS.");
_toolInteractiveService.WriteLine("Project Home: https://github.com/aws/aws-dotnet-deploy");
_toolInteractiveService.WriteLine(string.Empty);
_toolInteractiveService.WriteLine("---------------------------------------------------------------------");
_toolInteractiveService.WriteLine("Deprecation Notice: The name of the AWS .NET deployment tool NuGet package will change from 'AWS.Deploy.CLI' to 'AWS.Deploy.Tools'. " +
"In order to keep receiving updates, make sure to uninstall the current dotnet tool 'AWS.Deploy.CLI' and install 'AWS.Deploy.Tools'. " +
"The NuGet package 'AWS.Deploy.CLI' will no longer receive any updates, so please make sure to install the new package 'AWS.Deploy.Tools'.");
_toolInteractiveService.WriteLine("---------------------------------------------------------------------");
_toolInteractiveService.WriteLine(string.Empty);

// if user didn't specify a command, default to help
if (args.Length == 0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
6 changes: 3 additions & 3 deletions src/AWS.Deploy.Recipes/CdkTemplates/BlazorWasm/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This .NET project is a deployment project used by the AWS deploy tool to deploy
up of 2 parts.

First is a *.recipe file which defines all of the settings for deployment project. The recipe file is what
the AWS.Deploy.CLI tool and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
the AWS.Deploy.Tools and the AWS Toolkit for Visual Studio use to drive the user experience to deploy a .NET application
with this deployment project.

The second part of the deployment project is a .NET AWS CDK project which defines the AWS infrastructure that the
Expand All @@ -26,7 +26,7 @@ In a regular CDK project the CDK CLI, acquired from NPM, would be used to execut
tool deployment projects are made of both a recipe and a CDK project you should not use the CDK CLI directly on
the deployment project.

The AWS deploy tool from either AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio
The AWS deploy tool from either AWS.Deploy.Tools package or AWS Toolkit for Visual Studio
should be used to drive the experience. The AWS deploy tool will take care of acquiring the CDK CLI and executing the
CDK CLI passing in all of the settings gathered in the AWS deploy tool.

Expand All @@ -44,7 +44,7 @@ file for information on how to customize the CDK project.
## Can I add more settings to the recipe?

As you customize the deployment project you might want to present the user's of the deployment project more
settings that will be displayed in the AWS.Deploy.CLI tool package or AWS Toolkit for Visual Studio. The recipe
settings that will be displayed in the AWS.Deploy.Tools package or AWS Toolkit for Visual Studio. The recipe
file in the deployment project can be modified to add new settings. Below is the link to the JSON schema for the
recipe.

Expand Down
2 changes: 1 addition & 1 deletion test/ManualLinuxTesting/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ WORKDIR /app
COPY --from=publish /app/publish .

#install aws deploy
RUN dotnet tool install AWS.Deploy.CLI -g --add-source /app --version $AWS_CLI_VERSION
RUN dotnet tool install AWS.Deploy.Tools -g --add-source /app --version $AWS_CLI_VERSION

# verify it worked
RUN dotnet aws --version
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/dotnet/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "0.40",
"version": "0.41",
"publicReleaseRefSpec": [
".*"
],
Expand Down

0 comments on commit 9cd26f3

Please sign in to comment.