Skip to content

Commit 8882a85

Browse files
authored
Update System.Linq.AsyncEnumerable refs to .NET 10 GA (#2275)
1 parent a35a174 commit 8882a85

File tree

10 files changed

+11
-16
lines changed

10 files changed

+11
-16
lines changed

Ix.NET/Source/ApiCompare/ApiCompare.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,7 @@
66
</PropertyGroup>
77

88
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
9-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107"
10-
Aliases="SystemLinqAsyncEnumerable" />
9+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
1110
</ItemGroup>
1211

1312
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/Playground/Playground.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,7 @@
2020
So although we get this references transitively (or automatically on .NET 10.0+) we need to put them explicitly here to set aliases.
2121
-->
2222
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
23-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107"
24-
Aliases="SystemLinqAsyncEnumerable" />
23+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
2524
</ItemGroup>
2625

2726
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/System.Interactive.Async.Providers.Tests/System.Interactive.Async.Providers.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
So although we get this references transitively (or automatically on .NET 10.0+) we need to put them explicitly here to set aliases.
2323
-->
2424
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
25-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
25+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
2626
</ItemGroup>
2727

2828
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/System.Interactive.Async.Tests/System.Interactive.Async.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
So although we get this references transitively (or automatically on .NET 10.0+) we need to put them explicitly here to set aliases.
2929
-->
3030
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
31-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
31+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
3232
</ItemGroup>
3333

3434
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/System.Interactive.Async/System.Interactive.Async.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
</ItemGroup>
3535

3636
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
37-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" />
37+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" />
3838
</ItemGroup>
3939

4040
<ItemGroup>

Ix.NET/Source/System.Linq.Async.Queryable.Tests/System.Linq.Async.Queryable.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
So although we get this references transitively (or automatically on .NET 10.0+) we need to put them explicitly here to set aliases.
2323
-->
2424
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
25-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
25+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
2626
</ItemGroup>
2727

2828
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/System.Linq.Async.Queryable/System.Linq.Async.Queryable.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@
2121

2222
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
2323
<!-- Although we get this transitively from System.Linq.Async, we need the alias to ensure we compile against the legacy System.Linq.Async -->
24-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107"
25-
Aliases="SystemLinqAsyncEnumerable" />
24+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
2625
</ItemGroup>
2726
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">
2827

Ix.NET/Source/System.Linq.Async.Tests/System.Linq.Async.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@
6464
So although we get this references transitively (or automatically on .NET 10.0+) we need to put them explicitly here to set aliases.
6565
-->
6666
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
67-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
67+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
6868
</ItemGroup>
6969

7070
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/System.Linq.Async/System.Linq.Async.csproj

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,7 @@
2424
<!--
2525
Incorporate the reference assemblies.
2626
-->
27-
<None Include="../refs/System.Linq.Async/bin/$(Configuration)/$(TargetFramework)/**"
28-
PackagePath="ref/$(TargetFramework)"
29-
Pack="true" />
27+
<None Include="../refs/System.Linq.Async/bin/$(Configuration)/$(TargetFramework)/**" PackagePath="ref/$(TargetFramework)" Pack="true" />
3028
</ItemGroup>
3129

3230
<PropertyGroup>
@@ -96,7 +94,7 @@
9694

9795

9896
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
99-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
97+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
10098
</ItemGroup>
10199

102100
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

Ix.NET/Source/Tests.System.Interactive.ApiApprovals/Tests.System.Interactive.ApiApprovals.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</PropertyGroup>
1111

1212
<ItemGroup Condition="'$(TargetFramework)' != 'net10.0'">
13-
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0-rc.1.25451.107" Aliases="SystemLinqAsyncEnumerable" />
13+
<PackageReference Include="System.Linq.AsyncEnumerable" Version="10.0.0" Aliases="SystemLinqAsyncEnumerable" />
1414
</ItemGroup>
1515

1616
<Target Name="_SetAliasOnBuiltInSystemLinqAsyncEnumerable" BeforeTargets="ResolveAssemblyReferences">

0 commit comments

Comments
 (0)