diff --git a/GDTask.csproj b/GDTask.csproj
index d80122f..a618bdc 100644
--- a/GDTask.csproj
+++ b/GDTask.csproj
@@ -3,10 +3,6 @@
net472
-
-
-
-
\ No newline at end of file
diff --git a/addons/GDTask/CompilerServices/AsyncMethodBuilderAttribute.cs b/addons/GDTask/CompilerServices/AsyncMethodBuilderAttribute.cs
new file mode 100644
index 0000000..8d3906d
--- /dev/null
+++ b/addons/GDTask/CompilerServices/AsyncMethodBuilderAttribute.cs
@@ -0,0 +1,15 @@
+#pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
+#pragma warning disable CS0436
+
+namespace System.Runtime.CompilerServices
+{
+ internal sealed class AsyncMethodBuilderAttribute : Attribute
+ {
+ public Type BuilderType { get; }
+
+ public AsyncMethodBuilderAttribute(Type builderType)
+ {
+ BuilderType = builderType;
+ }
+ }
+}
diff --git a/results.xml b/results.xml
new file mode 100644
index 0000000..a1247a9
--- /dev/null
+++ b/results.xml
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file