Skip to content

Commit 50a40f9

Browse files
authored
Merge pull request prometheus-net#38 from lakario/master
Added .NET 4.5 Support with Reactive 3.x - .NET 4.0 targeting Rx 2.2.5
2 parents 1c8e683 + d0cd42c commit 50a40f9

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+471
-114
lines changed

.travis.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ script:
88
- ls -la
99
- ls -la testrunner
1010
- find . -name "prometheus-net.tests.dll"
11-
- mono ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe ./prometheus-net.tests/bin/Release/prometheus-net.tests.dll
11+
- mono ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe ./prometheus-net.NET40.tests/bin/Release/prometheus-net.tests.dll
12+
- mono ./testrunner/NUnit.Console.3.0.1/tools/nunit3-console.exe ./prometheus-net.NET45.tests/bin/Release/prometheus-net.tests.dll

GlobalAssemblyInfo.cs

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
4+
[assembly: AssemblyProduct("prometheus-net")]
5+
[assembly: AssemblyCopyright("Copyright © 2015 andrasm")]
6+
7+
[assembly: AssemblyVersion("1.3.4.0")]
8+
[assembly: AssemblyFileVersion("1.3.4.0")]
9+
10+
[assembly: InternalsVisibleTo("prometheus-net.tests")]

deploy_nuget.bat

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1+
set version=%1
12
::todo: use FAKE
23
::C:\Windows\Microsoft.NET\Framework\v4.0.30319\msbuild prometheus-net.sln /p:Configuration=Release
34
"C:\Program Files (x86)\MSBuild\14.0\Bin\msbuild" prometheus-net.sln /p:Configuration=Release
4-
nuget pack prometheus-net/prometheus-net.csproj -Prop Configuration=Release
5+
nuget pack prometheus-net.nuspec -properties version="%version%"
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3-
<package id="NUnit" version="3.0.1" targetFramework="net45" />
3+
<package id="NUnit" version="3.0.1" targetFramework="net40" />
44
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
5+
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
6+
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />
57
<package id="Should" version="1.1.20" targetFramework="net45" />
68
</packages>

prometheus-net.tests/prometheus-net.tests.csproj prometheus-net.NET40.tests/prometheus-net.NET40.tests.csproj

