diff options
author | Piotr Wosiek <piotrwosiek@onet.eu> | 2019-03-13 16:46:48 +0100 |
---|---|---|
committer | Piotr Wosiek <piotrwosiek@onet.eu> | 2019-03-13 16:46:48 +0100 |
commit | fdc52b5fd00570cf62559771d0a5ec99891de664 (patch) | |
tree | ae29c20f5fa752973900d922dd0aaed9ae38e381 | |
parent | d0582f7e713169aa8b80520816d45fe7512e645a (diff) | |
download | gitlab-ce-fdc52b5fd00570cf62559771d0a5ec99891de664.tar.gz |
Improve note about building not .NET Core based projects
-rw-r--r-- | lib/gitlab/ci/templates/dotNET-Core.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/gitlab/ci/templates/dotNET-Core.yml b/lib/gitlab/ci/templates/dotNET-Core.yml index c12c82877f4..88c7d23e7aa 100644 --- a/lib/gitlab/ci/templates/dotNET-Core.yml +++ b/lib/gitlab/ci/templates/dotNET-Core.yml @@ -50,11 +50,11 @@ build: - 'dotnet restore' # Build all projects discovered from solution file. # -# Note: this may fail in case you have at least one not .NET Core based project -# defined in your solution file e.g. WCF service, which is based on .NET Framework -# not .NET Core. In such scenario you will need to build .NET Core project -# by explicitly specifying a relative path to the directory where it is located -# e.g. 'dotnet build ./src/ConsoleApp' +# Note: this will fail if you have any projects in your solution that are not +# .NET Core based projects e.g. WCF service, which is based on .NET Framework, +# not .NET Core. In such scenario you will need to build every .NET Core based +# project by explicitly specifying a relative path to the directory +# where it is located e.g. 'dotnet build ./src/ConsoleApp'. # Only one project path can be passed as a parameter to 'dotnet build' command. script: - 'dotnet build' |