Publish Project to AWS

From MgmtWiki
Revision as of 11:25, 5 June 2020 by Tom (talk | contribs) (Solution)

Jump to: navigation, search

Full Title or Meme

Build and zip a Visual Studio dot net core 2.1+ Project for publication to Amazon Web Services.

Context

Problems

Solution

  1. Prepare a project with all dependencies marked.
  2. Add a deployment file (see section below)

Deployment File

{
 "manifestVersion": 1,
 "deployments": {
   "aspNetCoreWeb": [
     {
       "name": "my-dotnet-core-app",
       "parameters": {
         "archive": "dotnet-core-app.zip",
         "iisPath": "/"
       }
     }
   ]
 }
}

References