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-03-21 13:08:20 +08:00
<Version > 4.0.0</Version>
<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-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-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-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>