I'm trying to setup up a proof of concept CI/CD in AWS. I need to build a .net mvc project (not core but standard).
So what I've figured so far is that we need to define a pipeline, getting code trough a source (in my case github) and putting it in S3
, then CodeBuild
builds it, then CodeDeploy
deploys it.
I've found posts saying building standard .net is not yet supported by the CodeBuild
as it does not have the windows server option. But the post is dated and it actually has windows option right now - See picture below.
So I thought it now can support standard .net builds, but I'm having trouble to find any documentation around it. Where I stuck is actually setting up the buildspec.yml
file. I have no idea how to set it up for a standard .net mvc application. The aforementioned post tells how to create the buildspec.yml
but for .net core, hence not working for me.
Can anyone help me to get around this?
Or should I really go ahead and setup a jenkins server and walk from there?