summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPiotr Wosiek <piotrwosiek@onet.eu>2019-03-13 16:46:48 +0100
committerPiotr Wosiek <piotrwosiek@onet.eu>2019-03-13 16:46:48 +0100
commitfdc52b5fd00570cf62559771d0a5ec99891de664 (patch)
treeae29c20f5fa752973900d922dd0aaed9ae38e381
parentd0582f7e713169aa8b80520816d45fe7512e645a (diff)
downloadgitlab-ce-fdc52b5fd00570cf62559771d0a5ec99891de664.tar.gz
Improve note about building not .NET Core based projects
-rw-r--r--lib/gitlab/ci/templates/dotNET-Core.yml10
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'