-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathSciChart.UI.Reactive.nuspec
More file actions
43 lines (43 loc) · 2.48 KB
/
SciChart.UI.Reactive.nuspec
File metadata and controls
43 lines (43 loc) · 2.48 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
40
41
42
43
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<version>$version$</version>
<authors>SciChart Ltd</authors>
<owners>SciChart Ltd</owners>
<id>SciChart.UI.Reactive</id>
<title>SciChart.UI.Reactive</title>
<projectUrl>https://github.com/ABTSoftware/SciChart.Wpf.UI</projectUrl>
<licenseUrl>https://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Reactive MVVM, allows for observable ViewModels which fire both PropertyChanged and IObservable. Used in conjuction with Rx.Main to allow you to observe off Viewmodel properties. Used in the SciChart WPF Examples Application, which demonstrates High Performance WPF Charts, available for download at http://www.scichart.com, this library provides bootstrapping with automatic dependency discovery, and some extensions to Reactive (RxMain) to allow for easier testing and integration of Reactive into an MVVM Application.</description>
<copyright>Copyright © SciChart Ltd 2013-2025</copyright>
<dependencies>
<group targetFramework=".NETFramework4.6.2">
<dependency id="SciChart.UI.Bootstrap" version="$version$"/>
<dependency id="Log4Net" version="3.0.3"/>
<dependency id="System.Reactive" version="4.4.1"/>
<dependency id="Unity" version="5.11.10"/>
</group>
<group targetFramework="netcoreapp3.1">
<dependency id="SciChart.UI.Bootstrap" version="$version$"/>
<dependency id="Log4Net" version="3.0.3"/>
<dependency id="System.Reactive" version="4.4.1"/>
<dependency id="Unity" version="5.11.10"/>
</group>
<group targetFramework="net6.0-windows7.0">
<dependency id="SciChart.UI.Bootstrap" version="$version$"/>
<dependency id="Log4Net" version="3.0.3"/>
<dependency id="System.Reactive" version="4.4.1"/>
<dependency id="Unity" version="5.11.10"/>
</group>
</dependencies>
</metadata>
<files>
<file src="Build\Release\net462\SciChart.UI.Reactive.dll" target="lib\net462"/>
<file src="Build\Release\net462\SciChart.UI.Reactive.xml" target="lib\net462"/>
<file src="Build\Release\netcoreapp3.1\SciChart.UI.Reactive.dll" target="lib\netcoreapp3.1"/>
<file src="Build\Release\netcoreapp3.1\SciChart.UI.Reactive.xml" target="lib\netcoreapp3.1"/>
<file src="Build\Release\net6.0-windows\SciChart.UI.Reactive.dll" target="lib\net6.0-windows7.0"/>
<file src="Build\Release\net6.0-windows\SciChart.UI.Reactive.xml" target="lib\net6.0-windows7.0"/>
</files>
</package>