Added app version to MicrosoftStoreAppxPath

This commit is contained in:
Jaex 2022-10-14 01:27:58 +03:00
parent 6f868f5c5e
commit b82692873a
2 changed files with 3 additions and 4 deletions

View file

@ -82,13 +82,12 @@ private enum SetupJobs
private static string InnoSetupDir => Path.Combine(SetupDir, "InnoSetup");
private static string MicrosoftStorePackageFilesDir => Path.Combine(SetupDir, "MicrosoftStore");
private static string PortableFileName => $"ShareX-{AppVersion}-portable.zip";
private static string PortableFilePath => Path.Combine(OutputDir, PortableFileName);
private static string PortableFilePath => Path.Combine(OutputDir, $"ShareX-{AppVersion}-portable.zip");
private static string SteamLauncherDir => Path.Combine(ParentDir, @"ShareX.Steam\bin\Release");
private static string SteamUpdatesDir => Path.Combine(SteamOutputDir, "Updates");
private static string NativeMessagingHostDir => Path.Combine(ParentDir, @"ShareX.NativeMessagingHost\bin\Release");
private static string RecorderDevicesSetupPath => Path.Combine(OutputDir, "Recorder-devices-setup.exe");
private static string MicrosoftStoreAppxPath => Path.Combine(OutputDir, "ShareX.appx");
private static string MicrosoftStoreAppxPath => Path.Combine(OutputDir, $"ShareX-{AppVersion}.appx");
private static string FFmpegPath => Path.Combine(OutputDir, "ffmpeg.exe");
private static string InnoSetupCompilerPath = @"C:\Program Files (x86)\Inno Setup 6\ISCC.exe";

View file

@ -31,7 +31,7 @@ artifacts:
name: Portable-Checksum
- path: ShareX-Steam
name: Steam
- path: ShareX.appx
- path: ShareX-*.appx
name: MicrosoftStore
deploy:
- provider: GitHub