Skip to content

Commit 76663b3

Browse files
committed
Remove system.threading dependency
1 parent 8d742f7 commit 76663b3

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

GDTask.csproj

-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@
33
<TargetFramework>net472</TargetFramework>
44
</PropertyGroup>
55
<ItemGroup>
6-
<PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" />
7-
</ItemGroup>
8-
<ItemGroup>
9-
<Folder Include="addons\GDTask\CompilerServices\" />
106
<Folder Include="tests\manual\" />
117
</ItemGroup>
128
</Project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
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+
}

results.xml

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
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>

0 commit comments

Comments
 (0)