Skip to content

Commit

Permalink
Merge pull request #108 from xcomponent/FixDependencePrivateSystem
Browse files Browse the repository at this point in the history
Fix dependence private System.Reactive.Linq
  • Loading branch information
Julien-Molina committed Jun 27, 2019
2 parents 0f3f1a5 + 5ec9175 commit 469016d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

build_reactiveapi:
docker:
- image: microsoft/dotnet:2.1-sdk
- image: microsoft/dotnet:2.2-sdk
steps:
- *restore_repo
- *generate_nuget_shasum
Expand All @@ -63,7 +63,7 @@ jobs:

build_integration_test:
docker:
- image: xcomponent/mono-dotnet-node-xvfb:1.0.0
- image: xcomponent/mono-dotnet-node-xvfb:1.2.0
steps:
- *restore_repo
- *generate_nuget_shasum
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
deploy_nuget:
docker:
- image: microsoft/dotnet:2.1-sdk
- image: microsoft/dotnet:2.2-sdk
steps:
- *restore_repo
- *generate_nuget_shasum
Expand Down
7 changes: 3 additions & 4 deletions ReactiveXComponent/ReactiveXComponent.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,7 @@

<ItemGroup>
<PackageReference Include="ILRepack.MSBuild.Task" Version="2.0.13" PrivateAssets="all" />
<PackageReference Include="SuperSocket.ClientEngine" Version="0.10.0" PrivateAssets="all" />
<PackageReference Include="System.Reactive.Core" Version="3.1.1" PrivateAssets="all" />
<PackageReference Include="System.Reactive.Interfaces" Version="3.1.1" PrivateAssets="all" />
<PackageReference Include="System.Reactive.Linq" Version="3.1.1" PrivateAssets="all" />
<PackageReference Include="System.Reactive.Linq" Version="4.1.2" PrivateAssets="all" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" PrivateAssets="all" />
<PackageReference Include="RabbitMQ.Client" Version="4.1.3" PrivateAssets="all" />
<PackageReference Include="WebSocket4Net" Version="0.15.2" PrivateAssets="all" />
Expand All @@ -41,6 +38,8 @@
<InputAssemblies Include="$(WorkingDirectory)\Newtonsoft.Json.dll" />
<InputAssemblies Include="$(WorkingDirectory)\RabbitMQ.Client.dll" />
<InputAssemblies Include="$(WorkingDirectory)\WebSocket4Net.dll" />
<InputAssemblies Include="$(WorkingDirectory)\System.Reactive.dll" />
<InputAssemblies Include="$(WorkingDirectory)\SuperSocket.ClientEngine.dll" />
</ItemGroup>

<ILRepack OutputType="$(OutputType)" MainAssembly="$(AssemblyName).dll" OutputAssembly="$(MSBuildThisFileDirectory)\..\packaging\$(AssemblyName).dll" InputAssemblies="@(InputAssemblies)" WilcardInputAssemblies="true" Internalize="true" WorkingDirectory="$(WorkingDirectory)" />
Expand Down
2 changes: 1 addition & 1 deletion ReactiveXComponentTest/ReactiveXComponentTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<PackageReference Include="NUnit" Version="3.11.0" />
<PackageReference Include="NUnit3TestAdapter" Version="3.12.0" />
<PackageReference Include="System.Configuration.ConfigurationManager" Version="4.5.0" />
<PackageReference Include="System.Reactive.Linq" Version="3.1.1" />
<PackageReference Include="System.Reactive.Linq" Version="4.1.2" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.1" />
<PackageReference Include="RabbitMQ.Client" Version="4.1.3" />
<PackageReference Include="WebSocket4Net" Version="0.15.2" />
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="System.Reactive.Linq" Version="3.1.1" />
<PackageReference Include="System.Reactive.Linq" Version="4.1.2" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 469016d

Please sign in to comment.