yavsc/src/PostIt/PostIt.Desktop/PostIt.Desktop.csproj

27 lines
1.2 KiB
XML
Raw Normal View History

2026-05-28 22:18:26 +01:00
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
2026-05-29 01:29:36 +01:00
<!--If you are willing to use platform-specific APIs, use conditional compilation.
See https://docs.avaloniaui.net/docs/guides/platforms/platform-specific-code/dotnet for more details.-->
2026-05-28 22:18:26 +01:00
<TargetFramework>net10.0</TargetFramework>
<Nullable>enable</Nullable>
<AssemblyVersion>1.1.0.0</AssemblyVersion>
<FileVersion>1.1.0.0</FileVersion>
<InformationalVersion>1.1.0-beta.1+49.Branch.release-1.0.8-rc3.Sha.5274d7bdf5d14406748a2063b5ae15191aac4359</InformationalVersion>
<Version>1.1.0-beta.1</Version>
2026-05-29 01:29:36 +01:00
</PropertyGroup>
<PropertyGroup>
2026-05-28 22:18:26 +01:00
<ApplicationManifest>app.manifest</ApplicationManifest>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia.Desktop" />
<PackageReference Include="AvaloniaUI.DiagnosticsSupport">
<IncludeAssets Condition="'$(Configuration)' != 'Debug'">None</IncludeAssets>
<PrivateAssets Condition="'$(Configuration)' != 'Debug'">All</PrivateAssets>
</PackageReference>
2026-07-09 23:28:46 +01:00
<PackageReference Include="Material.Avalonia" />
2026-05-29 01:29:36 +01:00
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\PostIt\PostIt.csproj" />
2026-05-28 22:18:26 +01:00
</ItemGroup>
2026-08-22 16:58:08 +01:00
</Project>