-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathWhipstaff.Wpf.csproj
More file actions
34 lines (30 loc) · 1.53 KB
/
Copy pathWhipstaff.Wpf.csproj
File metadata and controls
34 lines (30 loc) · 1.53 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
27
28
29
30
31
32
33
34
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0-windows10.0.19041</TargetFramework>
<UseWPF>true</UseWPF>
<Nullable>enable</Nullable>
<EnableWindowsTargeting>True</EnableWindowsTargeting>
<PackageDescription>Re-usable logic for working with WPF.</PackageDescription>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.8" />
<PackageReference Include="PInvoke.User32" Version="0.7.124" />
<PackageReference Include="ReactiveUI.WPF" Version="21.0.1" />
<PackageReference Include="ReactiveMarbles.ObservableEvents.SourceGenerator" Version="1.3.1" PrivateAssets="all" />
<PackageReference Include="Vetuviem.Core" Version="0.11.14" />
<PackageReference Include="Vetuviem.WPF.SourceGenerator" Version="0.11.14">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Whipstaff.Core\Whipstaff.Core.csproj" />
<ProjectReference Include="..\Whipstaff.ReactiveUI\Whipstaff.ReactiveUI.csproj" />
<ProjectReference Include="..\Whipstaff.Runtime\Whipstaff.Runtime.csproj" />
<ProjectReference Include="..\Whipstaff.Windows\Whipstaff.Windows.csproj" />
</ItemGroup>
<PropertyGroup>
<Vetuviem_Make_Classes_Public>true</Vetuviem_Make_Classes_Public>
<Vetuviem_Root_Namespace>Whipstaff</Vetuviem_Root_Namespace>
</PropertyGroup>
</Project>