user99513
user99513

Reputation: 592

Issue Saving an AWS Lambda Project in VS2015

I get the following message when I attempt to save an AWS lambda project in VS 2015. I just downloaded and installed the AWS .Net tools and SDK. I then created a new AWS lambda(.Net Core) project and tried to save the project and got the message below.

I am able to open and save other non AWS projects.

enter image description here

Upvotes: 2

Views: 384

Answers (1)

Taterhead
Taterhead

Reputation: 5951

You also need to install the latest Visual Studio .Net Core Tools Preview.

Here is the link to the download.

Refer to this SO question for more details.

This material, previously from an entry I created on SO Docs, may help:

  1. Open Visual Studio and Select File -> New Project
  2. Select AWS Lambda Project with Tests (.NET Core) enter image description here
  3. Next the Select Blueprint screen will display. Select Empty Function and Click the Finish button: enter image description here
  4. Go to Tools -> NuGet Package Manager -> Package Manager Console.
  5. In the console window, type Install-Package Amazon.Lambda.Core
  6. Right-click your project in the solution explorer and select Restore Packages. This is the final preparation step before you start writing code.

enter image description here

Upvotes: 2

Related Questions