stages: - Build - Documentation - Package NET Framework 4.0: stage: Build script: "nuget restore & msbuild NChronicle.File_NetFx.csproj /p:Configuration=Release" artifacts: paths: - bin/Release/netfx4.0/ NET Standard 1.4: stage: Build script: "dotnet build NChronicle.File_NetStandard.csproj -c Release" artifacts: paths: - bin/Release/netstandard1.4/ Documentation: stage: Documentation script: "msbuild NChronicle.File.shfbproj /p:Configuration=Release" dependencies: - NET Framework 4.0 artifacts: paths: - _Wiki/ Package: stage: Package script: "nuget pack NChronicle.File.nuspec" dependencies: - NET Framework 4.0 - NET Standard 1.4 artifacts: paths: - NChronicle.File.*.nupkg