Skip to content

Commit 8a692ce

Browse files
committed
对生成的api文档的docfx的配置(还未为脚本添加注释)
1 parent 5a4f2cc commit 8a692ce

29 files changed

+25441
-12
lines changed

.gitignore

Lines changed: 17 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,23 @@
22
#
33
# Get latest from https://github.com/github/gitignore/blob/main/Unity.gitignore
44
#
5+
# 永久忽略这些文件类型
6+
*.dll
7+
*.pdb
8+
*.exe
9+
*.cache
10+
11+
# 忽略生成目录
12+
_site/
13+
obj/
14+
bin/
15+
api/
16+
temp/
17+
# Unity 构建输出文件
18+
/[Tt]eam_project_Data/
19+
# 忽略自动生成的文件
20+
toc.yml
21+
*.json.schema
522
.utmp/
623
[Ll]ibrary/
724
[Tt]emp/
@@ -10,7 +27,6 @@
1027
[Bb]uilds/
1128
[Ll]ogs/
1229
[Uu]ser[Ss]ettings/
13-
1430
# MemoryCaptures can get excessive in size.
1531
# They also could contain extremely sensitive data
1632
/[Mm]emoryCaptures/
Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
<!--
2+
This file defines some of the browsers that Microsoft's implementation provides in
3+
<windir>\Microsoft.NET\Framework\<ver>\CONFIG\Browsers\*.browser
4+
5+
It is not derived from any file distributed with Microsoft's implementation. Since
6+
we can't distribute MS's browser files, we use browscap.ini to determine
7+
browser capabilities. Then, if and only if the application contains App_Browser/*.browser
8+
files and we are using .NET 2.0 or higher, we supplement the capabilities with the
9+
information in those files and the files in this directory. The primary goal of this file
10+
is provide browser definitions that might be referenced in App_Browser/*.browser files.
11+
-->
12+
<browsers>
13+
<defaultBrowser id="Default">
14+
</defaultBrowser>
15+
<browser id="Default">
16+
<identification>
17+
<userAgent match="." />
18+
</identification>
19+
</browser>
20+
<browser id="IE6to9" parentID="Default">
21+
<identification>
22+
<capability name="majorver" match="^[6-9]" />
23+
<capability name="browser" match="^(IE|AOL)$" />
24+
</identification>
25+
</browser>
26+
<browser id="Opera8to9" parentID="Default">
27+
<identification>
28+
<capability name="majorver" match="^[8-9]" />
29+
<capability name="browser" match="^Opera$" />
30+
</identification>
31+
</browser>
32+
<browser id="Safari" parentID="Default">
33+
<identification>
34+
<capability name="browser" match="^Safari$" />
35+
</identification>
36+
</browser>
37+
<browser id="Mozilla" parentID="Default">
38+
<identification>
39+
<capability name="browser" match="^Mozilla" />
40+
</identification>
41+
</browser>
42+
</browsers>

0 commit comments

Comments
 (0)