+17-18
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,14 @@
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{276D072F-BC78-4B4F-988C-CF2B82F65603}</ProjectGuid>
7+
<ProjectGuid>{E5A9406E-1D18-42ED-BA5F-F8CB336FA13A}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Prometheus.Tests</RootNamespace>
1111
<AssemblyName>prometheus-net.tests</AssemblyName>
12-
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
12+
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
1313
<FileAlignment>512</FileAlignment>
14+
<TargetFrameworkProfile />
1415
</PropertyGroup>
1516
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
1617
<DebugSymbols>true</DebugSymbols>
@@ -30,8 +31,8 @@
3031
<WarningLevel>4</WarningLevel>
3132
</PropertyGroup>
3233
<ItemGroup>
33-
<Reference Include="nunit.framework, Version=3.0.5813.39031, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
34-
<HintPath>..\packages\NUnit.3.0.1\lib\net45\nunit.framework.dll</HintPath>
34+
<Reference Include="nunit.framework, Version=3.0.5813.39032, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
35+
<HintPath>..\packages\NUnit.3.0.1\lib\net40\nunit.framework.dll</HintPath>
3536
<Private>True</Private>
3637
</Reference>
3738
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
@@ -43,35 +44,33 @@
4344
</Reference>
4445
<Reference Include="System" />
4546
<Reference Include="System.Core" />
47+
<Reference Include="System.Reactive.Core, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
48+
<HintPath>..\packages\Rx-Core.2.2.5\lib\net40\System.Reactive.Core.dll</HintPath>
49+
<Private>True</Private>
50+
</Reference>
51+
<Reference Include="System.Reactive.Interfaces, Version=2.2.5.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35, processorArchitecture=MSIL">
52+
<HintPath>..\packages\Rx-Interfaces.2.2.5\lib\net40\System.Reactive.Interfaces.dll</HintPath>
53+
<Private>True</Private>
54+
</Reference>
55+
<Reference Include="System.Windows" />
4656
<Reference Include="System.Xml.Linq" />
4757
<Reference Include="System.Data.DataSetExtensions" />
4858
<Reference Include="Microsoft.CSharp" />
4959
<Reference Include="System.Data" />
5060
<Reference Include="System.Xml" />
61+
<Reference Include="WindowsBase" />
5162
</ItemGroup>
5263
<ItemGroup>
53-
<Compile Include="AsciiFormatterTests.cs" />
54-
<Compile Include="MetricsTests.cs" />
5564
<Compile Include="Properties\AssemblyInfo.cs" />
56-
<Compile Include="QuantileStreamTests.cs" />
57-
<Compile Include="RandomExtensions.cs" />
58-
<Compile Include="SummaryBenchmarks.cs" />
59-
<Compile Include="SummaryTests.cs" />
60-
<Compile Include="ThreadSafeDoubleTests.cs" />
61-
<Compile Include="ThreadSafeLongTests.cs" />
6265
</ItemGroup>
6366
<ItemGroup>
6467
<None Include="packages.config" />
6568
</ItemGroup>
66-
<ItemGroup>
67-
<ProjectReference Include="..\prometheus-net\prometheus-net.csproj">
68-
<Project>{EE3B50BE-577B-4664-A347-CC737B7D5612}</Project>
69-
<Name>prometheus-net</Name>
70-
</ProjectReference>
71-
</ItemGroup>
7269
<ItemGroup>
7370
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
7471
</ItemGroup>
72+
<Import Project="..\prometheus-net.shared\prometheus-net.shared.projitems" Label="Shared" />
73+
<Import Project="..\prometheus-net.sharedtests\prometheus-net.sharedtests.projitems" Label="Shared" />
7574
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
7675
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
7776
Other similar extension points exist, see Microsoft.Common.targets.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
using System.Reflection;
2+
using System.Runtime.CompilerServices;
3+
using System.Runtime.InteropServices;
4+
5+
// General Information about an assembly is controlled through the following
6+
// set of attributes. Change these attribute values to modify the information
7+
// associated with an assembly.
8+
[assembly: AssemblyTitle("prometheus-net")]

prometheus-net/packages.config prometheus-net.NET40/packages.config

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
<?xml version="1.0" encoding="utf-8"?>
2-
<packages>
1+
<packages>
32
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" />
43
<package id="Rx-Core" version="2.2.5" targetFramework="net40" />
54
<package id="Rx-Interfaces" version="2.2.5" targetFramework="net40" />

prometheus-net/prometheus-net.csproj prometheus-net.NET40/prometheus-net.NET40.csproj

