Skip to content

Commit ae62bef

Browse files
committed
add Core + build script
1 parent b0d320d commit ae62bef

File tree

266 files changed

+28948
-4611
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

266 files changed

+28948
-4611
lines changed

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,6 @@
1010
[submodule "ext/Shapes"]
1111
path = ext/Shapes
1212
url = https://github.com/SixLabors/Shapes.git
13+
[submodule "ext/Core"]
14+
path = ext/Core
15+
url = https://github.com/SixLabors/Core.git

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ latest [docfx](https://dotnet.github.io/docfx/) version needs to be installed. *
77
### How to update
88
To pull in the latest source of a project you have to navigate into the `ext` folder and checkout the required revision (by default these should always be pointing to the latest tagged full release)
99

10-
### How build
11-
run `docfx` from the command line. This will regenerate the site in the `docs` folder.
10+
### How do I build the latest docs
11+
run `build.cmd`/`build.ps1` from the command line. This will checkout that latest tagged commits for each of the repositories and regenerates the site in the `docs` folder.
1212

1313
### How to preview
14-
run `docfx --serve` this rebuilds the site but also runs a dev server at [http://localhost:8080](http://localhost:8080) so you can preview the current state of the docs.
14+
run `serve.cmd`/`serve.ps1` this rebuilds the site but also runs a dev server at [http://localhost:8080](http://localhost:8080) so you can preview the current state of the docs.
1515

1616
### Updating the docs
1717

18-
to be confirmed
18+
To make changes make sure you rebuild (run `build.cmd`) before committing. *TODO: automate this as a build step.*

api/toc.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
# @SixLabors.ImageSharp
22
# @SixLabors.ImageSharp.Web
33
# @SixLabors.Fonts
4-
# @SixLabors.Shapes
4+
# @SixLabors.Shapes
5+
# @SixLabors.Primitives

build.cmd

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
@echo Off
2+
3+
PowerShell -NoProfile -ExecutionPolicy Bypass -Command "& '.\build.ps1'"
4+
5+
if not "%errorlevel%"=="0" goto failure
6+
7+
:success
8+
ECHO successfully built project
9+
REM exit 0
10+
goto end
11+
12+
:failure
13+
ECHO failed to build.
14+
REM exit -1
15+
goto end
16+
17+
:end

build.ps1

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
# ensure all submodules are currently checked out to the latest tag
2+
git submodule update --init
3+
Get-ChildItem ./ext -Directory | ForEach-Object {
4+
$path = $_.FullName
5+
6+
git -C "$path" fetch
7+
$lastTag = (git -C "$path" describe --abbrev=0 --tags ) | Out-String
8+
$lastTag = $lastTag.Trim()
9+
10+
Write-Host "$path => $lastTag"
11+
git -C "$path" reset --hard "$lastTag" --
12+
}
13+
14+
docfx

docfx.json

+19
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,25 @@
7575
"properties": {
7676
"TargetFramework": "netstandard2.0"
7777
}
78+
},
79+
{
80+
"src": [
81+
{
82+
"files": [
83+
"ext/Core/src/**.csproj"
84+
],
85+
"exclude": [
86+
"**/obj/**",
87+
"**/bin/**",
88+
"docs/**"
89+
]
90+
}
91+
],
92+
"dest": "api/Core",
93+
"disableGitFeatures": false,
94+
"properties": {
95+
"TargetFramework": "netstandard2.0"
96+
}
7897
}
7998
],
8099
"build": {

0 commit comments

Comments
 (0)