Skip to content

Commit 10dec4e

Browse files
authored
Build issue 269 (#286)
* (#274) Avalonia update to .NET 9 * (#269) Fix for build problems. Inherit settings between prod and dev
1 parent 0b6881a commit 10dec4e

File tree

3 files changed

+65
-134
lines changed

3 files changed

+65
-134
lines changed

Diff for: mkdocs.production.yml

+1-70
Original file line numberDiff line numberDiff line change
@@ -1,74 +1,5 @@
1+
INHERIT: ./mkdocs.shared.yml
12
site_name: Datasync Community Toolkit
23
site_url: https://CommunityToolkit.github.io/Datasync/
34
repo_url: https://github.com/CommunityToolkit/Datasync/
45
repo_name: GitHub
5-
6-
theme:
7-
name: readthedocs
8-
highlightjs: true
9-
locale: en
10-
11-
validation:
12-
omitted_files: warn
13-
absolute_links: warn
14-
unrecognized_links: warn
15-
anchors: warn
16-
17-
markdown_extensions:
18-
- smarty: {}
19-
- toc:
20-
permalink: "#"
21-
- sane_lists: {}
22-
- fenced_code: {}
23-
- tables: {}
24-
- admonition: {}
25-
- pymdownx.superfences:
26-
custom_fences:
27-
- name: mermaid
28-
class: mermaid
29-
format: !!python/name: mermaid2.fence_mermaid_custom
30-
31-
plugins:
32-
- search
33-
- mermaid2
34-
35-
nav:
36-
- Getting started: index.md
37-
- Tutorial:
38-
- Server:
39-
- "The basics": tutorial/server/part-1.md
40-
- "Standard repositories": tutorial/server/part-2.md
41-
- "Custom repositories": tutorial/server/part-3.md
42-
- "Access control": tutorial/server/part-4.md
43-
- "Real-time updates": tutorial/server/part-5.md
44-
- In depth:
45-
- Server:
46-
- The basics: in-depth/server/index.md
47-
- Databases:
48-
- Azure SQL: in-depth/server/db/azuresql.md
49-
- Cosmos: in-depth/server/db/cosmos.md
50-
- In Memory: in-depth/server/db/in-memory.md
51-
- LiteDb: in-depth/server/db/litedb.md
52-
- MongoDb: in-depth/server/db/mongodb.md
53-
- MySQL: in-depth/server/db/mysql.md
54-
- PgSQL: in-depth/server/db/pgsql.md
55-
- SQLite: in-depth/server/db/sqlite.md
56-
- OpenApi:
57-
- NSwag: in-depth/server/openapi/nswag.md
58-
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
59-
- ".NET 9.x": in-depth/server/openapi/net9.md
60-
- Client:
61-
- The basics: in-depth/client/index.md
62-
- Authentication: in-depth/client/auth.md
63-
- Online operations: in-depth/client/online.md
64-
- Advanced topics:
65-
- MAUI AOT: in-depth/client/advanced/maui-aot.md
66-
- Samples:
67-
- Todo App:
68-
- The server: samples/todoapp/server.md
69-
- Avalonia: samples/todoapp/avalonia.md
70-
- MAUI: samples/todoapp/maui.md
71-
- WinUI3: samples/todoapp/winui3.md
72-
- WPF: samples/todoapp/wpf.md
73-
74-

Diff for: mkdocs.shared.yml

+63
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
theme:
2+
name: readthedocs
3+
highlightjs: true
4+
locale: en
5+
6+
validation:
7+
omitted_files: warn
8+
absolute_links: warn
9+
unrecognized_links: warn
10+
anchors: warn
11+
12+
plugins:
13+
- search
14+
- mermaid2
15+
16+
markdown_extensions:
17+
- smarty: {}
18+
- toc:
19+
permalink: "#"
20+
- sane_lists: {}
21+
- fenced_code: {}
22+
- tables: {}
23+
- admonition: {}
24+
- pymdownx.superfences: {}
25+
26+
nav:
27+
- Getting started: index.md
28+
- Tutorial:
29+
- Server:
30+
- "The basics": tutorial/server/part-1.md
31+
- "Standard repositories": tutorial/server/part-2.md
32+
- "Custom repositories": tutorial/server/part-3.md
33+
- "Access control": tutorial/server/part-4.md
34+
- "Real-time updates": tutorial/server/part-5.md
35+
- In depth:
36+
- Server:
37+
- The basics: in-depth/server/index.md
38+
- Databases:
39+
- Azure SQL: in-depth/server/db/azuresql.md
40+
- Cosmos: in-depth/server/db/cosmos.md
41+
- In Memory: in-depth/server/db/in-memory.md
42+
- LiteDb: in-depth/server/db/litedb.md
43+
- MongoDb: in-depth/server/db/mongodb.md
44+
- MySQL: in-depth/server/db/mysql.md
45+
- PgSQL: in-depth/server/db/pgsql.md
46+
- SQLite: in-depth/server/db/sqlite.md
47+
- OpenApi:
48+
- NSwag: in-depth/server/openapi/nswag.md
49+
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
50+
- ".NET 9.x": in-depth/server/openapi/net9.md
51+
- Client:
52+
- The basics: in-depth/client/index.md
53+
- Authentication: in-depth/client/auth.md
54+
- Online operations: in-depth/client/online.md
55+
- Advanced topics:
56+
- MAUI AOT: in-depth/client/advanced/maui-aot.md
57+
- Samples:
58+
- Todo App:
59+
- The server: samples/todoapp/server.md
60+
- Avalonia: samples/todoapp/avalonia.md
61+
- MAUI: samples/todoapp/maui.md
62+
- WinUI3: samples/todoapp/winui3.md
63+
- WPF: samples/todoapp/wpf.md

Diff for: mkdocs.yml

+1-64
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,3 @@
1+
INHERIT: ./mkdocs.shared.yml
12
site_name: Datasync Community Toolkit
23
dev_addr: localhost:7000
3-
4-
theme:
5-
name: readthedocs
6-
highlightjs: true
7-
locale: en
8-
9-
validation:
10-
omitted_files: warn
11-
absolute_links: warn
12-
unrecognized_links: warn
13-
anchors: warn
14-
15-
markdown_extensions:
16-
- smarty: {}
17-
- toc:
18-
permalink: "#"
19-
- sane_lists: {}
20-
- fenced_code: {}
21-
- tables: {}
22-
- admonition: {}
23-
- pymdownx.superfences: {}
24-
25-
plugins:
26-
- search
27-
- mermaid2
28-
29-
nav:
30-
- Getting started: index.md
31-
- Tutorial:
32-
- Server:
33-
- "The basics": tutorial/server/part-1.md
34-
- "Standard repositories": tutorial/server/part-2.md
35-
- "Custom repositories": tutorial/server/part-3.md
36-
- "Access control": tutorial/server/part-4.md
37-
- "Real-time updates": tutorial/server/part-5.md
38-
- In depth:
39-
- Server:
40-
- The basics: in-depth/server/index.md
41-
- Databases:
42-
- Azure SQL: in-depth/server/db/azuresql.md
43-
- Cosmos: in-depth/server/db/cosmos.md
44-
- In Memory: in-depth/server/db/in-memory.md
45-
- LiteDb: in-depth/server/db/litedb.md
46-
- MongoDb: in-depth/server/db/mongodb.md
47-
- MySQL: in-depth/server/db/mysql.md
48-
- PgSQL: in-depth/server/db/pgsql.md
49-
- SQLite: in-depth/server/db/sqlite.md
50-
- OpenApi:
51-
- NSwag: in-depth/server/openapi/nswag.md
52-
- Swashbuckle: in-depth/server/openapi/swashbuckle.md
53-
- ".NET 9.x": in-depth/server/openapi/net9.md
54-
- Client:
55-
- The basics: in-depth/client/index.md
56-
- Authentication: in-depth/client/auth.md
57-
- Online operations: in-depth/client/online.md
58-
- Advanced topics:
59-
- MAUI AOT: in-depth/client/advanced/maui-aot.md
60-
- Samples:
61-
- Todo App:
62-
- The server: samples/todoapp/server.md
63-
- Avalonia: samples/todoapp/avalonia.md
64-
- MAUI: samples/todoapp/maui.md
65-
- WinUI3: samples/todoapp/winui3.md
66-
- WPF: samples/todoapp/wpf.md

0 commit comments

Comments
 (0)