File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ $ErrorActionPreference = " Stop"
2+
3+ Write-Host " Building MonoGame Assemblies..." - ForegroundColor Green
4+ dotnet build external/ MonoGame/ MonoGame.Framework.Content.Pipeline/ MonoGame.Framework.Content.Pipeline.csproj - p:DisableNativeBuild= true
5+
6+ Write-Host " Running DocFX..." - ForegroundColor Green
7+ dotnet docfx docfx.json
8+
9+ Write-Host " Build and documentation generation completed successfully!" - ForegroundColor Green
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ set -e
4+
5+ echo " Building MonoGame Assemblies..."
6+ dotnet build external/MonoGame/MonoGame.Framework.Content.Pipeline/MonoGame.Framework.Content.Pipeline.csproj -p:DisableNativeBuild=true
7+
8+ echo " Running DocFX..."
9+ dotnet docfx docfx.json
10+
11+ echo " Build and documentation generation completed successfully!"
You can’t perform that action at this time.
0 commit comments