Skip to content

Commit

Permalink
Fix dev dir in installer and add to CI
Browse files Browse the repository at this point in the history
  • Loading branch information
TrinityDevelopers committed Jun 30, 2020
1 parent 9e435fd commit 75ba9b1
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
*.userosscache
*.sln.docstates
ZenovaAPI.dll
ZenovaAPI.lib
ZenovaLoader
dev/

# User-specific files (MonoDevelop/Xamarin Studio)
*.userprefs
Expand Down
4 changes: 2 additions & 2 deletions ZenovaLauncher/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.0.1.7")]
[assembly: AssemblyFileVersion("1.0.1.7")]
[assembly: AssemblyVersion("1.0.1.8")]
[assembly: AssemblyFileVersion("1.0.1.8")]
3 changes: 1 addition & 2 deletions ZenovaLauncher/SetupZenovaLauncher.iss
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@ Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{
[Files]
Source: "ZenovaLoader"; DestDir: "{app}"; Flags: ignoreversion
Source: "ZenovaAPI.dll"; DestDir: "{code:GetDataDir}"; Flags: ignoreversion
Source: "ZenovaAPI.lib"; DestDir: "{code:GetDataDir}"; Flags: ignoreversion
Source: "bin\Release\ZenovaLauncher.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\ZenovaBackend.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\ControlzEx.dll"; DestDir: "{app}"; Flags: ignoreversion
Expand All @@ -58,7 +57,7 @@ Source: "bin\Release\Octokit.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\System.ValueTuple.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\System.Windows.Interactivity.dll"; DestDir: "{app}"; Flags: ignoreversion
Source: "bin\Release\Windows.Internal.Security.Authentication.Web.winmd"; DestDir: "{app}"; Flags: ignoreversion
; NOTE: Don't use "Flags: ignoreversion" on any shared system files
Source: "dev\*"; DestDir: "{code:GetDataDir}\dev"; Flags: ignoreversion recursesubdirs

[Dirs]
Name: "{code:GetDataDir}\versions"
Expand Down
8 changes: 7 additions & 1 deletion azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,15 @@ steps:
connection: 'GitHub - TrinityDevelopers'
userRepository: 'MinecraftZenova/ZenovaAPI'
defaultVersionType: 'latest'
itemPattern: 'ZenovaAPI.*'
itemPattern: 'ZenovaAPI*'
downloadPath: 'ZenovaLauncher/'

- task: ExtractFiles@1
inputs:
archiveFilePatterns: 'ZenovaLauncher/ZenovaAPI-dev.zip'
destinationFolder: 'ZenovaLauncher/dev'
cleanDestinationFolder: true

- task: DownloadGitHubRelease@0
inputs:
connection: 'GitHub - TrinityDevelopers'
Expand Down

0 comments on commit 75ba9b1

Please sign in to comment.