|
|
@@ -0,0 +1,54 @@
|
|
|
+<Project Sdk="Microsoft.NET.Sdk" ToolsVersion="15.0">
|
|
|
+ <PropertyGroup>
|
|
|
+ <TargetFrameworks>netstandard1.3;net45;net46;uap10.0</TargetFrameworks>
|
|
|
+ <Product>System.Reactive ($(TargetFramework))</Product>
|
|
|
+ <CopyLocalLockFileAssemblies>false</CopyLocalLockFileAssemblies>
|
|
|
+ <DefaultLanguage>en-US</DefaultLanguage>
|
|
|
+ <MinClientVersion>2.12</MinClientVersion>
|
|
|
+ <GenerateDocumentationFile Condition=" '$(Configuration)' == 'Release' ">true</GenerateDocumentationFile>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(TargetFramework)' == 'netstandard1.3'">
|
|
|
+ <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_EDI;HAS_WINRT;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;HAS_APTCA;USE_TIMER_SELF_ROOT;HAS_TPL46;NO_REMOTING;NO_SERIALIZABLE;CRIPPLED_REFLECTION;PLIB</DefineConstants>
|
|
|
+ <AssemblyVersion>4.0.3000.0</AssemblyVersion>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(TargetFramework)' == 'net45'">
|
|
|
+ <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_EDI;HAS_WINRT;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;HAS_APTCA;USE_TIMER_SELF_ROOT;HAS_DISPATCHER_PRIORITY;HAS_WINFORMS;DESKTOPCLR;DESKTOPCLR45</DefineConstants>
|
|
|
+ <AssemblyVersion>4.0.1000.0</AssemblyVersion>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(TargetFramework)' == 'net46'">
|
|
|
+ <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_EDI;HAS_WINRT;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;HAS_APTCA;USE_TIMER_SELF_ROOT;HAS_TPL46;HAS_DISPATCHER_PRIORITY;HAS_WINFORMS;DESKTOPCLR;DESKTOPCLR46</DefineConstants>
|
|
|
+ <AssemblyVersion>4.0.3000.0</AssemblyVersion>
|
|
|
+ </PropertyGroup>
|
|
|
+ <PropertyGroup Condition="'$(TargetFramework)' == 'uap10.0'">
|
|
|
+ <NugetTargetMoniker>UAP,Version=v10.0</NugetTargetMoniker>
|
|
|
+ <TargetPlatformIdentifier>UAP</TargetPlatformIdentifier>
|
|
|
+ <TargetPlatformVersion>10.0.14393.0</TargetPlatformVersion>
|
|
|
+ <TargetPlatformMinVersion>10.0.10240.0</TargetPlatformMinVersion>
|
|
|
+ <TargetFrameworkIdentifier>.NETCore</TargetFrameworkIdentifier>
|
|
|
+ <TargetFrameworkVersion>v5.0</TargetFrameworkVersion>
|
|
|
+ <LanguageTargets>$(MSBuildExtensionsPath)\Microsoft\WindowsXaml\v$(VisualStudioVersion)\Microsoft.Windows.UI.Xaml.CSharp.targets</LanguageTargets>
|
|
|
+ <DefineConstants>$(DefineConstants);NO_EVENTARGS_CONSTRAINT;HAS_EDI;HAS_WINRT;HAS_PROGRESS;PREFER_ASYNC;HAS_AWAIT;HAS_APTCA;USE_TIMER_SELF_ROOT;HAS_TPL46;NO_REMOTING;NO_SERIALIZABLE;CRIPPLED_REFLECTION;NO_THREAD;WINDOWS</DefineConstants>
|
|
|
+ <AssemblyVersion>4.0.4000.0</AssemblyVersion>
|
|
|
+ </PropertyGroup>
|
|
|
+ <ItemGroup>
|
|
|
+ <Compile Include="**\*.cs" />
|
|
|
+ <EmbeddedResource Include="**\*.resx" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' or '$(TargetFramework)' == 'uap10.0' ">
|
|
|
+ <PackageReference Include="NETStandard.Library" Version="1.6.1" />
|
|
|
+ <PackageReference Include="System.ComponentModel" Version="4.3.0" />
|
|
|
+ <PackageReference Include="System.Diagnostics.Contracts" Version="4.3.0" />
|
|
|
+ <PackageReference Include="System.Dynamic.Runtime" Version="4.3.0" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
|
|
|
+ <PackageReference Include="System.Threading.Thread" Version="4.3.0" />
|
|
|
+ <PackageReference Include="System.Threading.ThreadPool" Version="4.3.0" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'uap10.0' ">
|
|
|
+ <PackageReference Include="Microsoft.NETCore.UniversalWindowsPlatform " Version="5.2.2" />
|
|
|
+ </ItemGroup>
|
|
|
+ <ItemGroup Condition=" '$(TargetFramework)' == 'net45' or '$(TargetFramework)' == 'net46'">
|
|
|
+ <Reference Include="System" />
|
|
|
+ <Reference Include="Microsoft.CSharp" />
|
|
|
+ </ItemGroup>
|
|
|
+</Project>
|