0.0.6-test
ln.build - build0.waldrennach.l--n.de build job pending Details
ln.build - pc-harald.waldrennach.l--n.de build job pending Details

master
Harald Wolff 2020-12-03 00:28:45 +01:00
parent 7a00f03504
commit bdef91992f
3 changed files with 94 additions and 42 deletions

87
.gitignore vendored
View File

@ -1,41 +1,46 @@
# Autosave files # Autosave files
*~ *~
# build # build
[Oo]bj/ [Oo]bj/
[Bb]in/ [Bb]in/
packages/ packages/
TestResults/ TestResults/
# globs # globs
Makefile.in Makefile.in
*.DS_Store *.DS_Store
*.sln.cache *.sln.cache
*.suo *.suo
*.cache *.cache
*.pidb *.pidb
*.userprefs *.userprefs
*.usertasks *.usertasks
config.log config.log
config.make config.make
config.status config.status
aclocal.m4 aclocal.m4
install-sh install-sh
autom4te.cache/ autom4te.cache/
*.user *.user
*.tar.gz *.tar.gz
tarballs/ tarballs/
test-results/ test-results/
Thumbs.db Thumbs.db
.vs/ .vs/
# Mac bundle stuff # Mac bundle stuff
*.dmg *.dmg
*.app *.app
# resharper # resharper
*_Resharper.* *_Resharper.*
*.Resharper *.Resharper
# dotCover # dotCover
*.dotCover *.dotCover
*.log
*.log.old
.vscode
.build

47
build.ln 100644
View File

@ -0,0 +1,47 @@
{
"env": {
"NUGET_SOURCE": "http://nuget.l--n.de/nuget/l--n/v3/index.json",
"CONFIGURATION": "Release"
},
"stages": [
{
"name": "setup",
"env": {
"SOME_ENV_VAR": "Some text",
},
"commands": [
"SH echo Setting up build environment",
"SH set",
"SH rm -Rf .build"
]
},
{
"name": "prepare",
"commands": [
"SH dotnet restore",
"SH dotnet clean"
]
},
{
"name": "build",
"commands": [
"SH dotnet build -c $CONFIGURATION"
]
},
{
"name": "pack_and_publish",
"commands": [
"SH dotnet pack ln.parse -o .build -c $CONFIGURATION",
]
},
{
"name": "push",
"commands": [
"SH dotnet nuget push .build/ln.parse.*.nupkg -s $NUGET_SOURCE -k $NUGET_APIKEY"
],
"secrets": {
"NUGET_APIKEY": "key/nuget.l--n.de"
}
}
]
}

View File

@ -2,7 +2,7 @@
<PropertyGroup> <PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework> <TargetFramework>netcoreapp3.1</TargetFramework>
<Version>0.0.5-test</Version> <Version>0.0.6-test</Version>
<Authors>Harald Wolff-Thobaben</Authors> <Authors>Harald Wolff-Thobaben</Authors>
<Company>l--n.de</Company> <Company>l--n.de</Company>
</PropertyGroup> </PropertyGroup>