Skip to content

Commit d738d3b

Browse files
committed
build: Update dependencies except FluentAssertions
There's a type error in FluentAssertions I don't want to debug.
1 parent 5974471 commit d738d3b

13 files changed

Lines changed: 46 additions & 43 deletions

File tree

Buttplug.Client.Connectors.WebsocketConnector.Test/Buttplug.Client.Connectors.WebsocketConnector.Test.csproj

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props')" />
3+
<Import Project="..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" />
44
<Import Project="..\packages\NUnit.3.12.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" />
55
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
66
<PropertyGroup>
@@ -38,14 +38,14 @@
3838
<Reference Include="FluentAssertions, Version=5.9.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
3939
<HintPath>..\packages\FluentAssertions.5.9.0\lib\net47\FluentAssertions.dll</HintPath>
4040
</Reference>
41-
<Reference Include="Namotion.Reflection, Version=1.0.7.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
42-
<HintPath>..\packages\Namotion.Reflection.1.0.7\lib\net45\Namotion.Reflection.dll</HintPath>
41+
<Reference Include="Namotion.Reflection, Version=1.0.11.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
42+
<HintPath>..\packages\Namotion.Reflection.1.0.11\lib\net45\Namotion.Reflection.dll</HintPath>
4343
</Reference>
4444
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4545
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4646
</Reference>
47-
<Reference Include="NJsonSchema, Version=10.0.28.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
48-
<HintPath>..\packages\NJsonSchema.10.0.28\lib\net45\NJsonSchema.dll</HintPath>
47+
<Reference Include="NJsonSchema, Version=10.1.15.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
48+
<HintPath>..\packages\NJsonSchema.10.1.15\lib\net45\NJsonSchema.dll</HintPath>
4949
</Reference>
5050
<Reference Include="nunit.framework, Version=3.12.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
5151
<HintPath>..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll</HintPath>
@@ -103,6 +103,6 @@
103103
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
104104
</PropertyGroup>
105105
<Error Condition="!Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.12.0\build\NUnit.props'))" />
106-
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props'))" />
106+
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props'))" />
107107
</Target>
108108
</Project>
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="FluentAssertions" version="5.9.0" targetFramework="net47" />
4-
<package id="Namotion.Reflection" version="1.0.7" targetFramework="net47" />
4+
<package id="Namotion.Reflection" version="1.0.11" targetFramework="net47" />
55
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net47" />
6-
<package id="NJsonSchema" version="10.0.28" targetFramework="net47" />
6+
<package id="NJsonSchema" version="10.1.15" targetFramework="net47" />
77
<package id="NUnit" version="3.12.0" targetFramework="net47" />
8-
<package id="NUnit3TestAdapter" version="3.15.1" targetFramework="net47" />
8+
<package id="NUnit3TestAdapter" version="3.16.1" targetFramework="net47" developmentDependency="true" />
99
<package id="System.Runtime" version="4.3.1" targetFramework="net47" />
1010
</packages>

Buttplug.Client.Connectors.WebsocketConnector/Buttplug.Client.Connectors.WebsocketConnector.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,11 @@
1919

2020
<ItemGroup>
2121
<PackageReference Include="deniszykov.WebSocketListener" Version="4.2.4" />
22-
<PackageReference Include="GitInfo" Version="2.0.21">
22+
<PackageReference Include="GitInfo" Version="2.0.26">
2323
<PrivateAssets>all</PrivateAssets>
2424
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2525
</PackageReference>
26-
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" />
26+
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.11.1" />
2727
</ItemGroup>
2828

2929
<ItemGroup>

