Skip to content

Commit 54eacc1

Browse files
committed
Update to netstandard 2.1
1 parent ae24e23 commit 54eacc1

2 files changed

Lines changed: 73 additions & 16 deletions

File tree

obs-websocket-dotnet/obs-websocket-dotnet.csproj

Lines changed: 8 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,21 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>netstandard2.0</TargetFramework>
4+
<TargetFramework>netstandard2.1</TargetFramework>
55
<AssemblyName>obs-websocket-dotnet</AssemblyName>
66
<RootNamespace>OBSWebsocketDotNet</RootNamespace>
7-
<Copyright>Copyright © BarRaider 2022</Copyright>
7+
<Copyright>Copyright © BarRaider 2025</Copyright>
88
<LangVersion>8</LangVersion>
9-
<Version>5.0.0.3</Version>
9+
<Version>5.0.1</Version>
1010
<Authors>BarRaider</Authors>
1111
<PackageLicenseFile>LICENSE</PackageLicenseFile>
1212
<PackageProjectUrl>https://github.com/BarRaider/obs-websocket-dotnet</PackageProjectUrl>
1313
<RepositoryUrl>https://github.com/BarRaider/obs-websocket-dotnet</RepositoryUrl>
1414
<Description>Official obs-websocket .NET library. Written in C#. Supports .NET Standard</Description>
1515
<PackageTags>OBS obs-websocket websocket official obs-websocket-dotnet obs.websocket.net obs-websocket-net</PackageTags>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
17-
<PackageReleaseNotes>Ported to use new OBS Websocket v5.0
18-
NOTE: As OBS Websocket v5.0 is not backward compatible with 4.9.x, neither is the .Net version.
19-
20-
What's new in v5.0.0.3
21-
* Fixed issue with integer overflow for OutputStatus objects
22-
(Previous updates):
23-
* Each event now has a dedicated EventArgs class. This will break the previous event signature
24-
* Finished adding all v5 methods
25-
* Connect() function is now obsolete, use ConnectAsync() instead.
26-
* Additional bugfixes and stability fixes
17+
<PackageReleaseNotes>What's new in v5.0.1
18+
*
2719
</PackageReleaseNotes>
2820
</PropertyGroup>
2921

@@ -32,9 +24,9 @@ What's new in v5.0.0.3
3224
</PropertyGroup>
3325

3426
<ItemGroup>
35-
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="6.0.4" />
36-
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
37-
<PackageReference Include="Websocket.Client" Version="4.4.43" />
27+
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.4" />
28+
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
29+
<PackageReference Include="Websocket.Client" Version="5.1.2" />
3830
</ItemGroup>
3931

4032
<ItemGroup>

obs-websocket-dotnet/obs-websocket-dotnet.xml

Lines changed: 65 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)