Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
ResourceConfiguration
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Analyze
Value stream analytics
Contributor analytics
CI/CD 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
libraries
ResourceConfiguration
Merge requests
!13
Product/407 net5migration
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Product/407 net5migration
Product/407-net5migration
into
Sprint/2021-01
Overview
0
Commits
2
Pipelines
1
Changes
12
Merged
Marcel Nellesen
requested to merge
Product/407-net5migration
into
Sprint/2021-01
4 years ago
Overview
0
Commits
2
Pipelines
1
Changes
12
Expand
coscine/issues#407
0
0
Merge request reports
Compare
Sprint/2021-01
Sprint/2021-01 (base)
and
latest version
latest version
6811f18c
2 commits,
4 years ago
12 files
+
66
−
967
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
12
Search (e.g. *.vue) (Ctrl+P)
.gitlab-ci.yml
+
31
−
53
Options
include
:
-
project
:
coscine/tools/gitlab-ci-templates
file
:
-
/dotnet.yml
stages
:
-
build
-
test
-
release
-
releasetrigger
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
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
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
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
variables
:
DOTNET_MAIN_PROJECT_FOLDER
:
ResourceConfiguration
build-branch
:
extends
:
.build-branch
build-nuget-release
:
extends
:
.build-nuget-release
test
:
extends
:
.test
publish-branch-prerelease
:
extends
:
.publish-branch-prerelease
publish-gitlab-release
:
extends
:
.publish-gitlab-release
publish-master-release
:
extends
:
.publish-master-release
publish-nuget-release
:
extends
:
.publish-nuget-release
Loading