Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/aspnet/MessagePack-CSharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Arnott <andrew.arnott@microsoft.com>2022-06-14 22:51:42 +0300
committerAndrew Arnott <andrew.arnott@microsoft.com>2022-06-14 22:54:34 +0300
commita0324060aaad24b9f7f10feee04d575a017e8061 (patch)
treef535d38983fab0418d1fab544d79647a98958307
parentde58043772f8737784e2d41038da2d685d18824d (diff)
Apply better workaround for https://github.com/dotnet/roslyn/issues/61478
-rw-r--r--src/MessagePack.UnityClient/Assets/Scripts/Tests/ShareTests/MessagePackWriterTests.cs3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/MessagePack.UnityClient/Assets/Scripts/Tests/ShareTests/MessagePackWriterTests.cs b/src/MessagePack.UnityClient/Assets/Scripts/Tests/ShareTests/MessagePackWriterTests.cs
index de2aa674..85d29365 100644
--- a/src/MessagePack.UnityClient/Assets/Scripts/Tests/ShareTests/MessagePackWriterTests.cs
+++ b/src/MessagePack.UnityClient/Assets/Scripts/Tests/ShareTests/MessagePackWriterTests.cs
@@ -10,6 +10,7 @@ using System.Threading;
using Nerdbank.Streams;
using Xunit;
using Xunit.Abstractions;
+using MessagePackWriterCref = MessagePack.MessagePackWriter;
namespace MessagePack.Tests
{
@@ -33,7 +34,7 @@ namespace MessagePack.Tests
#endif
/// <summary>
- /// Verifies that <c>MessagePackWriter.WriteRaw(ReadOnlySpan{byte})</c>
+ /// Verifies that <see cref="MessagePackWriterCref.WriteRaw(ReadOnlySpan{byte})"/>
/// accepts a span that came from stackalloc.
/// </summary>
[Fact]