forked from reactiveui/ReactiveUI
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReactiveUI.Winforms.csproj
More file actions
37 lines (32 loc) · 1.52 KB
/
ReactiveUI.Winforms.csproj
File metadata and controls
37 lines (32 loc) · 1.52 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
35
36
37
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>net6.0-windows;net462;net472;net48;net6.0-windows10.0.19041.0</TargetFrameworks>
<AssemblyName>ReactiveUI.Winforms</AssemblyName>
<RootNamespace>ReactiveUI.Winforms</RootNamespace>
<PackageDescription>Contains the ReactiveUI platform specific extensions for Windows Forms</PackageDescription>
<PackageId>ReactiveUI.WinForms</PackageId>
<UseWindowsForms>true</UseWindowsForms>
<PackageTags>mvvm;reactiveui;rx;reactive extensions;observable;LINQ;events;frp;winforms;net;net472;</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ReactiveUI\ReactiveUI.csproj" />
</ItemGroup>
<ItemGroup>
<None Include="..\ReactiveUI.Uwp\Rx\**\*.cs" LinkBase="Rx" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework) == 'net6.0-windows' ">
<Compile Include="..\ReactiveUI.Uwp\Rx\Concurrency\ControlScheduler.cs" LinkBase="Rx" />
<Compile Include="..\ReactiveUI.Uwp\Rx\Internal\Constants.cs" LinkBase="Rx" />
<Compile Include="..\ReactiveUI.Uwp\Rx\Linq\**\*.cs" LinkBase="Rx" Exclude="..\ReactiveUI.Uwp\Rx\Linq\DispatcherObservable.cs" />
</ItemGroup>
<ItemGroup>
<Compile Update="RoutedViewHost.Designer.cs">
<SubType>UserControl</SubType>
<DependentUpon>RoutedViewHost.cs</DependentUpon>
</Compile>
<Compile Update="ReactiveUserControl.Designer.cs">
<SubType>UserControl</SubType>
<DependentUpon>ReactiveUserControl.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>