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
39 lines (35 loc) · 1.43 KB
/
ReactiveUI.Winforms.csproj
File metadata and controls
39 lines (35 loc) · 1.43 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
38
39
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.0;net461</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>
<LangVersion>latest</LangVersion>
<PackageTags>mvvm;reactiveui;rx;reactive extensions;observable;LINQ;events;frp;winforms;net;net461;</PackageTags>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\ReactiveUI\ReactiveUI.csproj" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="System.Reactive" Version="4.3.2" />
</ItemGroup>
<ItemGroup Condition=" $(TargetFramework.StartsWith('net4')) ">
<Reference Include="System.Windows.Forms" />
</ItemGroup>
<ItemGroup>
<Compile Update="RoutedViewHost.Designer.cs">
<SubType>UserControl</SubType>
<DependentUpon>RoutedViewHost.cs</DependentUpon>
</Compile>
<Compile Update="ViewModelViewHost.Designer.cs">
<SubType>UserControl</SubType>
<DependentUpon>ViewModelViewHost.cs</DependentUpon>
</Compile>
<Compile Update="ReactiveUserControl.Designer.cs">
<SubType>UserControl</SubType>
<DependentUpon>ReactiveUserControl.cs</DependentUpon>
</Compile>
</ItemGroup>
</Project>