File tree 7 files changed +14
-8
lines changed
LiveWallpaper.LocalServer/Controllers
7 files changed +14
-8
lines changed Original file line number Diff line number Diff line change 39
39
<AppxBundlePlatforms >x64</AppxBundlePlatforms >
40
40
<GenerateTemporaryStoreCertificate >True</GenerateTemporaryStoreCertificate >
41
41
<HoursBetweenUpdateChecks >0</HoursBetweenUpdateChecks >
42
+ <AppxPackageSigningTimestampDigestAlgorithm >SHA256</AppxPackageSigningTimestampDigestAlgorithm >
42
43
</PropertyGroup >
43
44
<PropertyGroup Condition =" '$(Configuration)|$(Platform)'=='Debug|x86'" >
44
45
<AppxBundle >Always</AppxBundle >
Original file line number Diff line number Diff line change 8
8
xmlns : com =" http://schemas.microsoft.com/appx/manifest/com/windows10"
9
9
xmlns : desktop =" http://schemas.microsoft.com/appx/manifest/desktop/windows10"
10
10
IgnorableNamespaces =" uap mp rescap com desktop" >
11
- <Identity Name =" 24765mscoder.107453A6A4A17" Publisher =" CN=49BC8659-1B4C-4520-B1FB-ED98CFA366C4" Version =" 2.6.1 .0" />
11
+ <Identity Name =" 24765mscoder.107453A6A4A17" Publisher =" CN=49BC8659-1B4C-4520-B1FB-ED98CFA366C4" Version =" 2.6.2 .0" />
12
12
<Properties >
13
13
<DisplayName >ms-resource:Resources/PackageDisplayName</DisplayName >
14
14
<PublisherDisplayName >Giantapp Studio</PublisherDisplayName >
Original file line number Diff line number Diff line change @@ -31,9 +31,7 @@ public static bool IsFileReady(string filename)
31
31
{
32
32
try
33
33
{
34
- using ( Stream stream = new FileStream ( filename , FileMode . Open ) )
35
- {
36
- }
34
+ using Stream stream = new FileStream ( filename , FileMode . Open ) ;
37
35
return true ;
38
36
}
39
37
catch
Original file line number Diff line number Diff line change 6
6
<UseWPF >true</UseWPF >
7
7
<SupportedOSPlatformVersion >10.0.17763.0</SupportedOSPlatformVersion >
8
8
<AssemblyName >LiveWallpaper2</AssemblyName >
9
- <Version >2.6.1 .0</Version >
9
+ <Version >2.6.2 .0</Version >
10
10
<Platforms >x86;x64</Platforms >
11
11
<ApplicationIcon >Assets\logo128.ico</ApplicationIcon >
12
12
<ApplicationManifest >app.manifest</ApplicationManifest >
24
24
<ItemGroup >
25
25
<PackageReference Include =" CommunityToolkit.Mvvm" Version =" 8.0.0" />
26
26
<PackageReference Include =" HandyControl" Version =" 3.3.0" />
27
- <PackageReference Include =" Microsoft.Web.WebView2" Version =" 1.0.1264.42 " />
27
+ <PackageReference Include =" Microsoft.Web.WebView2" Version =" 1.0.2592.51 " />
28
28
</ItemGroup >
29
29
30
30
<ItemGroup >
Original file line number Diff line number Diff line change @@ -28,3 +28,10 @@ DeletePath -path $buildDist
28
28
# build sln
29
29
# Invoke-MsBuild -Path $sln -MsBuildParameters "-t:restore /target:Clean;Build /property:Configuration=Release;OutputPath=$buildDist" -ShowBuildOutputInNewWindow -PromptForInputBeforeClosing -AutoLaunchBuildLogOnFailure
30
30
Invoke-MsBuild - Path $sln - MsBuildParameters " -t:restore /target:Clean;Publish /p:PublishProfile=./FolderProfile.pubxml" - ShowBuildOutputInNewWindow - PromptForInputBeforeClosing - AutoLaunchBuildLogOnFailure
31
+
32
+ # inno setup 打包
33
+ $innoSetup = " C:\Program Files (x86)\Inno Setup 6\ISCC.exe"
34
+ $innoSetupScript = " $PSScriptRoot \installer.iss"
35
+ $innoSetupOutput = " $PSScriptRoot \dist"
36
+ DeletePath - path $innoSetupOutput
37
+ & $innoSetup $innoSetupScript
Original file line number Diff line number Diff line change 1
1
; Script generated by the Inno Setup Script Wizard.
2
2
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
3
3
4
- #define MyAppVersion GetFileVersion (" .\publish\LiveWallpaper2.exe" )
4
+ #define MyAppVersion GetVersionNumbersString (" .\publish\LiveWallpaper2.exe" )
5
5
#define ProductName " LiveWallpaper"
6
6
#define ProductVersionName " LiveWallpaper2"
7
7
#define MyAppPublisher " Giantapp Studio"
8
8
#define MyAppURL " https://www.giantapp.cn"
9
9
#define MyAppExeName " LiveWallpaper2.exe"
10
10
#define ProductNameEn= " Live Wallpaper 2"
11
- #define ProductNameZh= " 巨应壁纸2 "
11
+ #define ProductNameZh= " ¾ÞÓ¦±ÚÖ½2 "
12
12
#define OutputDir= " .\dist"
13
13
14
14
[Setup]
You can’t perform that action at this time.
0 commit comments