- 将构建输出文件名从 `server-` 更改为 `app-` 以匹配新的命名规范。 - 将 Sidecar 模式中的 Server 统一更名为 App,以准确反映其作为主业务逻辑载体的角色,并同步更新相关配置、文件命名、日志信息及代码注释。 - 更新允许执行的二进制文件为应用程序二进制文件。 - 将 Sidecar Server 相关的术语和日志信息统一更新为 Sidecar App,以准确反映实际启动的应用程序名称。 - 将外部二进制文件路径从 server 更改为 app
26 lines
506 B
JSON
26 lines
506 B
JSON
{
|
|
"$schema": "https://schema.tauri.app/config/2",
|
|
"productName": "app-desktop",
|
|
"version": "0.1.0",
|
|
"identifier": "com.imbytecat.app-desktop",
|
|
"app": {
|
|
"withGlobalTauri": true,
|
|
"windows": [],
|
|
"security": {
|
|
"csp": null
|
|
}
|
|
},
|
|
"bundle": {
|
|
"active": true,
|
|
"targets": "all",
|
|
"icon": [
|
|
"icons/32x32.png",
|
|
"icons/128x128.png",
|
|
"icons/128x128@2x.png",
|
|
"icons/icon.icns",
|
|
"icons/icon.ico"
|
|
],
|
|
"externalBin": ["binaries/app"]
|
|
}
|
|
}
|