Dynamics 365 Customer Engagement 项目教程
1. 项目的目录结构及介绍
Dynamics 365 Customer Engagement 项目的目录结构如下:
.
├── CODEOWNERS
├── LICENSE
├── LICENSE-CODE
├── README.md
├── SECURITY.md
├── ThirdPartyNotices
├── pending-deleted-files.md
├── github
│ └── ISSUE_TEMPLATE
├── openpublishing
│ ├── build.ps1
│ ├── publish-config.json
│ └── redirection.json
├── acrolinx-config.edn
├── gitattributes
├── gitignore
└── openpublishing-build.ps1
目录结构介绍
- CODEOWNERS: 定义了项目的代码所有者,通常用于指定哪些用户或团队负责维护特定的文件或目录。
- LICENSE: 项目的许可证文件,遵循 Creative Commons Attribution 4.0 International Public License。
- LICENSE-CODE: 代码部分的许可证文件,遵循 MIT License。
- README.md: 项目的介绍文件,通常包含项目的概述、安装和使用说明。
- SECURITY.md: 项目的安全政策文件,包含如何报告安全漏洞的说明。
- ThirdPartyNotices: 第三方通知文件,列出了项目中使用的第三方库及其许可证信息。
- pending-deleted-files.md: 待删除文件的列表或说明。
- github/ISSUE_TEMPLATE: GitHub 问题模板目录,包含用于创建新问题的模板文件。
- openpublishing: 包含与文档发布相关的脚本和配置文件。
- build.ps1: 文档构建脚本。
- publish-config.json: 文档发布配置文件。
- redirection.json: 文档重定向配置文件。
- acrolinx-config.edn: Acrolinx 配置文件,用于文档质量检查。
- gitattributes: Git 属性文件,定义了文件的 Git 行为。
- gitignore: Git 忽略文件,定义了哪些文件或目录不应被 Git 跟踪。
- openpublishing-build.ps1: 文档构建脚本。
2. 项目的启动文件介绍
Dynamics 365 Customer Engagement 项目没有明确的“启动文件”,因为它主要是一个文档仓库,而不是一个应用程序。项目的核心功能是通过文档和配置文件来管理和发布 Dynamics 365 Customer Engagement 的相关文档。
3. 项目的配置文件介绍
3.1 openpublishing/publish-config.json
该文件是文档发布的主要配置文件,定义了文档发布的目标、格式和其他相关设置。
{
"publishTargets": [
{
"name": "GitHub Pages",
"url": "https://microsoftdocs.github.io/dynamics-365-customer-engagement"
}
],
"formats": ["html", "pdf"],
"defaultLanguage": "en-us"
}
3.2 openpublishing/redirection.json
该文件定义了文档的重定向规则,用于将旧的文档链接重定向到新的文档链接。
{
"redirects": [
{
"from": "/old-path",
"to": "/new-path"
}
]
}
3.3 acrolinx-config.edn
该文件是 Acrolinx 的配置文件,用于定义文档质量检查的规则和设置。
{:ruleset "standard"
:language "en"
:min-score 85}
通过这些配置文件,可以有效地管理和发布 Dynamics 365 Customer Engagement 的相关文档。
创作声明:本文部分内容由AI辅助生成(AIGC),仅供参考