26 lines
976 B
XML
26 lines
976 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<TargetFrameworks>net8.0;net9.0;net10.0</TargetFrameworks>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<AssemblyName>Lattice.Core</AssemblyName>
|
|
<RootNamespace>Lattice.Core</RootNamespace>
|
|
|
|
<Authors>FrigaT</Authors>
|
|
<Company>FrigaT</Company>
|
|
<RepositoryUrl>https://git.frigat.duckdns.org/FrigaT/Lattice</RepositoryUrl>
|
|
<PackageProjectUrl>https://git.frigat.duckdns.org/FrigaT/Lattice</PackageProjectUrl>
|
|
<Description>Core docking and layout engine for Lattice UI (WinUI 3 / Uno Platform).</Description>
|
|
|
|
<IsTrimmable Condition="$([MSBuild]::IsTargetFrameworkCompatible('$(TargetFramework)', 'net8.0'))">true</IsTrimmable>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="10.0.1" />
|
|
<PackageReference Include="System.Text.Json" Version="10.0.1" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|