Tring для сборки приложения asp. net с использованием сборки кода и получения no matching artifacts found error
. В любом случае мы можем проверить, где создаются эти артефакты в агенте сборки?
версия: 0.2
phases:
install:
pre_build:
commands:
- New-Item -ItemType Junction -Path C:\Src -Value $Env:CODEBUILD_SRC_DIR
- cd C:\Src
- nuget.exe restore
build:
commands:
- echo Executing Build Phase
- echo build started on `date`
- msbuild .\ASPWebApp\ASPWebApp.csproj /p:outdir=.\build_output
finally:
- echo Executing build finally
artifacts:
files:
- .\build_output\**\*
name: newbucket26