2024-08-13 20:29:39 +09:00
|
|
|
|
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
|
<PropertyGroup>
|
|
|
|
|
<OutputType>WinExe</OutputType>
|
|
|
|
|
<TargetFramework>net8.0</TargetFramework>
|
|
|
|
|
<Nullable>enable</Nullable>
|
|
|
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
|
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
|
|
|
<AvaloniaUseCompiledBindingsByDefault>false</AvaloniaUseCompiledBindingsByDefault>
|
2024-08-13 20:40:53 +09:00
|
|
|
|
<IsPackable>false</IsPackable>
|
2024-08-13 20:29:39 +09:00
|
|
|
|
</PropertyGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="R3Extensions.Avalonia" Version="1.2.5" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<PackageReference Include="Avalonia" Version="11.1.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.1.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.1.0" />
|
|
|
|
|
<PackageReference Include="Avalonia.Fonts.Inter" Version="11.1.0" />
|
|
|
|
|
<!--Condition below is needed to remove Avalonia.Diagnostics package from build output in Release configuration.-->
|
|
|
|
|
<PackageReference Condition="'$(Configuration)' == 'Debug'" Include="Avalonia.Diagnostics" Version="11.1.0" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
|
|
|
|
|
<ItemGroup>
|
|
|
|
|
<ProjectReference Include="..\..\src\ObservableCollections.R3\ObservableCollections.R3.csproj" />
|
|
|
|
|
<ProjectReference Include="..\..\src\ObservableCollections\ObservableCollections.csproj" />
|
|
|
|
|
</ItemGroup>
|
|
|
|
|
</Project>
|