InkForge/app/InkForge.Desktop/InkForge.Desktop.csproj

20 lines
557 B
XML
Raw Normal View History

2024-02-02 18:46:24 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
2024-02-07 22:16:59 +01:00
<OutputType>WinExe</OutputType>
2024-02-02 18:46:24 +01:00
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
2024-02-08 00:54:45 +01:00
<AssemblyName>InkForge</AssemblyName>
2024-02-02 18:46:24 +01:00
</PropertyGroup>
2024-02-08 00:54:45 +01:00
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" />
<PackageReference Include="Splat.Microsoft.Extensions.DependencyInjection" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\InkForge.Common\InkForge.Common.csproj" />
</ItemGroup>
2024-02-09 01:23:38 +01:00
</Project>