summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorKirk Shoop <kirk.shoop@gmail.com>2013-12-10 09:36:43 -0800
committerKirk Shoop (MS Open Tech) <kirk.shoop@microsoft.com>2013-12-17 19:16:09 -0800
commitad5e1f1ac8c50bafe19dad0d8faa8e2d8b729cf9 (patch)
treecaca9d96703447683f7a62002f12704ed740c636 /projects
parentf1f22d1902fd300fca56504939fe78c0b387ff12 (diff)
downloadRxCpp-ad5e1f1ac8c50bafe19dad0d8faa8e2d8b729cf9.tar.gz
add nuget package description
Conflicts: .gitignore
Diffstat (limited to 'projects')
-rw-r--r--projects/nuget/rxcpp.autoconfig31
1 files changed, 31 insertions, 0 deletions
diff --git a/projects/nuget/rxcpp.autoconfig b/projects/nuget/rxcpp.autoconfig
new file mode 100644
index 0000000..640c1c9
--- /dev/null
+++ b/projects/nuget/rxcpp.autoconfig
@@ -0,0 +1,31 @@
+nuget {
+ nuspec {
+ id = rxcpp;
+ version : 2.2.1.0;
+ title: Reactive Extensions for C++;
+ authors: {Microsoft Open Technologies Inc.};
+ owners: {Microsoft Open Technologies Inc.};
+ licenseUrl: "http://rxcpp.codeplex.com/license";
+ projectUrl: "https://rxcpp.codeplex.com/";
+ iconUrl: "http://download-codeplex.sec.s-msft.com/Download?ProjectName=rx&DownloadId=604538&Build=20828";
+ requireLicenseAcceptance:false;
+ summary: "The Reactive Extensions (Rx) asynchronous programming library";
+ description: @"The Reactive Extensions (Rx) is a library for composing asynchronous and event-based programs using observable sequences and operators. Operators are the asynchronous form of standard library algorithms and they operate on Observables instead of iterators. Using Rx, developers represent asynchronous data streams with Observables, query asynchronous data streams using operators, and parameterize the concurrency in the asynchronous data streams using Schedulers.";
+ releaseNotes: "This release has many new operators and schedulers. Also some preliminary ssupprot for MVVM in WinRT.";
+ copyright: Copyright 2013;
+ tags: { RXCPP, RXC++, RX, native, MSOpenTech};
+ };
+
+ files {
+
+ #defines {
+ SDK_RX = ..\..\;
+ }
+ include: { "${SDK_RX}Rx\CPP\src\**\*", "${SDK_RX}Ix\CPP\src\**\*" };
+ docs: { ${SDK_RX}Readme.html };
+ }
+
+ targets {
+ Defines += HAS_RXCPP;
+ }
+}