Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Project
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Container registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
apis
Project
Merge requests
!128
Product/1287 dotnet5 sharepoint
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Product/1287 dotnet5 sharepoint
Product/1287-dotnet5Sharepoint
into
Sprint/2021-03
Overview
0
Commits
2
Pipelines
2
Changes
19
Merged
Petar Hristov
requested to merge
Product/1287-dotnet5Sharepoint
into
Sprint/2021-03
4 years ago
Overview
0
Commits
2
Pipelines
2
Changes
19
Expand
coscine/issues#1287
Edited
4 years ago
by
Marcel Nellesen
0
0
Merge request reports
Compare
Sprint/2021-03
Sprint/2021-03 (base)
and
latest version
latest version
95dc867b
2 commits,
4 years ago
19 files
+
98
−
3159
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
19
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
18
−
50
Options
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/dotnet.yml
stages
:
-
build
-
test
-
docs
-
release
-
releasetrigger
-
publish
variables
:
DOTNET_MAIN_PROJECT_FOLDER
:
Project
cake:Test
:
stage
:
test
script
:
-
PowerShell .\build.ps1 -Target Test -Configuration Debug
variables
:
GIT_STRATEGY
:
clone
artifacts
:
reports
:
junit
:
"
./Artifacts/TestResults.xml"
paths
:
-
"
./Artifacts/*"
except
:
-
master
-
tags
build-branch
:
extends
:
.build-branch
cake:Release
:
stage
:
release
script
:
-
PowerShell .\build.ps1 -Target Release -Configuration Release --nugetApiKey="${NUGET_API_KEY}"
variables
:
GIT_STRATEGY
:
clone
dependencies
:
-
cake:Test
artifacts
:
paths
:
-
"
./Artifacts/*"
only
:
-
tags
test
:
extends
:
.test
cake:Prerelease
:
stage
:
release
script
:
-
PowerShell .\build.ps1 -Target Prerelease -Configuration Release
variables
:
GIT_STRATEGY
:
clone
dependencies
:
-
cake:Test
artifacts
:
paths
:
-
"
./Artifacts/*"
except
:
-
tags
-
master
publish-gitlab-release
:
extends
:
.publish-gitlab-release
cake:GitlabRelease
:
stage
:
releasetrigger
script
:
-
PowerShell .\build.ps1 -Target GitlabRelease --GitlabProjectPath="${CI_PROJECT_PATH}" --gitlabProjectId="${CI_PROJECT_ID}" --gitlabToken="${GITLAB_TOKEN}"
only
:
-
master
\ No newline at end of file
publish-master-release
:
extends
:
.publish-master-release
Loading