Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions helpers.build.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -1475,7 +1475,7 @@ function Test-Clippy {
Set-DefaultWorkspaceMemberGroup @workspaceParams
}
}

process {
$clippyFlags = @(
'--%'
Expand Down Expand Up @@ -2087,7 +2087,7 @@ function Build-DscMsixPackage {
throw 'MSIX requires a specific architecture'
}

$displayName = 'DesiredStateConfiguration'
$displayName = 'Desired State Configuration'
$productName = 'DesiredStateConfiguration'

if ($isPreview) {
Expand All @@ -2112,10 +2112,10 @@ function Build-DscMsixPackage {
$productVersion = $productVersion -replace '(\d+)$', "$previewNumber.0"

if ($isPrivate) {
$displayName += "-Private"
$displayName += " (Private)"
}
else {
$displayName += "-Preview"
$displayName += " (Preview)"
}
} else {
# appx requires a version in the format of major.minor.build.revision with revision being 0
Expand Down
6 changes: 3 additions & 3 deletions packaging/msix/AppxManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
</uap3:AppExecutionAlias>
</uap3:Extension>
</Extensions>
<uap:VisualElements DisplayName="$DISPLAYNAME$" Description="DesiredStateConfiguration (DSC) enables a declarative model for configuration, also known as configuration as code." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
<uap:VisualElements AppListEntry="none" DisplayName="$DISPLAYNAME$" Description="DesiredStateConfiguration (DSC) enables a declarative model for configuration, also known as configuration as code." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
</uap:VisualElements>
</Application>
<Application Id="BicepExt" Executable="dsc-bicep-ext.exe" EntryPoint="Windows.FullTrustApplication">
Expand All @@ -47,7 +47,7 @@
</uap3:AppExecutionAlias>
</uap3:Extension>
</Extensions>
<uap:VisualElements DisplayName="DSC Bicep Extension" Description="gRPC server for Bicep extensibility with DSC." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
<uap:VisualElements AppListEntry="none" DisplayName="DSC Bicep Extension" Description="gRPC server for Bicep extensibility with DSC." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
</uap:VisualElements>
</Application>
<Application Id="Y2J" Executable="y2j.exe" EntryPoint="Windows.FullTrustApplication">
Expand All @@ -58,7 +58,7 @@
</uap3:AppExecutionAlias>
</uap3:Extension>
</Extensions>
<uap:VisualElements DisplayName="Yaml2Json" Description="Command-line tool to convert to/from YAML and JSON." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
<uap:VisualElements AppListEntry="none" DisplayName="Yaml2Json" Description="Command-line tool to convert to/from YAML and JSON." BackgroundColor="transparent" Square150x150Logo="assets\Square150x150Logo.png" Square44x44Logo="assets\Square44x44Logo.png">
</uap:VisualElements>
</Application>
</Applications>
Expand Down
Loading