-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Expand file tree
/
Copy pathReactiveUI.Samples.Winforms.csproj
More file actions
29 lines (25 loc) · 1.01 KB
/
ReactiveUI.Samples.Winforms.csproj
File metadata and controls
29 lines (25 loc) · 1.01 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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net10.0-windows10.0.19041.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UseWindowsForms>true</UseWindowsForms>
<IsPackable>false</IsPackable>
<DefaultPackageDescription>A sample WinForms login application using ReactiveUI.</DefaultPackageDescription>
<IsAotCompatible>false</IsAotCompatible>
<EnableTrimAnalyzer>false</EnableTrimAnalyzer>
<EnableSingleFileAnalyzer>false</EnableSingleFileAnalyzer>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\ReactiveUI.Winforms\ReactiveUI.Winforms.csproj" />
</ItemGroup>
<ItemGroup>
<Using Include="System.Reactive" />
<Using Include="System.Reactive.Disposables" />
<Using Include="System.Reactive.Disposables.Fluent" />
<Using Include="System.Reactive.Linq" />
<Using Include="ReactiveUI" />
<Using Include="ReactiveUI.Builder" />
</ItemGroup>
</Project>