16 lines
609 B
XML
16 lines
609 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<TargetFramework>net9.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<Platforms>AnyCPU;x64;x86</Platforms>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.2.0" />
|
|
<PackageReference Include="Avalonia.Xaml.Behaviors" Version="11.2.0" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Toolkit.Foundation\Toolkit.Foundation.csproj" />
|
|
<ProjectReference Include="..\Toolkit.UI.Controls.Avalonia\Toolkit.UI.Controls.Avalonia.csproj" />
|
|
</ItemGroup>
|
|
</Project> |