InABox.Avalonia.Platform.csproj 742 B

12345678910111213141516171819202122
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net8.0;net9.0</TargetFrameworks>
  4. <ImplicitUsings>enable</ImplicitUsings>
  5. <Nullable>enable</Nullable>
  6. <RootNamespace>InABox.Avalonia.Platform</RootNamespace>
  7. <Configurations>Debug;Release;Publish</Configurations>
  8. <Platforms>AnyCPU</Platforms>
  9. </PropertyGroup>
  10. <ItemGroup>
  11. <PackageReference Include="Autofac" Version="8.4.0" />
  12. <PackageReference Include="Avalonia" Version="11.2.2" />
  13. <PackageReference Include="Microsoft.Maui.Essentials" Version="9.0.90" />
  14. </ItemGroup>
  15. <ItemGroup>
  16. <ProjectReference Include="..\InABox.Core\InABox.Core.csproj" />
  17. </ItemGroup>
  18. </Project>