Skip to content

Commit

Permalink
修复丢注释
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi committed Nov 12, 2024
1 parent d2552f2 commit 62eeabd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ public string? DebControlDescription
get => GetString();
}
/// <summary>
/// 配置放入到 DEBIAN\control 文件的 Depends 属性。如不填写,则忽略。
/// 配置放入到 DEBIAN\control 文件的 Depends 属性。如不填写,则忽略。用于配置软件依赖,比如填写入 vlc,libvlc-dev 即可在声明安装包依赖 vlc 组件
/// </summary>
/// <example>vlc</example>
public string? DebControlDepends
Expand Down
2 changes: 1 addition & 1 deletion DebUOS/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@ dotnet publish -t:CreateDebUOS -c release -r linux-x64 --self-contained
<!-- 配置放入到 DEBIAN\control 文件的 Description 属性。如不填写,默认将使用 Description 属性的值 -->
<DebControlDescription>The file downloader.</DebControlDescription>

<!-- 配置放入到 DEBIAN\control 文件的 Depends 属性。如不填写,则忽略。 -->
<!-- 配置放入到 DEBIAN\control 文件的 Depends 属性。如不填写,则忽略。用于配置软件依赖,比如填写入 vlc,libvlc-dev 即可在声明安装包依赖 vlc 组件 -->
<DebControlDepends>vlc</DebControlDepends>

<!-- 应用名,英文名。将作为 opt\apps\${AppId}\entries\applications\${AppId}.desktop 和 opt\apps\${AppId}\info 的 Name 属性的值,不写默认和 AssemblyName 属性相同 -->
Expand Down

0 comments on commit 62eeabd

Please sign in to comment.