Skip to content

Commit

Permalink
Updated to latest sipsorcery media abstractions package. Bumped nuget…
Browse files Browse the repository at this point in the history
… version to v4.0.76-pre.
  • Loading branch information
sipsorcery committed Sep 20, 2020
1 parent a9bddd9 commit 751d413
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 20 deletions.
3 changes: 1 addition & 2 deletions examples/WebRTCExamples/WebRTCDaemon/WebRTCDaemon.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,10 @@
<PackageReference Include="Serilog.Settings.Configuration" Version="3.1.0" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<PackageReference Include="Serilog.Sinks.File" Version="4.1.0" />
<!--<PackageReference Include="SIPSorcery" Version="4.0.75-pre" />-->
<PackageReference Include="SIPSorcery" Version="4.0.75-pre" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\..\..\SIPSorceryMedia.FFmpeg\src\SIPSorceryMedia.FFmpeg.csproj" />
<ProjectReference Include="..\..\..\src\SIPSorcery.csproj" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion examples/WebRTCExamples/WebRTCDaemon/WebRTCWorker.cs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ private async Task CheckForSourceSubscribers()
if(!_maxSource.HasEncodedVideoSubscribers())
{
_logger.LogInformation("Pausing mp4 file source.");
_maxSource.Pause();
await _maxSource.Pause();
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,14 @@

<PropertyGroup>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.8" />
<PackageReference Include="Serilog.Extensions.Logging" Version="3.0.1" />
<PackageReference Include="Serilog.Sinks.Console" Version="3.1.1" />
<!--<PackageReference Include="SIPSorcery" Version="4.0.75-pre" />-->
<PackageReference Include="SIPSorcery" Version="4.0.75-pre" />
<PackageReference Include="SIPSorcery.WebSocketSharp" Version="0.0.1" />
<!--<PackageReference Include="SIPSorceryMedia.FFmpeg" Version="0.0.1-pre" />-->
<PackageReference Include="SIPSorceryMedia.Windows" Version="0.0.18-pre" />
Expand All @@ -26,7 +23,6 @@

<ItemGroup>
<ProjectReference Include="..\..\..\..\SIPSorceryMedia.FFmpeg\src\SIPSorceryMedia.FFmpeg.csproj" />
<ProjectReference Include="..\..\..\src\SIPSorcery.csproj" />
</ItemGroup>

<ItemGroup>
Expand Down
18 changes: 7 additions & 11 deletions src/SIPSorcery.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -21,22 +21,17 @@
<ItemGroup>
<PackageReference Include="Portable.BouncyCastle" Version="1.8.6.7" />
<PackageReference Include="DnsClient" Version="1.4.0-beta-20200801.7" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<!--<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.8" />-->
<PackageReference Include="Newtonsoft.Json" Version="12.0.3" />
<PackageReference Include="Microsoft.Extensions.Logging" Version="3.1.8" />
<PackageReference Include="SIPSorcery.WebSocketSharp" Version="0.0.1" />
<PackageReference Include="SIPSorceryMedia.Abstractions" Version="0.0.10-pre" />
<PackageReference Include="SIPSorceryMedia.Abstractions" Version="0.0.11-pre" />
<PackageReference Include="System.Runtime.InteropServices.RuntimeInformation" Version="4.3.0" />
<PackageReference Include="System.ValueTuple" Version="4.5.0" />
<PackageReference Include="System.Net.WebSockets.Client" Version="4.3.2" />
<PackageReference Include="System.Drawing.Common" Version="4.7.0" />
<PackageReference Include="Microsoft.Extensions.FileProviders.Embedded" Version="3.1.8" />
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\..\SIPSorceryMedia.Abstractions\src\SIPSorceryMedia.Abstractions.csproj" />
</ItemGroup>

<PropertyGroup>
<IncludeSymbols>true</IncludeSymbols>
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
Expand Down Expand Up @@ -65,7 +60,8 @@
<RepositoryType>git</RepositoryType>
<RepositoryBranch>master</RepositoryBranch>
<PackageTags>SIP WebRTC VoIP RTP SDP STUN ICE SIPSorcery</PackageTags>
<PackageReleaseNotes>- v4.0.75-pre: Added fix for creating self signed X509 certificates on non-Windows platforms. Required for WebRTC DTLS negotiation.
<PackageReleaseNotes>- v4.0.76-pre: Updated to latest media abstractions package.
- v4.0.75-pre: Added fix for creating self signed X509 certificates on non-Windows platforms. Required for WebRTC DTLS negotiation.
- v4.0.74-pre: (Re)Added net461 target and removed netcoreapp3.1 target (the latter is compatible with netstandard2.0). Removed redundant monitoring classes.
- v4.0.71-pre: Added helper class for webrtc signaling over web sockets.
- v4.0.70-pre: Fixed reentrant bug to SRTP protect and unprotect methods.
Expand Down Expand Up @@ -107,9 +103,9 @@
- Version &gt; 4.0.0 - Major refactor of SIP transport layer to support IPAddress.Any and IPAddress.IPv6Any.
</PackageReleaseNotes>
<NeutralLanguage>en-GB</NeutralLanguage>
<Version>4.0.75-pre</Version>
<AssemblyVersion>4.0.75.0</AssemblyVersion>
<FileVersion>4.0.75.0</FileVersion>
<Version>4.0.76-pre</Version>
<AssemblyVersion>4.0.76.0</AssemblyVersion>
<FileVersion>4.0.76.0</FileVersion>
</PropertyGroup>

</Project>

0 comments on commit 751d413

Please sign in to comment.