2026-03-12 09:22:03 +08:00
<Project Sdk= "Microsoft.NET.Sdk" >
2026-03-09 12:27:33 +08:00
<PropertyGroup >
<TargetFramework > net10.0</TargetFramework>
<ImplicitUsings > enable</ImplicitUsings>
<Nullable > enable</Nullable>
2026-04-14 16:47:32 +08:00
<Version > 4.0.2</Version>
2026-03-21 13:08:20 +08:00
<PackageId > LanMountainDesktop.PluginSdk</PackageId>
<IsPackable > true</IsPackable>
<Authors > LanMountainDesktop</Authors>
<Description > Official plugin SDK for LanMountainDesktop, including plugin manifest contracts, runtime interfaces, and registration extensions.</Description>
<PackageTags > LanMountainDesktop;Plugin;SDK;Avalonia</PackageTags>
<PackageReadmeFile > README.md</PackageReadmeFile>
<RepositoryUrl > https://github.com/wwiinnddyy/LanMountainDesktop</RepositoryUrl>
<RepositoryType > git</RepositoryType>
2026-04-07 12:18:15 +08:00
<PackageLicenseExpression > LGPL-3.0-or-later</PackageLicenseExpression>
<Copyright > Copyright (c) LanMountainDesktop Contributors</Copyright>
2026-03-09 12:27:33 +08:00
</PropertyGroup>
<ItemGroup >
2026-03-10 00:04:33 +08:00
<Compile Remove= "_build_verify_*\**\*.cs" />
2026-03-09 12:27:33 +08:00
<PackageReference Include= "Avalonia" Version= "11.3.12" />
2026-04-14 12:25:28 +08:00
<PackageReference Include= "FluentAvaloniaUI" Version= "2.5.0" ExcludeAssets= "runtime" />
<PackageReference Include= "FluentIcons.Avalonia" Version= "2.0.320" ExcludeAssets= "runtime" />
<PackageReference Include= "FluentIcons.Avalonia.Fluent" Version= "2.0.320" ExcludeAssets= "runtime" />
2026-03-12 09:22:03 +08:00
<PackageReference Include= "Microsoft.Extensions.DependencyInjection.Abstractions" Version= "10.0.0" />
<PackageReference Include= "Microsoft.Extensions.Hosting.Abstractions" Version= "10.0.0" />
2026-04-22 10:25:46 +08:00
<ProjectReference Include= "..\LanMountainDesktop.PluginIsolation.Contracts\LanMountainDesktop.PluginIsolation.Contracts.csproj" />
2026-03-20 00:41:14 +08:00
<ProjectReference Include= "..\LanMountainDesktop.Shared.Contracts\LanMountainDesktop.Shared.Contracts.csproj" />
2026-03-09 12:27:33 +08:00
</ItemGroup>
2026-03-21 13:08:20 +08:00
<ItemGroup >
<None Include= "README.md" Pack= "true" PackagePath= "\" />
<None Include= "buildTransitive\LanMountainDesktop.PluginSdk.props" Pack= "true" PackagePath= "buildTransitive\" />
<None Include= "buildTransitive\LanMountainDesktop.PluginSdk.targets" Pack= "true" PackagePath= "buildTransitive\" />
</ItemGroup>
2026-03-09 12:27:33 +08:00
</Project>