-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.psd1
27 lines (26 loc) · 914 Bytes
/
package.psd1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
@{
Root = 'C:\Users\Arthu\Documents\GitHub\PhotoOrganizer\PhotoOrganizer_v2.ps1'
OutputPath = 'C:\Users\Arthu\Documents\GitHub\PhotoOrganizer'
Package = @{
Enabled = $true
Obfuscate = $false
HideConsoleWindow = $true
DotNetVersion = 'net6.0'
FileVersion = '2.1.1'
FileDescription = 'Program to sort images based on date taken.'
ProductName = 'PhotoOrganizer'
ProductVersion = 'v2'
Copyright = 'Arthur Huyghe'
RequireElevation = $false
ApplicationIconPath = 'PhotoOrganizer_v2(gekleurd).ico'
PackageType = 'Console'
HighDPISupport = $true
PowerShellVersion = '7.2.6'
Resources = [string[]]@("PhotoOrganizer_v2(gekleurd).ico", "sortWindow.xaml", "ProgressWindow.xaml")
}
Bundle = @{
Enabled = $true
Modules = $true
# IgnoredModules = @()
}
}