+11-40
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
2-
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
2+
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
33
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
44
<PropertyGroup>
55
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
66
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7-
<ProjectGuid>{EE3B50BE-577B-4664-A347-CC737B7D5612}</ProjectGuid>
7+
<ProjectGuid>{4D74C8AE-B9DC-47B1-BCE2-C70044401A08}</ProjectGuid>
88
<OutputType>Library</OutputType>
99
<AppDesignerFolder>Properties</AppDesignerFolder>
1010
<RootNamespace>Prometheus</RootNamespace>
@@ -17,20 +17,20 @@
1717
<DebugSymbols>true</DebugSymbols>
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
20-
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
20+
<OutputPath>..\build_artifacts\NET40\Debug\</OutputPath>
21+
<DefineConstants>TRACE;DEBUG</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
24-
<Prefer32Bit>false</Prefer32Bit>
24+
<DocumentationFile>..\build_artifacts\NET40\Debug\prometheus-net.xml</DocumentationFile>
2525
</PropertyGroup>
2626
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
2727
<DebugType>pdbonly</DebugType>
2828
<Optimize>true</Optimize>
29-
<OutputPath>bin\Release\</OutputPath>
29+
<OutputPath>..\build_artifacts\NET40\Release\</OutputPath>
3030
<DefineConstants>TRACE</DefineConstants>
3131
<ErrorReport>prompt</ErrorReport>
3232
<WarningLevel>4</WarningLevel>
33-
<Prefer32Bit>false</Prefer32Bit>
33+
<DocumentationFile>..\build_artifacts\NET40\Release\prometheus-net.xml</DocumentationFile>
3434
</PropertyGroup>
3535
<ItemGroup>
3636
<Reference Include="protobuf-net">
@@ -53,44 +53,15 @@
5353
<Reference Include="System.Xml" />
5454
</ItemGroup>
5555
<ItemGroup>
56-
<Compile Include="Advanced\Child.cs" />
57-
<Compile Include="Advanced\DotNetStatsCollector.cs" />
58-
<Compile Include="Advanced\IOnDemandCollector.cs" />
59-
<Compile Include="Advanced\PerfCounterCollector.cs" />
60-
<Compile Include="Advanced\ThreadSafeLong.cs" />
61-
<Compile Include="Advanced\ThreadSafeDouble.cs" />
62-
<Compile Include="Counter.cs" />
63-
<Compile Include="Advanced\DataContracts.cs" />
64-
<Compile Include="Gauge.cs" />
65-
<Compile Include="Histogram.cs" />
66-
<Compile Include="Advanced\ICollectorRegistry.cs" />
67-
<Compile Include="IMetricServer.cs" />
68-
<Compile Include="Internal\AsciiFormatter.cs" />
69-
<Compile Include="Advanced\ICollector.cs" />
70-
<Compile Include="Internal\LabelValues.cs" />
71-
<Compile Include="Advanced\Collector.cs" />
72-
<Compile Include="Internal\ProtoFormatter.cs" />
73-
<Compile Include="Advanced\MetricFactory.cs" />
74-
<Compile Include="MetricHandler.cs" />
75-
<Compile Include="MetricPusher.cs" />
76-
<Compile Include="Metrics.cs" />
77-
<Compile Include="MetricServer.cs" />
78-
<Compile Include="Advanced\DefaultCollectorRegistry.cs" />
56+
<Compile Include="..\GlobalAssemblyInfo.cs">
57+
<Link>Properties\GlobalAssemblyInfo.cs</Link>
58+
</Compile>
7959
<Compile Include="Properties\AssemblyInfo.cs" />
80-
<Compile Include="SummaryImpl\QuantileComparer.cs" />
81-
<Compile Include="SummaryImpl\QuantileEpsilonPair.cs" />
82-
<Compile Include="SummaryImpl\QuantileStream.cs" />
83-
<Compile Include="SummaryImpl\Sample.cs" />
84-
<Compile Include="SummaryImpl\SampleBuffer.cs" />
85-
<Compile Include="SummaryImpl\SampleStream.cs" />
86-
<Compile Include="ScrapeHandler.cs" />
87-
<Compile Include="Summary.cs" />
8860
</ItemGroup>
8961
<ItemGroup>
90-
<None Include="app.config" />
9162
<None Include="packages.config" />
9263
</ItemGroup>
93-
<ItemGroup />
64+
<Import Project="..\prometheus-net.shared\prometheus-net.shared.projitems" Label="Shared" />
9465
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
9566
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
9667
Other similar extension points exist, see Microsoft.Common.targets.

prometheus-net/Properties/AssemblyInfo.cs prometheus-net.NET45.tests/Properties/AssemblyInfo.cs

