File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change 1
- configuration : Release
2
1
version : ' 1.0.0-alpha-{build}'
3
2
init :
4
3
- git config --global core.autocrlf true
9
8
build_script :
10
9
- cmd : for /f %%a in ('dir /b test') do dotnet test -c Release test/%%a/%%a.csproj
11
10
after_build :
12
- # packing the current Release build of all projects under src/
13
- - cmd : for /f %%a in ('dir /b src') do dotnet pack --no-build -c Release src/%%a/%%a.csproj
11
+ # packing the current Release build of all projects under src/ except metapackage
12
+ - cmd : for /f %%a in ('dir /b src ^| find /v "Greentube.Serialization.All"') do dotnet pack --no-build -c Release src/%%a/%%a.csproj
13
+ # pack the metapackage which is based on nuspec
14
+ - cmd : nuget pack -version %APPVEYOR_BUILD_VERSION% src\Greentube.Serialization.All\Greentube.Serialization.All.nuspec
14
15
# Will build in Coverage mode (full pdbs) and upload coverage to Codecov
15
16
on_success :
16
17
- ps : .\coverage.ps1 -UploadCodecov
You can’t perform that action at this time.
0 commit comments