We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92120a1 commit f7abd0cCopy full SHA for f7abd0c
tests/dotnetCampus.Ipc.Tests/CompilerServices/GeneratedProxies/IpcObjectTests.cs
@@ -73,7 +73,8 @@ public async Task IpcPropertyTests4()
73
Assert.AreEqual(true, result2);
74
}
75
76
- [TestMethod("IPC 代理生成:没有原生序列化的属性(以指针属性为例)")]
+#if !NET8_0_OR_GREATER
77
+ [TestMethod("IPC 代理生成:没有原生序列化的属性(以指针属性为例,仅支持 Newtonsoft.Json)")]
78
public async Task IpcPropertyTests5()
79
{
80
// 准备。
@@ -85,6 +86,7 @@ public async Task IpcPropertyTests5()
85
86
// 植物。
87
Assert.AreEqual(new IntPtr(1), result);
88
89
+#endif
90
91
[TestMethod("IPC 代理生成:要等待完成的 void 方法")]
92
public async Task IpcMethodsTests1()
0 commit comments