-
Notifications
You must be signed in to change notification settings - Fork 68
Port 2nd set of reference packages from pre-arcade to main #223
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
Changes from all commits
Commits
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
42 changes: 42 additions & 0 deletions
42
...ckages/src/microsoft.bcl.asyncinterfaces/5.0.0/Microsoft.Bcl.AsyncInterfaces.5.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,42 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" /> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.0;netstandard2.1;net461</TargetFrameworks> | ||
| <NuspecFile>$(ArtifactsBinDir)microsoft.bcl.asyncinterfaces/5.0.0/microsoft.bcl.asyncinterfaces.nuspec</NuspecFile> | ||
| <StrongNameKeyId>Open</StrongNameKeyId> | ||
| <DisableImplicitFrameworkReferences>false</DisableImplicitFrameworkReferences> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.bcl.asyncinterfaces/5.0.0/ref/</OutputPath> | ||
| <IntermediateOutputPath>$(ArtifactsObjDir)microsoft.bcl.asyncinterfaces/5.0.0</IntermediateOutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.bcl.asyncinterfaces/5.0.0/lib/</OutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.1' "> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.bcl.asyncinterfaces/5.0.0/lib/</OutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.bcl.asyncinterfaces/5.0.0/lib/</OutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <Compile Include="**/ref/$(TargetFramework)/*.cs" /> | ||
| <Compile Include="**/lib/$(TargetFramework)/*.cs" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
| <PackageReference Include="System.Threading.Tasks.Extensions" Version="4.5.4" /> | ||
| <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.0-alpha-5" /> | ||
| </ItemGroup> | ||
|
|
||
| </Project> | ||
120 changes: 120 additions & 0 deletions
120
...kages/src/microsoft.bcl.asyncinterfaces/5.0.0/lib/net461/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,120 @@ | ||
| // 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. | ||
| // ------------------------------------------------------------------------------ | ||
|
|
||
| using System; | ||
| using System.Diagnostics; | ||
| using System.Reflection; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Security; | ||
|
|
||
| [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] | ||
| [assembly: AllowPartiallyTrustedCallers] | ||
| [assembly: ReferenceAssembly] | ||
| [assembly: AssemblyTitle("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDescription("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDefaultAlias("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyCompany("Microsoft Corporation")] | ||
| [assembly: AssemblyProduct("Microsoft® .NET Framework")] | ||
| [assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] | ||
| [assembly: AssemblyFileVersion("5.0.20.51904")] | ||
| [assembly: AssemblyInformationalVersion("5.0.20.51904 built by: SOURCEBUILD")] | ||
| [assembly: CLSCompliant(true)] | ||
| [assembly: AssemblyMetadata("", "")] | ||
| [assembly: AssemblyVersion("5.0.0.0")] | ||
|
|
||
|
|
||
|
|
||
|
|
||
| namespace System | ||
| { | ||
| public partial interface IAsyncDisposable | ||
| { | ||
| System.Threading.Tasks.ValueTask DisposeAsync(); | ||
| } | ||
| } | ||
| namespace System.Collections.Generic | ||
| { | ||
| public partial interface IAsyncEnumerable<out T> | ||
| { | ||
| System.Collections.Generic.IAsyncEnumerator<T> GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
| } | ||
| public partial interface IAsyncEnumerator<out T> : System.IAsyncDisposable | ||
| { | ||
| T Current { get; } | ||
| System.Threading.Tasks.ValueTask<bool> MoveNextAsync(); | ||
| } | ||
| } | ||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| public partial struct AsyncIteratorMethodBuilder | ||
| { | ||
| private object _dummy; | ||
| public void AwaitOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| public void Complete() { } | ||
| public static System.Runtime.CompilerServices.AsyncIteratorMethodBuilder Create() { throw null; } | ||
| public void MoveNext<TStateMachine>(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| } | ||
| [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] | ||
| public sealed partial class AsyncIteratorStateMachineAttribute : System.Runtime.CompilerServices.StateMachineAttribute | ||
| { | ||
| public AsyncIteratorStateMachineAttribute(System.Type stateMachineType) : base (default(System.Type)) { } | ||
| } | ||
| public readonly partial struct ConfiguredAsyncDisposable | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
| } | ||
| public readonly partial struct ConfiguredCancelableAsyncEnumerable<T> | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait(bool continueOnCapturedContext) { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T>.Enumerator GetAsyncEnumerator() { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> WithCancellation(System.Threading.CancellationToken cancellationToken) { throw null; } | ||
| public readonly partial struct Enumerator | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public T Current { get { throw null; } } | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable<bool> MoveNextAsync() { throw null; } | ||
| } | ||
| } | ||
| [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] | ||
| public sealed partial class EnumeratorCancellationAttribute : System.Attribute | ||
| { | ||
| public EnumeratorCancellationAttribute() { } | ||
| } | ||
| } | ||
| namespace System.Threading.Tasks | ||
| { | ||
| public static partial class TaskAsyncEnumerableExtensions | ||
| { | ||
| public static System.Runtime.CompilerServices.ConfiguredAsyncDisposable ConfigureAwait(this System.IAsyncDisposable source, bool continueOnCapturedContext) { throw null; } | ||
| public static System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait<T>(this System.Collections.Generic.IAsyncEnumerable<T> source, bool continueOnCapturedContext) { throw null; } | ||
| public static System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> WithCancellation<T>(this System.Collections.Generic.IAsyncEnumerable<T> source, System.Threading.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 System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(short token) { throw null; } | ||
| public void OnCompleted(System.Action<object> continuation, object state, short token, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags flags) { } | ||
| public void Reset() { } | ||
| public void SetException(System.Exception error) { } | ||
| public void SetResult(TResult result) { } | ||
| } | ||
| } |
120 changes: 120 additions & 0 deletions
120
...c/microsoft.bcl.asyncinterfaces/5.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,120 @@ | ||
| // 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. | ||
| // ------------------------------------------------------------------------------ | ||
|
|
||
| using System; | ||
| using System.Diagnostics; | ||
| using System.Reflection; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Security; | ||
|
|
||
| [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] | ||
| [assembly: AllowPartiallyTrustedCallers] | ||
| [assembly: ReferenceAssembly] | ||
| [assembly: AssemblyTitle("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDescription("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDefaultAlias("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyCompany("Microsoft Corporation")] | ||
| [assembly: AssemblyProduct("Microsoft® .NET Framework")] | ||
| [assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] | ||
| [assembly: AssemblyFileVersion("5.0.20.51904")] | ||
| [assembly: AssemblyInformationalVersion("5.0.20.51904 built by: SOURCEBUILD")] | ||
| [assembly: CLSCompliant(true)] | ||
| [assembly: AssemblyMetadata("", "")] | ||
| [assembly: AssemblyVersion("5.0.0.0")] | ||
|
|
||
|
|
||
|
|
||
|
|
||
| namespace System | ||
| { | ||
| public partial interface IAsyncDisposable | ||
| { | ||
| System.Threading.Tasks.ValueTask DisposeAsync(); | ||
| } | ||
| } | ||
| namespace System.Collections.Generic | ||
| { | ||
| public partial interface IAsyncEnumerable<out T> | ||
| { | ||
| System.Collections.Generic.IAsyncEnumerator<T> GetAsyncEnumerator(System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
| } | ||
| public partial interface IAsyncEnumerator<out T> : System.IAsyncDisposable | ||
| { | ||
| T Current { get; } | ||
| System.Threading.Tasks.ValueTask<bool> MoveNextAsync(); | ||
| } | ||
| } | ||
| namespace System.Runtime.CompilerServices | ||
| { | ||
| public partial struct AsyncIteratorMethodBuilder | ||
| { | ||
| private object _dummy; | ||
| public void AwaitOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.INotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| public void AwaitUnsafeOnCompleted<TAwaiter, TStateMachine>(ref TAwaiter awaiter, ref TStateMachine stateMachine) where TAwaiter : System.Runtime.CompilerServices.ICriticalNotifyCompletion where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| public void Complete() { } | ||
| public static System.Runtime.CompilerServices.AsyncIteratorMethodBuilder Create() { throw null; } | ||
| public void MoveNext<TStateMachine>(ref TStateMachine stateMachine) where TStateMachine : System.Runtime.CompilerServices.IAsyncStateMachine { } | ||
| } | ||
| [System.AttributeUsageAttribute(System.AttributeTargets.Method, Inherited=false, AllowMultiple=false)] | ||
| public sealed partial class AsyncIteratorStateMachineAttribute : System.Runtime.CompilerServices.StateMachineAttribute | ||
| { | ||
| public AsyncIteratorStateMachineAttribute(System.Type stateMachineType) : base (default(System.Type)) { } | ||
| } | ||
| public readonly partial struct ConfiguredAsyncDisposable | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
| } | ||
| public readonly partial struct ConfiguredCancelableAsyncEnumerable<T> | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait(bool continueOnCapturedContext) { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T>.Enumerator GetAsyncEnumerator() { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> WithCancellation(System.Threading.CancellationToken cancellationToken) { throw null; } | ||
| public readonly partial struct Enumerator | ||
| { | ||
| private readonly object _dummy; | ||
| private readonly int _dummyPrimitive; | ||
| public T Current { get { throw null; } } | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable DisposeAsync() { throw null; } | ||
| public System.Runtime.CompilerServices.ConfiguredValueTaskAwaitable<bool> MoveNextAsync() { throw null; } | ||
| } | ||
| } | ||
| [System.AttributeUsageAttribute(System.AttributeTargets.Parameter, Inherited=false)] | ||
| public sealed partial class EnumeratorCancellationAttribute : System.Attribute | ||
| { | ||
| public EnumeratorCancellationAttribute() { } | ||
| } | ||
| } | ||
| namespace System.Threading.Tasks | ||
| { | ||
| public static partial class TaskAsyncEnumerableExtensions | ||
| { | ||
| public static System.Runtime.CompilerServices.ConfiguredAsyncDisposable ConfigureAwait(this System.IAsyncDisposable source, bool continueOnCapturedContext) { throw null; } | ||
| public static System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> ConfigureAwait<T>(this System.Collections.Generic.IAsyncEnumerable<T> source, bool continueOnCapturedContext) { throw null; } | ||
| public static System.Runtime.CompilerServices.ConfiguredCancelableAsyncEnumerable<T> WithCancellation<T>(this System.Collections.Generic.IAsyncEnumerable<T> source, System.Threading.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 System.Threading.Tasks.Sources.ValueTaskSourceStatus GetStatus(short token) { throw null; } | ||
| public void OnCompleted(System.Action<object> continuation, object state, short token, System.Threading.Tasks.Sources.ValueTaskSourceOnCompletedFlags flags) { } | ||
| public void Reset() { } | ||
| public void SetException(System.Exception error) { } | ||
| public void SetResult(TResult result) { } | ||
| } | ||
| } |
34 changes: 34 additions & 0 deletions
34
...c/microsoft.bcl.asyncinterfaces/5.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,34 @@ | ||
| // 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. | ||
| // ------------------------------------------------------------------------------ | ||
|
|
||
| using System; | ||
| using System.Collections.Generic; | ||
| using System.Diagnostics; | ||
| using System.Reflection; | ||
| using System.Runtime.CompilerServices; | ||
| using System.Security; | ||
| using System.Threading.Tasks; | ||
| using System.Threading.Tasks.Sources; | ||
|
|
||
| [assembly: Debuggable(DebuggableAttribute.DebuggingModes.IgnoreSymbolStoreSequencePoints)] | ||
| [assembly: AllowPartiallyTrustedCallers] | ||
| [assembly: ReferenceAssembly] | ||
| [assembly: AssemblyTitle("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDescription("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyDefaultAlias("Microsoft.Bcl.AsyncInterfaces")] | ||
| [assembly: AssemblyCompany("Microsoft Corporation")] | ||
| [assembly: AssemblyProduct("Microsoft® .NET Framework")] | ||
| [assembly: AssemblyCopyright("© Microsoft Corporation. All rights reserved.")] | ||
| [assembly: AssemblyFileVersion("5.0.20.51904")] | ||
| [assembly: AssemblyInformationalVersion("5.0.20.51904 built by: SOURCEBUILD")] | ||
| [assembly: CLSCompliant(true)] | ||
| [assembly: AssemblyMetadata("", "")] | ||
| [assembly: AssemblyVersion("5.0.0.0")] | ||
|
|
||
|
|
||
|
|
||
|
|
40 changes: 40 additions & 0 deletions
40
...encePackages/src/microsoft.bcl.asyncinterfaces/5.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,40 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <package xmlns="http://schemas.microsoft.com/packaging/2013/05/nuspec.xsd"> | ||
| <metadata minClientVersion="2.12"> | ||
| <id>Microsoft.Bcl.AsyncInterfaces</id> | ||
| <version>5.0.0</version> | ||
| <title>Microsoft.Bcl.AsyncInterfaces</title> | ||
| <authors>Microsoft</authors> | ||
| <owners>microsoft,dotnetframework</owners> | ||
| <requireLicenseAcceptance>false</requireLicenseAcceptance> | ||
| <license type="expression">MIT</license> | ||
| <licenseUrl>https://licenses.nuget.org/MIT</licenseUrl> | ||
| <projectUrl>https://github.com/dotnet/runtime</projectUrl> | ||
| <iconUrl>http://go.microsoft.com/fwlink/?LinkID=288859</iconUrl> | ||
| <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 | ||
|
|
||
| When using NuGet 3.x this package requires at least version 3.4.</description> | ||
| <releaseNotes>https://go.microsoft.com/fwlink/?LinkID=799421</releaseNotes> | ||
| <copyright>© Microsoft Corporation. All rights reserved.</copyright> | ||
| <serviceable>true</serviceable> | ||
| <repository type="git" url="git://github.com/dotnet/runtime" commit="cf258a14b70ad9069470a108f13765e0e5988f51" /> | ||
| <dependencies> | ||
| <group targetFramework=".NETFramework4.6.1"> | ||
| <dependency id="System.Threading.Tasks.Extensions" version="4.5.4" /> | ||
| </group> | ||
| <group targetFramework=".NETCoreApp2.1" /> | ||
| <group targetFramework=".NETStandard2.0"> | ||
| <dependency id="System.Threading.Tasks.Extensions" version="4.5.4" /> | ||
| </group> | ||
| <group targetFramework=".NETStandard2.1" /> | ||
| </dependencies> | ||
| <frameworkAssemblies> | ||
| <frameworkAssembly assemblyName="mscorlib" targetFramework=".NETFramework4.6.1" /> | ||
| </frameworkAssemblies> | ||
| </metadata> | ||
| </package> |
37 changes: 37 additions & 0 deletions
37
...ion.abstractions/5.0.0/Microsoft.Extensions.DependencyInjection.Abstractions.5.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,37 @@ | ||
| <Project Sdk="Microsoft.NET.Sdk"> | ||
| <Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.props))/dir.props" /> | ||
|
|
||
| <PropertyGroup> | ||
| <TargetFrameworks>netstandard2.0;net461</TargetFrameworks> | ||
| <NuspecFile>$(ArtifactsBinDir)microsoft.extensions.dependencyinjection.abstractions/5.0.0/microsoft.extensions.dependencyinjection.abstractions.nuspec</NuspecFile> | ||
| <StrongNameKeyId>MicrosoftAspNetCore</StrongNameKeyId> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.extensions.dependencyinjection.abstractions/5.0.0/ref/</OutputPath> | ||
| <IntermediateOutputPath>$(ArtifactsObjDir)microsoft.extensions.dependencyinjection.abstractions/5.0.0</IntermediateOutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.extensions.dependencyinjection.abstractions/5.0.0/lib/</OutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <PropertyGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
| <OutputPath>$(ArtifactsBinDir)microsoft.extensions.dependencyinjection.abstractions/5.0.0/lib/</OutputPath> | ||
| </PropertyGroup> | ||
|
|
||
| <ItemGroup> | ||
| <Compile Include="**/ref/$(TargetFramework)/*.cs" /> | ||
| <Compile Include="**/lib/$(TargetFramework)/*.cs" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'netstandard2.0' "> | ||
| <PackageReference Include="NETStandard.Library" Version="$(NETStandardImplicitPackageVersion)" /> | ||
| </ItemGroup> | ||
|
|
||
| <ItemGroup Condition=" '$(TargetFramework)' == 'net461' "> | ||
| <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies.net461" Version="1.0.0-alpha-5" /> | ||
| <Reference Include="System.Core" /> | ||
| </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.