-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMouse2Joy.UI.csproj
More file actions
26 lines (26 loc) · 1.29 KB
/
Mouse2Joy.UI.csproj
File metadata and controls
26 lines (26 loc) · 1.29 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows</TargetFramework>
<OutputType>Library</OutputType>
<Nullable>enable</Nullable>
<AvaloniaUseCompiledBindingsByDefault>true</AvaloniaUseCompiledBindingsByDefault>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Avalonia" />
<PackageReference Include="Avalonia.Themes.Fluent" />
<PackageReference Include="Avalonia.Fonts.Inter" />
<PackageReference Include="Avalonia.Markup.Xaml.Loader" />
<PackageReference Include="CommunityToolkit.Mvvm" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" />
<PackageReference Include="Microsoft.Win32.SystemEvents" />
<PackageReference Include="Serilog" />
<PackageReference Include="System.Reactive" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Mouse2Joy.Contracts\Mouse2Joy.Contracts.csproj" />
<ProjectReference Include="..\Mouse2Joy.Platform.Abstractions\Mouse2Joy.Platform.Abstractions.csproj" />
<ProjectReference Include="..\Mouse2Joy.Platform.Windows\Mouse2Joy.Platform.Windows.csproj" />
<ProjectReference Include="..\Mouse2Joy.Engine\Mouse2Joy.Engine.csproj" />
<ProjectReference Include="..\Mouse2Joy.Persistence\Mouse2Joy.Persistence.csproj" />
</ItemGroup>
</Project>