Update for 7.4

This commit is contained in:
Asriel Camora
2025-12-21 23:55:42 -08:00
parent 67430ed38e
commit a041fc6ebf
17 changed files with 83 additions and 83 deletions
+1 -1
View File
@@ -26,7 +26,7 @@ public sealed class Ipc
if (prop.GetMethod is not { } getMethod)
throw new InvalidOperationException("Property must have a getter");
if (getMethod.GetCustomAttribute<CompilerGeneratedAttribute>() is null)
if (!getMethod.IsDefined<CompilerGeneratedAttribute>())
throw new InvalidOperationException("Property must have an auto getter");
var type = prop.PropertyType;