Skip to content

Commit b97f90b

Browse files
authored
Merge pull request #166 from OfficeDev/main
[admin] merge to live
2 parents 9f2d2fa + 3efed11 commit b97f90b

File tree

71 files changed

+882
-2962
lines changed

Some content is hidden

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

71 files changed

+882
-2962
lines changed

.github/workflows/samples.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Samples compilation
2+
3+
on:
4+
push:
5+
branches: [ "main" ]
6+
pull_request:
7+
branches: [ "main" ]
8+
9+
jobs:
10+
build:
11+
12+
runs-on: ubuntu-latest
13+
14+
steps:
15+
- uses: actions/checkout@v3
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v3
18+
with:
19+
dotnet-version: 8.x
20+
- name: Build
21+
run: dotnet build samples/samples.sln /p:TreatWarningsAsErrors=true

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -286,3 +286,5 @@ __pycache__/
286286
*.btm.cs
287287
*.odx.cs
288288
*.xsd.cs
289+
290+
docs/open-xml-docs/

docs/docfx.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,10 @@
4848
"**/*.yml": ["csharp", "vb"]
4949
}
5050
},
51-
"template": [],
51+
"template": [
52+
"default",
53+
"modern"
54+
],
5255
"dest": "open-xml-docs",
5356
"markdownEngineName": "markdig"
5457
}

0 commit comments

Comments
 (0)