25 lines
633 B
XML
25 lines
633 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
|
|
<OutputType>Exe</OutputType>
|
|
<TargetFramework>net6.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<RuntimeIdentifiers>linux-x64</RuntimeIdentifiers>
|
|
<PublishReadyToRun>true</PublishReadyToRun>
|
|
|
|
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Eto.Forms" Version="2.7.0" />
|
|
<PackageReference Include="Eto.Platform.Gtk" Version="2.7.0" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\Timelapse\Timelapse.csproj" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|