Commit 76663b3 1 parent 8d742f7 commit 76663b3 Copy full SHA for 76663b3
File tree 3 files changed +22
-4
lines changed
addons/GDTask/CompilerServices
3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 3
3
<TargetFramework >net472</TargetFramework >
4
4
</PropertyGroup >
5
5
<ItemGroup >
6
- <PackageReference Include =" System.Threading.Tasks.Extensions" Version =" 4.5.4" />
7
- </ItemGroup >
8
- <ItemGroup >
9
- <Folder Include =" addons\GDTask\CompilerServices\" />
10
6
<Folder Include =" tests\manual\" />
11
7
</ItemGroup >
12
8
</Project >
Original file line number Diff line number Diff line change
1
+ #pragma warning disable CS1591 // Missing XML comment for publicly visible type or member
2
+ #pragma warning disable CS0436
3
+
4
+ namespace System . Runtime . CompilerServices
5
+ {
6
+ internal sealed class AsyncMethodBuilderAttribute : Attribute
7
+ {
8
+ public Type BuilderType { get ; }
9
+
10
+ public AsyncMethodBuilderAttribute ( Type builderType )
11
+ {
12
+ BuilderType = builderType ;
13
+ }
14
+ }
15
+ }
Original file line number Diff line number Diff line change
1
+ <?xml version =" 1.0" ?>
2
+ <testsuites failures =" 0" name =" TestXML" tests =" 1" time =" 3.519" >
3
+ <testsuite name =" GDTaskTests" failures =" 0" tests =" 1" time =" 0" >
4
+ <testcase name =" TODO Make Tests" time =" 0" ></testcase >
5
+ </testsuite >
6
+
7
+ </testsuites >
You can’t perform that action at this time.
0 commit comments