fbe58a81e4
Implement deferred code review findings: - Add IDialogService/IClipboardService interfaces for testable platform operations - Create AvaloniaDialogService and AvaloniaClipboardService implementations - Extract dialog strings and file extensions to centralized Constants classes - Refactor ViewModels to use DI instead of event delegates - Update tests to use mock services
21 lines
1.0 KiB
XML
21 lines
1.0 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0</TargetFramework>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<Nullable>enable</Nullable>
|
|
<BuiltInComInteropSupport>true</BuiltInComInteropSupport>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<PackageReference Include="Avalonia" Version="11.2.*" />
|
|
<PackageReference Include="Avalonia.Desktop" Version="11.2.*" />
|
|
<PackageReference Include="Avalonia.Themes.Fluent" Version="11.2.*" />
|
|
<PackageReference Include="Avalonia.Controls.DataGrid" Version="11.2.*" />
|
|
<PackageReference Include="MessageBox.Avalonia" Version="3.1.*" />
|
|
<PackageReference Include="SecureStore" Version="1.2.0" />
|
|
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="9.0.*" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging" Version="9.0.*" />
|
|
<PackageReference Include="Microsoft.Extensions.Logging.Console" Version="9.0.*" />
|
|
</ItemGroup>
|
|
</Project>
|