Skip to content

Commit 91d2327

Browse files
committed
Copilot feedback
1 parent 2214b67 commit 91d2327

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/libraries/Common/src/System/Runtime/CompilerServices/RuntimeAsyncMethodGenerationAttribute.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
namespace System.Runtime.CompilerServices;
55

6-
[AttributeUsage(AttributeTargets.Method)]
6+
[AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)]
77
internal sealed class RuntimeAsyncMethodGenerationAttribute(bool runtimeAsync) : Attribute
88
{
99
public bool RuntimeAsync => runtimeAsync;

src/libraries/System.IO.Pipelines/src/System.IO.Pipelines.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ System.IO.Pipelines.PipeReader</PackageDescription>
5151
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' == '.NETCoreApp'">
5252
<Compile Include="System\IO\Pipelines\ThreadPoolScheduler.netcoreapp.cs" />
5353
<Compile Include="$(CommonPath)System\Runtime\CompilerServices\RuntimeAsyncMethodGenerationAttribute.cs"
54-
Link="Common\System\Runtime\CompilerServices\RuntimeAsyncMethodGenerationAttribute.cs" />
54+
Link="Common\System\Runtime\CompilerServices\RuntimeAsyncMethodGenerationAttribute.cs" />
5555
</ItemGroup>
5656

5757
<ItemGroup Condition="'$(TargetFrameworkIdentifier)' != '.NETCoreApp'">

0 commit comments

Comments
 (0)