+6-7
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@
55
// General Information about an assembly is controlled through the following
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
8-
[assembly: AssemblyTitle("prometheus-net")]
8+
[assembly: AssemblyTitle("prometheus-net.tests")]
99
[assembly: AssemblyDescription("")]
1010
[assembly: AssemblyConfiguration("")]
1111
[assembly: AssemblyCompany("")]
12-
[assembly: AssemblyProduct("prometheus-net")]
13-
[assembly: AssemblyCopyright("Copyright © 2015 andrasm")]
12+
[assembly: AssemblyProduct("prometheus-net.tests")]
13+
[assembly: AssemblyCopyright("Copyright © 2015")]
1414
[assembly: AssemblyTrademark("")]
1515
[assembly: AssemblyCulture("")]
1616

@@ -20,7 +20,7 @@
2020
[assembly: ComVisible(false)]
2121

2222
// The following GUID is for the ID of the typelib if this project is exposed to COM
23-
[assembly: Guid("0b77ff27-b2c3-49fc-b8b9-547759284c6c")]
23+
[assembly: Guid("371acef8-02f3-4a06-9553-6fd7c8c1c403")]
2424

2525
// Version information for an assembly consists of the following four values:
2626
//
@@ -32,6 +32,5 @@
3232
// You can specify all the values or you can default the Build and Revision Numbers
3333
// by using the '*' as shown below:
3434
// [assembly: AssemblyVersion("1.0.*")]
35-
[assembly: AssemblyVersion("1.2.4.0")]
36-
[assembly: AssemblyFileVersion("1.2.4.0")]
37-
[assembly: InternalsVisibleTo("prometheus-net.tests")]
35+
[assembly: AssemblyVersion("1.0.0.0")]
36+
[assembly: AssemblyFileVersion("1.0.0.0")]
+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="NUnit" version="3.0.1" targetFramework="net45" />
4+
<package id="protobuf-net" version="2.0.0.668" targetFramework="net45" />
5+
<package id="Should" version="1.1.20" targetFramework="net45" />
6+
<package id="System.Reactive" version="3.1.1" targetFramework="net45" />
7+
<package id="System.Reactive.Core" version="3.1.1" targetFramework="net45" />
8+
<package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net45" />
9+
<package id="System.Reactive.Linq" version="3.1.1" targetFramework="net45" />
10+
<package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net45" />
11+
<package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net45" />
12+
</packages>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3+
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
4+
<PropertyGroup>
5+
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
6+
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
7+
<ProjectGuid>{D866F87B-7088-432C-AE36-10324815A25E}</ProjectGuid>
8+
<OutputType>Library</OutputType>
9+
<AppDesignerFolder>Properties</AppDesignerFolder>
10+
<RootNamespace>Prometheus.Tests</RootNamespace>
11+
<AssemblyName>prometheus-net.tests</AssemblyName>
12+
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
13+
<FileAlignment>512</FileAlignment>
14+
</PropertyGroup>
15+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
16+
<DebugSymbols>true</DebugSymbols>
17+
<DebugType>full</DebugType>
18+
<Optimize>false</Optimize>
19+
<OutputPath>bin\Debug\</OutputPath>
20+
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<ErrorReport>prompt</ErrorReport>
22+
<WarningLevel>4</WarningLevel>
23+
</PropertyGroup>
24+
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
25+
<DebugType>pdbonly</DebugType>
26+
<Optimize>true</Optimize>
27+
<OutputPath>bin\Release\</OutputPath>
28+
<DefineConstants>TRACE</DefineConstants>
29+
<ErrorReport>prompt</ErrorReport>
30+
<WarningLevel>4</WarningLevel>
31+
</PropertyGroup>
32+
<ItemGroup>
33+
<Reference Include="nunit.framework, Version=3.0.5813.39031, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
34+
<HintPath>..\packages\NUnit.3.0.1\lib\net45\nunit.framework.dll</HintPath>
35+
<Private>True</Private>
36+
</Reference>
37+
<Reference Include="protobuf-net, Version=2.0.0.668, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
38+
<SpecificVersion>False</SpecificVersion>
39+
<HintPath>..\packages\protobuf-net.2.0.0.668\lib\net40\protobuf-net.dll</HintPath>
40+
</Reference>
41+
<Reference Include="Should">
42+
<HintPath>..\packages\Should.1.1.20\lib\Should.dll</HintPath>
43+
</Reference>
44+
<Reference Include="System" />
45+
<Reference Include="System.Core" />
46+
<Reference Include="System.Reactive.Core, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
47+
<HintPath>..\packages\System.Reactive.Core.3.1.1\lib\net45\System.Reactive.Core.dll</HintPath>
48+
<Private>True</Private>
49+
</Reference>
50+
<Reference Include="System.Reactive.Interfaces, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
51+
<HintPath>..\packages\System.Reactive.Interfaces.3.1.1\lib\net45\System.Reactive.Interfaces.dll</HintPath>
52+
<Private>True</Private>
53+
</Reference>
54+
<Reference Include="System.Reactive.Linq, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
55+
<HintPath>..\packages\System.Reactive.Linq.3.1.1\lib\net45\System.Reactive.Linq.dll</HintPath>
56+
<Private>True</Private>
57+
</Reference>
58+
<Reference Include="System.Reactive.PlatformServices, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
59+
<HintPath>..\packages\System.Reactive.PlatformServices.3.1.1\lib\net45\System.Reactive.PlatformServices.dll</HintPath>
60+
<Private>True</Private>
61+
</Reference>
62+
<Reference Include="System.Reactive.Windows.Threading, Version=3.0.1000.0, Culture=neutral, PublicKeyToken=94bc3704cddfc263, processorArchitecture=MSIL">
63+
<HintPath>..\packages\System.Reactive.Windows.Threading.3.1.1\lib\net45\System.Reactive.Windows.Threading.dll</HintPath>
64+
<Private>True</Private>
65+
</Reference>
66+
<Reference Include="System.Windows" />
67+
<Reference Include="System.Xml.Linq" />
68+
<Reference Include="System.Data.DataSetExtensions" />
69+
<Reference Include="Microsoft.CSharp" />
70+
<Reference Include="System.Data" />
71+
<Reference Include="System.Xml" />
72+
<Reference Include="WindowsBase" />
73+
</ItemGroup>
74+
<ItemGroup>
75+
<Compile Include="Properties\AssemblyInfo.cs" />
76+
</ItemGroup>
77+
<ItemGroup>
78+
<None Include="packages.config">
79+
<SubType>Designer</SubType>
80+
</None>
81+
</ItemGroup>
82+
<ItemGroup>
83+
<Service Include="{82A7F48D-3B50-4B1E-B82E-3ADA8210C358}" />
84+
</ItemGroup>
85+
<Import Project="..\prometheus-net.shared\prometheus-net.shared.projitems" Label="Shared" />
86+
<Import Project="..\prometheus-net.sharedtests\prometheus-net.sharedtests.projitems" Label="Shared" />
87+
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
88+
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
89+
Other similar extension points exist, see Microsoft.Common.targets.
90+
<Target Name="BeforeBuild">
91+
</Target>
92+
<Target Name="AfterBuild">
93+
</Target>
94+
-->
95+
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
using System.Reflection;
2+
3+
[assembly: AssemblyTitle("prometheus-net")]

prometheus-net.NET45/packages.config

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="protobuf-net" version="2.0.0.668" targetFramework="net40" />
4+
<package id="System.Reactive" version="3.1.1" targetFramework="net452" />
5+
<package id="System.Reactive.Core" version="3.1.1" targetFramework="net452" />
6+
<package id="System.Reactive.Interfaces" version="3.1.1" targetFramework="net452" />
7+
<package id="System.Reactive.Linq" version="3.1.1" targetFramework="net452" />
8+
<package id="System.Reactive.PlatformServices" version="3.1.1" targetFramework="net452" />
9+
<package id="System.Reactive.Windows.Threading" version="3.1.1" targetFramework="net452" />
10+
</packages>

0 commit comments

Comments
 (0)