-
Notifications
You must be signed in to change notification settings - Fork 68
Add SBRPs for arcade #604
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Add SBRPs for arcade #604
Changes from 1 commit
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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
14 changes: 14 additions & 0 deletions
14
...ckages/src/microsoft.bcl.asyncinterfaces/7.0.0/Microsoft.Bcl.AsyncInterfaces.7.0.0.csproj
This file contains hidden or 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,14 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks> | ||
| <AssemblyName>Microsoft.Bcl.AsyncInterfaces</AssemblyName> | ||
| <ProjectTemplateVersion>2</ProjectTemplateVersion> | ||
| <StrongNameKeyId>Open</StrongNameKeyId> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
| <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> |
151 changes: 151 additions & 0 deletions
151
...c/microsoft.bcl.asyncinterfaces/7.0.0/lib/netstandard2.0/Microsoft.Bcl.AsyncInterfaces.cs
This file contains hidden or 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,151 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the LICENSE file in the project root for more information. | ||
| // ------------------------------------------------------------------------------ | ||
| // Changes to this file must follow the http://aka.ms/api-review process. | ||
| // ------------------------------------------------------------------------------ | ||
| [assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)] | ||
| [assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)] | ||
| [assembly: System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] | ||
| [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.0", FrameworkDisplayName = ".NET Standard 2.0")] | ||
| [assembly: System.Reflection.AssemblyMetadata(".NETFrameworkAssembly", "")] | ||
| [assembly: System.Reflection.AssemblyMetadata("Serviceable", "True")] | ||
| [assembly: System.Reflection.AssemblyMetadata("PreferInbox", "True")] | ||
| [assembly: System.Reflection.AssemblyDefaultAlias("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: System.CLSCompliant(true)] | ||
| [assembly: System.Reflection.AssemblyMetadata("IsTrimmable", "True")] | ||
| [assembly: System.Runtime.InteropServices.DefaultDllImportSearchPaths(System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory | System.Runtime.InteropServices.DllImportSearchPath.System32)] | ||
| [assembly: System.Reflection.AssemblyCompany("Microsoft Corporation")] | ||
| [assembly: System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] | ||
| [assembly: System.Reflection.AssemblyDescription("Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0.\r\n\r\nCommonly Used Types:\r\nSystem.IAsyncDisposable\r\nSystem.Collections.Generic.IAsyncEnumerable\r\nSystem.Collections.Generic.IAsyncEnumerator")] | ||
| [assembly: System.Reflection.AssemblyFileVersion("7.0.22.51805")] | ||
| [assembly: System.Reflection.AssemblyInformationalVersion("7.0.0+d099f075e45d2aa6007a22b71b45a08758559f80")] | ||
| [assembly: System.Reflection.AssemblyProduct("Microsoft® .NET")] | ||
| [assembly: System.Reflection.AssemblyTitle("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/dotnet/runtime")] | ||
| [assembly: System.Reflection.AssemblyVersionAttribute("7.0.0.0")] | ||
| [assembly: System.Runtime.CompilerServices.ReferenceAssembly] | ||
| [assembly: System.Reflection.AssemblyFlagsAttribute((System.Reflection.AssemblyNameFlags)0x70)] | ||
| namespace System | ||
| { | ||
| public partial interface IAsyncDisposable | ||
| { | ||
| Threading.Tasks.ValueTask DisposeAsync(); | ||
| } | ||
| } | ||
|
|
||
| namespace System.Collections.Generic | ||
| { | ||
| public partial interface IAsyncEnumerable<out T> | ||
| { | ||
| IAsyncEnumerator<T> GetAsyncEnumerator(Threading.CancellationToken cancellationToken = default); | ||
| } | ||
|
|
||
| public partial interface IAsyncEnumerator<out T> : IAsyncDisposable | ||
| { | ||
| T Current { get; } | ||
|
|
||
| Threading.Tasks.ValueTask<bool> MoveNextAsync(); | ||
| } | ||
| } | ||
|
|
||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| public partial struct AsyncIteratorMethodBuilder | ||
| { | ||
| private object _dummy; | ||
| private int _dummyPrimitive; | ||
| public void AwaitOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) | ||
| where TAwaiter : INotifyCompletion where TStateMachine : IAsyncStateMachine { } | ||
|
|
||
| public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) | ||
| where TAwaiter : ICriticalNotifyCompletion where TStateMachine : IAsyncStateMachine { } | ||
|
|
||
| public void Complete() { } | ||
|
|
||
| public static AsyncIteratorMethodBuilder Create() { throw null; } | ||
|
|
||
| public void MoveNext<TStateMachine>(ref TStateMachine stateMachine) | ||
| where TStateMachine : IAsyncStateMachine { } | ||
| } | ||
|
|
||
| [AttributeUsage(AttributeTargets.Method, Inherited = false, AllowMultiple = false)] | ||
| public sealed partial class AsyncIteratorStateMachineAttribute : StateMachineAttribute | ||
| { | ||
| public AsyncIteratorStateMachineAttribute(Type stateMachineType) : base(default!) { } | ||
| } | ||
|
|
||
| public readonly partial struct ConfiguredAsyncDisposable | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public readonly ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
| } | ||
|
|
||
| public readonly partial struct ConfiguredCancelableAsyncEnumerable<T> | ||
| { | ||
| private readonly Collections.Generic.IAsyncEnumerable<T> _enumerable; | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public readonly ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait(bool continueOnCapturedContext) { throw null; } | ||
|
|
||
| public readonly ConfiguredCancelableAsyncEnumerable<T>.Enumerator GetAsyncEnumerator() { throw null; } | ||
|
|
||
| public readonly ConfiguredCancelableAsyncEnumerable<T> WithCancellation(Threading.CancellationToken cancellationToken) { throw null; } | ||
|
|
||
| public readonly partial struct Enumerator | ||
| { | ||
| private readonly Collections.Generic.IAsyncEnumerator<T> _enumerator; | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public T Current { get { throw null; } } | ||
|
|
||
| public readonly ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
|
|
||
| public readonly ConfiguredValueTaskAwaitable<bool> MoveNextAsync() { throw null; } | ||
| } | ||
| } | ||
|
|
||
| [AttributeUsage(AttributeTargets.Parameter, Inherited = false)] | ||
| public sealed partial class EnumeratorCancellationAttribute : Attribute | ||
| { | ||
| public EnumeratorCancellationAttribute() { } | ||
| } | ||
| } | ||
|
|
||
| namespace System.Threading.Tasks | ||
| { | ||
| public static partial class TaskAsyncEnumerableExtensions | ||
| { | ||
| public static Runtime.CompilerServices.ConfiguredAsyncDisposable ConfigureAwait(this IAsyncDisposable source, bool continueOnCapturedContext) { throw null; } | ||
|
|
||
| public static Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait<T>(this Collections.Generic.IAsyncEnumerable<T> source, bool continueOnCapturedContext) { throw null; } | ||
|
|
||
| public static Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> WithCancellation<T>(this Collections.Generic.IAsyncEnumerable<T> source, CancellationToken cancellationToken) { throw null; } | ||
| } | ||
| } | ||
|
|
||
| namespace System.Threading.Tasks.Sources | ||
| { | ||
| public partial struct ManualResetValueTaskSourceCore<TResult> | ||
| { | ||
| private TResult _result; | ||
| private object _dummy; | ||
| private int _dummyPrimitive; | ||
| public bool RunContinuationsAsynchronously { get { throw null; } set { } } | ||
|
|
||
| public short Version { get { throw null; } } | ||
|
|
||
| public TResult GetResult(short token) { throw null; } | ||
|
|
||
| public ValueTaskSourceStatus GetStatus(short token) { throw null; } | ||
|
|
||
| public void OnCompleted(Action<object?> continuation, object? state, short token, ValueTaskSourceOnCompletedFlags flags) { } | ||
|
|
||
| public void Reset() { } | ||
|
|
||
| public void SetException(Exception error) { } | ||
|
|
||
| public void SetResult(TResult result) { } | ||
| } | ||
| } |
38 changes: 38 additions & 0 deletions
38
...c/microsoft.bcl.asyncinterfaces/7.0.0/lib/netstandard2.1/Microsoft.Bcl.AsyncInterfaces.cs
This file contains hidden or 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,38 @@ | ||
| // Licensed to the .NET Foundation under one or more agreements. | ||
| // The .NET Foundation licenses this file to you under the MIT license. | ||
| // See the LICENSE file in the project root for more information. | ||
| // ------------------------------------------------------------------------------ | ||
| // Changes to this file must follow the http://aka.ms/api-review process. | ||
| // ------------------------------------------------------------------------------ | ||
| [assembly: System.Runtime.CompilerServices.CompilationRelaxations(8)] | ||
| [assembly: System.Runtime.CompilerServices.RuntimeCompatibility(WrapNonExceptionThrows = true)] | ||
| [assembly: System.Diagnostics.Debuggable(System.Diagnostics.DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] | ||
| [assembly: System.Runtime.Versioning.TargetFramework(".NETStandard,Version=v2.1", FrameworkDisplayName = ".NET Standard 2.1")] | ||
| [assembly: System.Reflection.AssemblyMetadata(".NETFrameworkAssembly", "")] | ||
| [assembly: System.Reflection.AssemblyMetadata("Serviceable", "True")] | ||
| [assembly: System.Reflection.AssemblyMetadata("PreferInbox", "True")] | ||
| [assembly: System.Reflection.AssemblyDefaultAlias("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: System.CLSCompliant(true)] | ||
| [assembly: System.Reflection.AssemblyMetadata("IsTrimmable", "True")] | ||
| [assembly: System.Runtime.InteropServices.DefaultDllImportSearchPaths(System.Runtime.InteropServices.DllImportSearchPath.AssemblyDirectory | System.Runtime.InteropServices.DllImportSearchPath.System32)] | ||
| [assembly: System.Reflection.AssemblyCompany("Microsoft Corporation")] | ||
| [assembly: System.Reflection.AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] | ||
| [assembly: System.Reflection.AssemblyDescription("Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0.\r\n\r\nCommonly Used Types:\r\nSystem.IAsyncDisposable\r\nSystem.Collections.Generic.IAsyncEnumerable\r\nSystem.Collections.Generic.IAsyncEnumerator")] | ||
| [assembly: System.Reflection.AssemblyFileVersion("7.0.22.51805")] | ||
| [assembly: System.Reflection.AssemblyInformationalVersion("7.0.0+d099f075e45d2aa6007a22b71b45a08758559f80")] | ||
| [assembly: System.Reflection.AssemblyProduct("Microsoft® .NET")] | ||
| [assembly: System.Reflection.AssemblyTitle("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: System.Reflection.AssemblyMetadata("RepositoryUrl", "https://github.com/dotnet/runtime")] | ||
| [assembly: System.Reflection.AssemblyVersionAttribute("7.0.0.0")] | ||
| [assembly: System.Runtime.CompilerServices.ReferenceAssembly] | ||
| [assembly: System.Reflection.AssemblyFlagsAttribute((System.Reflection.AssemblyNameFlags)0x70)] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerable<>))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Collections.Generic.IAsyncEnumerator<>))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.IAsyncDisposable))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorMethodBuilder))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.AsyncIteratorStateMachineAttribute))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredAsyncDisposable))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<>))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Runtime.CompilerServices.EnumeratorCancellationAttribute))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.Sources.ManualResetValueTaskSourceCore<>))] | ||
| [assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Threading.Tasks.TaskAsyncEnumerableExtensions))] |
27 changes: 27 additions & 0 deletions
27
...encePackages/src/microsoft.bcl.asyncinterfaces/7.0.0/microsoft.bcl.asyncinterfaces.nuspec
This file contains hidden or 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,27 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
| <metadata> | ||
| <id>Microsoft.Bcl.AsyncInterfaces</id> | ||
| <version>7.0.0</version> | ||
| <authors>Microsoft</authors> | ||
| <license type="expression">MIT</license> | ||
| <licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
| <projectUrl>https://dot.net/</projectUrl> | ||
| <description>Provides the IAsyncEnumerable<T> and IAsyncDisposable interfaces and helper types for .NET Standard 2.0. This package is not required starting with .NET Standard 2.1 and .NET Core 3.0. | ||
|
|
||
| Commonly Used Types: | ||
| System.IAsyncDisposable | ||
| System.Collections.Generic.IAsyncEnumerable | ||
| System.Collections.Generic.IAsyncEnumerator</description> | ||
| <releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes> | ||
| <copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
| <serviceable>true</serviceable> | ||
| <repository type="git" url="https://github.com/dotnet/runtime" commit="d099f075e45d2aa6007a22b71b45a08758559f80" /> | ||
| <dependencies> | ||
| <group targetFramework=".NETStandard2.0"> | ||
| <dependency id="System.Threading.Tasks.Extensions" version="4.5.4" exclude="Build,Analyzers" /> | ||
| </group> | ||
| <group targetFramework=".NETStandard2.1" /> | ||
| </dependencies> | ||
| </metadata> | ||
| </package> |
18 changes: 18 additions & 0 deletions
18
...rosoft.extensions.dependencymodel/6.0.0/Microsoft.Extensions.DependencyModel.6.0.0.csproj
This file contains hidden or 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,18 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.0</TargetFrameworks> | ||
| <AssemblyName>Microsoft.Extensions.DependencyModel</AssemblyName> | ||
| <ProjectTemplateVersion>2</ProjectTemplateVersion> | ||
| <StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup Condition="'$(TargetFramework)' == 'netstandard2.0'"> | ||
| <PackageReference Include="System.Runtime.CompilerServices.Unsafe" Version="6.0.0" /> | ||
| <PackageReference Include="System.Text.Encodings.Web" Version="6.0.0" /> | ||
| <PackageReference Include="System.Text.Json" Version="6.0.0" /> | ||
| <PackageReference Include="System.Buffers" Version="4.5.1" /> | ||
| <PackageReference Include="System.Memory" Version="4.5.4" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.