-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
22 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
addons/GDTask/CompilerServices/AsyncMethodBuilderAttribute.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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; | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?xml version="1.0" ?> | ||
<testsuites failures="0" name="TestXML" tests="1" time="3.519"> | ||
<testsuite name="GDTaskTests" failures="0" tests="1" time="0"> | ||
<testcase name="TODO Make Tests" time="0"></testcase> | ||
</testsuite> | ||
|
||
</testsuites> |