Page cover

AWS CodeBuild DotNet Core

Build and test code with elastic scaling. Pay only for the build time you use.

AWS CodeBuild is a fully managed continuous integration service that compiles source code, runs tests, and produces software packages that are ready to deploy. With CodeBuild, you don’t need to provision, manage, and scale your own build servers. CodeBuild scales continuously and processes multiple builds concurrently, so your builds are not left waiting in a queue.

Steps:

Create build project

Project Name:

Source:

https://github.com/whoami-anoint/OnTopic-Library

Environment:

Buildspec:

Yaml script:

version: 0.2

phases:
  install:
    commands:
      - curl -sSL https://dot.net/v1/dotnet-install.sh | bash /dev/stdin --channel STS 
  build:
    commands:
      - dotnet restore OnTopic.sln
      - dotnet build OnTopic.sln

Batch Configuration:

Error found on:

Last updated