Buttplug.Server.Connectors.WebsocketServer.Test/Buttplug.Server.Connectors.WebsocketServer.Test.csproj

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
3-
<Import Project="..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props')" />
3+
<Import Project="..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props" Condition="Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" />
44
<Import Project="..\packages\NUnit.3.12.0\build\NUnit.props" Condition="Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" />
55
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
66
<PropertyGroup>
@@ -38,17 +38,17 @@
3838
<Reference Include="FluentAssertions, Version=5.9.0.0, Culture=neutral, PublicKeyToken=33f2691a05b67b6a, processorArchitecture=MSIL">
3939
<HintPath>..\packages\FluentAssertions.5.9.0\lib\net47\FluentAssertions.dll</HintPath>
4040
</Reference>
41-
<Reference Include="JetBrains.Annotations, Version=2019.1.3.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
42-
<HintPath>..\packages\JetBrains.Annotations.2019.1.3\lib\net20\JetBrains.Annotations.dll</HintPath>
41+
<Reference Include="JetBrains.Annotations, Version=2020.1.0.0, Culture=neutral, PublicKeyToken=1010a0d8d6380325, processorArchitecture=MSIL">
42+
<HintPath>..\packages\JetBrains.Annotations.2020.1.0\lib\net20\JetBrains.Annotations.dll</HintPath>
4343
</Reference>
44-
<Reference Include="Namotion.Reflection, Version=1.0.7.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
45-
<HintPath>..\packages\Namotion.Reflection.1.0.7\lib\net45\Namotion.Reflection.dll</HintPath>
44+
<Reference Include="Namotion.Reflection, Version=1.0.11.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
45+
<HintPath>..\packages\Namotion.Reflection.1.0.11\lib\net45\Namotion.Reflection.dll</HintPath>
4646
</Reference>
4747
<Reference Include="Newtonsoft.Json, Version=12.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
4848
<HintPath>..\packages\Newtonsoft.Json.12.0.3\lib\net45\Newtonsoft.Json.dll</HintPath>
4949
</Reference>
50-
<Reference Include="NJsonSchema, Version=10.0.28.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
51-
<HintPath>..\packages\NJsonSchema.10.0.28\lib\net45\NJsonSchema.dll</HintPath>
50+
<Reference Include="NJsonSchema, Version=10.1.15.0, Culture=neutral, PublicKeyToken=c2f9c3bdfae56102, processorArchitecture=MSIL">
51+
<HintPath>..\packages\NJsonSchema.10.1.15\lib\net45\NJsonSchema.dll</HintPath>
5252
</Reference>
5353
<Reference Include="nunit.framework, Version=3.12.0.0, Culture=neutral, PublicKeyToken=2638cd05610744eb, processorArchitecture=MSIL">
5454
<HintPath>..\packages\NUnit.3.12.0\lib\net45\nunit.framework.dll</HintPath>
@@ -101,6 +101,6 @@
101101
<ErrorText>This project references NuGet package(s) that are missing on this computer. Use NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
102102
</PropertyGroup>
103103
<Error Condition="!Exists('..\packages\NUnit.3.12.0\build\NUnit.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit.3.12.0\build\NUnit.props'))" />
104-
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.15.1\build\net35\NUnit3TestAdapter.props'))" />
104+
<Error Condition="!Exists('..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props')" Text="$([System.String]::Format('$(ErrorText)', '..\packages\NUnit3TestAdapter.3.16.1\build\net35\NUnit3TestAdapter.props'))" />
105105
</Target>
106106
</Project>
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
33
<package id="FluentAssertions" version="5.9.0" targetFramework="net47" />
4-
<package id="JetBrains.Annotations" version="2019.1.3" targetFramework="net47" />
5-
<package id="Namotion.Reflection" version="1.0.7" targetFramework="net47" />
4+
<package id="JetBrains.Annotations" version="2020.1.0" targetFramework="net47" />
5+
<package id="Namotion.Reflection" version="1.0.11" targetFramework="net47" />
66
<package id="Newtonsoft.Json" version="12.0.3" targetFramework="net47" />
7-
<package id="NJsonSchema" version="10.0.28" targetFramework="net47" />
7+
<package id="NJsonSchema" version="10.1.15" targetFramework="net47" />
88
<package id="NUnit" version="3.12.0" targetFramework="net47" />
9-
<package id="NUnit3TestAdapter" version="3.15.1" targetFramework="net47" />
9+
<package id="NUnit3TestAdapter" version="3.16.1" targetFramework="net47" developmentDependency="true" />
1010
</packages>

Buttplug.Server.Connectors.WebsocketServer/Buttplug.Server.Connectors.WebsocketServer.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@
1818

1919
<ItemGroup>
2020
<PackageReference Include="deniszykov.WebSocketListener" Version="4.2.4" />
21-
<PackageReference Include="GitInfo" Version="2.0.21">
21+
<PackageReference Include="GitInfo" Version="2.0.26">
2222
<PrivateAssets>all</PrivateAssets>
2323
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2424
</PackageReference>
25-
<PackageReference Include="IoTSharp.X509Extensions" Version="1.3.3" />
26-
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
27-
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.10.0" />
25+
<PackageReference Include="IoTSharp.X509Extensions" Version="1.4.9" />
26+
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" />
27+
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="4.11.1" />
2828
</ItemGroup>
2929

3030
<ItemGroup>

Buttplug.Server.Managers.HidSharpManager/Buttplug.Server.Managers.HidSharpManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</PropertyGroup>
1818

1919
<ItemGroup>
20-
<PackageReference Include="GitInfo" Version="2.0.21">
20+
<PackageReference Include="GitInfo" Version="2.0.26">
2121
<PrivateAssets>all</PrivateAssets>
2222
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
2323
</PackageReference>

Buttplug.Server.Managers.UWPBluetoothManager/Buttplug.Server.Managers.UWPBluetoothManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@
1111
<Description>UWP Bluetooth (Windows 10 15063 Creators Update or Later) device support for Buttplug Servers. (.Net Framework 4.7+ only)</Description>
1212
</PropertyGroup>
1313
<ItemGroup>
14-
<PackageReference Include="GitInfo" Version="2.0.21">
14+
<PackageReference Include="GitInfo" Version="2.0.26">
1515
<PrivateAssets>all</PrivateAssets>
1616
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1717
</PackageReference>
18-
<PackageReference Include="JetBrains.Annotations" Version="2019.1.3" />
18+
<PackageReference Include="JetBrains.Annotations" Version="2020.1.0" />
1919
</ItemGroup>
2020

2121
<ItemGroup>

Buttplug.Server.Managers.WinUSBManager/Buttplug.Server.Managers.WinUSBManager.csproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@
1212
<Description>WinUSB device support (Rez Trancevibrator) for Buttplug Servers. (.Net Framework 4.7+ only)</Description>
1313
</PropertyGroup>
1414
<ItemGroup>
15-
<PackageReference Include="GitInfo" Version="2.0.21">
15+
<PackageReference Include="GitInfo" Version="2.0.26">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1818
</PackageReference>
19-
<PackageReference Include="WinUSBNet" Version="1.0.3" />
19+
<PackageReference Include="WinUSBNet" Version="2.0.0" />
2020
</ItemGroup>
2121

2222
<ItemGroup>

Buttplug.Server.Managers.XInputGamepadManager/Buttplug.Server.Managers.XInputGamepadManager.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
</PropertyGroup>
1313

1414
<ItemGroup>
15-
<PackageReference Include="GitInfo" Version="2.0.21">
15+
<PackageReference Include="GitInfo" Version="2.0.26">
1616
<PrivateAssets>all</PrivateAssets>
1717
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
1818
</PackageReference>

0 commit comments

Comments
 (0)