InkForge/app/InkForge.Common/InkForge.Common.csproj

25 lines
862 B
XML
Raw Normal View History

2024-02-08 00:54:45 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<RootNamespace>InkForge</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
2024-02-10 23:47:45 +01:00
<PackageReference Include="Avalonia.Controls.DataGrid" />
2024-02-09 01:23:38 +01:00
<PackageReference Include="Avalonia.Fonts.Inter" />
2024-02-08 00:54:45 +01:00
<PackageReference Include="Avalonia.ReactiveUI" />
<PackageReference Include="Avalonia.Themes.Fluent" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" />
2024-02-08 00:54:45 +01:00
<PackageReference Include="Microsoft.Extensions.Http" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\shared\InkForge.Data\InkForge.Data.csproj" />
<ProjectReference Include="..\..\shared\migrations\InkForge.Sqlite\InkForge.Sqlite.csproj" />
</ItemGroup>
</Project>