Skip to content

Commit 3b89d56

Browse files
committed
update packaging
1 parent f8b4c59 commit 3b89d56

File tree

2 files changed

+21
-12
lines changed

2 files changed

+21
-12
lines changed

desktopApp/src/main/csharp/Flare.csproj

Lines changed: 15 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
66
<RootNamespace>Flare</RootNamespace>
77
<ApplicationManifest>app.manifest</ApplicationManifest>
8-
<Platforms>x86;x64;ARM64</Platforms>
9-
<RuntimeIdentifiers>win-x86;win-x64;win-arm64</RuntimeIdentifiers>
8+
<Platforms>x64</Platforms>
9+
<RuntimeIdentifiers>win-x64</RuntimeIdentifiers>
1010
<PublishProfile>win-$(Platform).pubxml</PublishProfile>
1111
<UseWinUI>true</UseWinUI>
1212
<EnableMsixTooling>true</EnableMsixTooling>
@@ -20,7 +20,7 @@
2020
<Exec Command="cd ..\..\..\..\&#xD;&#xA;./gradlew :desktop:createReleaseDistributable" IgnoreExitCode="false" />
2121
</Target>
2222
<ItemGroup>
23-
<None Include="$(ProjectDir)..\..\..\build\compose\binaries\main-release\app\Flare\**\*" CopyToOutputDirectory="Always" LinkBase="Assets\compose\Flare"/>
23+
<None Include="$(ProjectDir)..\..\..\build\compose\binaries\main-release\app\Flare\**\*" CopyToOutputDirectory="Always" LinkBase="Assets\compose\Flare" />
2424
</ItemGroup>
2525
<ItemGroup>
2626
<Content Include="Assets\SplashScreen.scale-200.png" />
@@ -59,9 +59,17 @@
5959

6060
<!-- Publish Properties -->
6161
<PropertyGroup>
62-
<PublishReadyToRun Condition="'$(Configuration)' == 'Debug'">False</PublishReadyToRun>
63-
<PublishReadyToRun Condition="'$(Configuration)' != 'Debug'">True</PublishReadyToRun>
64-
<PublishTrimmed Condition="'$(Configuration)' == 'Debug'">False</PublishTrimmed>
65-
<PublishTrimmed Condition="'$(Configuration)' != 'Debug'">True</PublishTrimmed>
62+
<PublishReadyToRun>False</PublishReadyToRun>
63+
<PublishTrimmed>False</PublishTrimmed>
64+
<GenerateTemporaryStoreCertificate>True</GenerateTemporaryStoreCertificate>
65+
<GenerateAppInstallerFile>False</GenerateAppInstallerFile>
66+
<AppxPackageSigningEnabled>False</AppxPackageSigningEnabled>
67+
<AppxPackageSigningTimestampDigestAlgorithm>SHA256</AppxPackageSigningTimestampDigestAlgorithm>
68+
<AppxAutoIncrementPackageRevision>False</AppxAutoIncrementPackageRevision>
69+
<GenerateTestArtifacts>False</GenerateTestArtifacts>
70+
<AppxBundle>Never</AppxBundle>
71+
<AppxBundlePlatforms>x64</AppxBundlePlatforms>
72+
<HoursBetweenUpdateChecks>0</HoursBetweenUpdateChecks>
73+
<AppxSymbolPackageEnabled>False</AppxSymbolPackageEnabled>
6674
</PropertyGroup>
6775
</Project>

desktopApp/src/main/csharp/Package.appxmanifest

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
IgnorableNamespaces="uap rescap">
99

1010
<Identity
11-
Name="381378e9-b4a5-45cb-8e29-330f80266aee"
12-
Publisher="CN=Tlaster"
11+
Name="51945Tlaster.FlareApp"
12+
Publisher="CN=F82B0EE7-EF8D-4515-BEAB-DD968D07D67F"
1313
Version="1.0.0.0" />
1414

15-
<mp:PhoneIdentity PhoneProductId="381378e9-b4a5-45cb-8e29-330f80266aee" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
15+
<mp:PhoneIdentity PhoneProductId="41c320a3-e557-4743-b941-89a8a7c94021" PhonePublisherId="00000000-0000-0000-0000-000000000000"/>
1616

1717
<Properties>
18-
<DisplayName>Flare</DisplayName>
18+
<DisplayName>FlareApp</DisplayName>
1919
<PublisherDisplayName>Tlaster</PublisherDisplayName>
2020
<Logo>Assets\StoreLogo.png</Logo>
2121
</Properties>
@@ -34,7 +34,7 @@
3434
Executable="$targetnametoken$.exe"
3535
EntryPoint="$targetentrypoint$">
3636
<uap:VisualElements
37-
DisplayName="Flare"
37+
DisplayName="FlareApp"
3838
Description="Flare"
3939
BackgroundColor="transparent"
4040
Square150x150Logo="Assets\Square150x150Logo.png"
@@ -54,5 +54,6 @@
5454

5555
<Capabilities>
5656
<rescap:Capability Name="runFullTrust" />
57+
<Capability Name="internetClient"/>
5758
</Capabilities>
5859
</Package>

0 commit comments

Comments
 (0)