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

31 lines
1.2 KiB
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>
2024-02-11 02:39:36 +01:00
<GenerateEmbeddedFilesManifest>true</GenerateEmbeddedFilesManifest>
2024-02-08 00:54:45 +01:00
</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" />
2024-02-11 02:39:36 +01:00
<PackageReference Include="Microsoft.Extensions.Configuration.Json" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" />
2024-02-08 00:54:45 +01:00
<PackageReference Include="Microsoft.Extensions.Http" />
2024-02-11 02:39:36 +01:00
<PackageReference Include="Splat.Microsoft.Extensions.DependencyInjection" />
2024-02-08 00:54:45 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\..\shared\InkForge.Data\InkForge.Data.csproj" />
<ProjectReference Include="..\..\shared\migrations\InkForge.Sqlite\InkForge.Sqlite.csproj" />
</ItemGroup>
2024-02-11 02:39:36 +01:00
<ItemGroup>
<EmbeddedResource Include="Properties\Settings.json" />
</ItemGroup>
</Project>