2026-03-20 00:41:14 +08:00
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
2026-03-21 13:08:20 +08:00
|
|
|
<Version>1.0.0</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>
|
2026-03-23 21:13:08 +08:00
|
|
|
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
|
2026-04-07 12:18:15 +08:00
|
|
|
<PackageLicenseExpression>LGPL-3.0-or-later</PackageLicenseExpression>
|
|
|
|
|
<Copyright>Copyright (c) LanMountainDesktop Contributors</Copyright>
|
2026-03-20 00:41:14 +08:00
|
|
|
</PropertyGroup>
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="11.3.12" />
|
|
|
|
|
</ItemGroup>
|
2026-03-21 13:08:20 +08:00
|
|
|
<ItemGroup>
|
|
|
|
|
<None Include="README.md" Pack="true" PackagePath="\" />
|
|
|
|
|
</ItemGroup>
|
2026-03-20 00:41:14 +08:00
|
|
|
</Project>
|