|
| 1 | +importorg.jetbrains.compose.desktop.application.dsl.TargetFormat |
| 2 | + |
1 | 3 | plugins { |
2 | 4 | kotlin("multiplatform") |
3 | 5 | id("org.jetbrains.compose") |
@@ -205,13 +207,9 @@ compose.desktop { |
205 | 207 | mainClass="cc.unitmesh.devins.ui.MainKt" |
206 | 208 |
|
207 | 209 | nativeDistributions { |
208 | | - targetFormats( |
209 | | - org.jetbrains.compose.desktop.application.dsl.TargetFormat.Dmg, |
210 | | - org.jetbrains.compose.desktop.application.dsl.TargetFormat.Msi, |
211 | | - org.jetbrains.compose.desktop.application.dsl.TargetFormat.Deb |
212 | | - ) |
| 210 | + targetFormats(TargetFormat.Dmg,TargetFormat.Msi,TargetFormat.Deb) |
213 | 211 | packageName="AutoDev Desktop" |
214 | | - packageVersion=version.toString() |
| 212 | + packageVersion="1.0.5" |
215 | 213 | description="AutoDev Desktop Application with DevIns Support" |
216 | 214 | copyright="© 2024 AutoDev Team. All rights reserved." |
217 | 215 | vendor="AutoDev Team" |
|