mirror of
https://github.com/wwiinnddyy/LanMountainDesktop.git
synced 2026-06-20 23:54:26 +08:00
Add automatic release version stamping and multiple launcher reliability improvements. The Release workflow now runs scripts/Set-ReleaseVersion.ps1 in build jobs to inject tag-derived Version/AssemblyVersion into project metadata; several .csproj/Directory.Build.props and app.manifest files were changed to use a dev placeholder. Introduced AppVersionProvider (and related runtime metadata) to centralize version resolution and updated DeploymentLocator to use it and to prefer package-root/version.json. Launcher startup flow was hardened: added startup success tracking, public-activation recovery path, improved success/fallback semantics, and related IPC handling. UI/UX fixes include OOBE entrance/exit animation improvements (scaling-aware, concurrent fade+translate) and minor window lifecycle reorder in DesktopShellHost. CommandContext now recognizes restart and key=value args. New DesktopTrayService and .trae spec files (spec, checklist, tasks) document shell/tray hardening work. Miscellaneous logging, comments and housekeeping edits across launcher and shared contracts to support the above.
26 lines
1.1 KiB
XML
26 lines
1.1 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Version>0.0.0-dev</Version>
|
|
<PackageId>LanMountainDesktop.Shared.Contracts</PackageId>
|
|
<IsPackable>true</IsPackable>
|
|
<Authors>LanMountainDesktop</Authors>
|
|
<Description>Shared contracts used by LanMountainDesktop host and plugins for cross-boundary communication.</Description>
|
|
<PackageTags>LanMountainDesktop;Plugin;SharedContracts;Avalonia</PackageTags>
|
|
<PackageReadmeFile>README.md</PackageReadmeFile>
|
|
<RepositoryUrl>https://github.com/wwiinnddyy/LanMountainDesktop</RepositoryUrl>
|
|
<RepositoryType>git</RepositoryType>
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
|
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
|
|
<Copyright>Copyright (c) LanMountainDesktop Contributors</Copyright>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.3.12" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
</ItemGroup>
|
|
</Project>
|