mirror of
https://github.com/netbirdio/netbird.git
synced 2026-05-13 04:09:56 +00:00
Removes the legacy fyne-based client/ui implementation and renames the Wails replacement (client/ui-wails) to take its place at client/ui. Go imports, frontend bindings, CI workflows, goreleaser configs and the windows .syso icon path are updated to follow the rename.
55 lines
1.9 KiB
XML
55 lines
1.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<MsixPackagingToolTemplate
|
|
xmlns="http://schemas.microsoft.com/msix/packaging/msixpackagingtool/template/2022">
|
|
<Settings
|
|
AllowTelemetry="false"
|
|
ApplyACLsToPackageFiles="true"
|
|
GenerateCommandLineFile="true"
|
|
AllowPromptForPassword="false">
|
|
</Settings>
|
|
<Installer
|
|
Path="netbird-ui"
|
|
Arguments=""
|
|
InstallLocation="C:\Program Files\NetBird\NetBird">
|
|
</Installer>
|
|
<PackageInformation
|
|
PackageName="NetBird"
|
|
PackageDisplayName="NetBird"
|
|
PublisherName="CN=NetBird"
|
|
PublisherDisplayName="NetBird"
|
|
Version="0.0.1.0"
|
|
PackageDescription="NetBird desktop client">
|
|
<Capabilities>
|
|
<Capability Name="runFullTrust" />
|
|
|
|
</Capabilities>
|
|
<Applications>
|
|
<Application
|
|
Id="io.netbird.client"
|
|
Description="NetBird desktop client"
|
|
DisplayName="NetBird"
|
|
ExecutableName="netbird-ui"
|
|
EntryPoint="Windows.FullTrustApplication">
|
|
|
|
</Application>
|
|
</Applications>
|
|
<Resources>
|
|
<Resource Language="en-us" />
|
|
</Resources>
|
|
<Dependencies>
|
|
<TargetDeviceFamily Name="Windows.Desktop" MinVersion="10.0.17763.0" MaxVersionTested="10.0.19041.0" />
|
|
</Dependencies>
|
|
<Properties>
|
|
<Framework>false</Framework>
|
|
<DisplayName>NetBird</DisplayName>
|
|
<PublisherDisplayName>NetBird</PublisherDisplayName>
|
|
<Description>NetBird desktop client</Description>
|
|
<Logo>Assets\AppIcon.png</Logo>
|
|
</Properties>
|
|
</PackageInformation>
|
|
<SaveLocation PackagePath="netbird-ui.msix" />
|
|
<PackageIntegrity>
|
|
<CertificatePath></CertificatePath>
|
|
</PackageIntegrity>
|
|
</MsixPackagingToolTemplate>
|