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" />
|
2024-02-09 13:02:20 +01:00
|
|
|
|
<PackageReference Include="Dock.Avalonia" />
|
2024-02-11 02:39:36 +01:00
|
|
|
|
<PackageReference Include="Microsoft.Extensions.Configuration.CommandLine" />
|
2024-02-08 00:54:45 +01:00
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
|
<ProjectReference Include="..\InkForge.Common\InkForge.Common.csproj" />
|
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
2024-02-09 01:23:38 +01:00
|
|
|
|
</Project>
|