AWS .NET SDK - Console Project Template

1

I don't see an AWS console project options under "create a new project" in VS.

.NET SDK downloaded and installed on Visual Studio 2017 and 2019.

I have tried downloading SDK directly and using NuGet package manager.

I have tried this with the 2017 and 2019 community version of visual studio.

I can see the AWS explorer and it works just fine.

Screen shot from the user guide:

Screen shot from the user guide

What am I missing? Do I need to move templates manually to an install location?

Sid Mand

Posted 2019-04-15T22:41:17.823

Reputation: 11

Answers

0

If you are using VS2019 as of late Apr 2019, the new Project template pick screen doesn't show the legacy AWS Console project template.

To get an AWS enabled console project follow these steps:

  1. Create new Console Project. Use template -> Console App (.NET Framework) - not Console App (.NET Core)
  2. Add the AWS SDK to your project via NuGet package manager command.

Tools menu, select Nuget Package Manager, and click Package Manager Console.

  1. Type this command: Install-Package AWSSDK - see page from step 2. The AWS will download and install into your project automatically.

  2. Check your project references and there should not be any errors and the AWS library is linked and listed.

enter image description here

I imagine MS or AWS will fix this soon. Use this method to create one in the meantime.

Taterhead

Posted 2019-04-15T22:41:17.823

Reputation: 101