File tree Expand file tree Collapse file tree 3 files changed +22
-4
lines changed
src/Microsoft.VisualStudio.ProjectSystem.Managed Expand file tree Collapse file tree 3 files changed +22
-4
lines changed Original file line number Diff line number Diff line change 5
5
6
6
<PropertyGroup >
7
7
<ManagePackageVersionsCentrally >true</ManagePackageVersionsCentrally >
8
- <MicrosoftDotNetHotReloadPackageVersion >10.0.100-rc.2.25468.104 </MicrosoftDotNetHotReloadPackageVersion >
8
+ <MicrosoftDotNetHotReloadPackageVersion >10.0.100-rc.2.25502.106 </MicrosoftDotNetHotReloadPackageVersion >
9
9
</PropertyGroup >
10
10
11
11
<!--
34
34
<PackageVersion Include =" Microsoft.Extensions.Logging.Abstractions" Version =" 9.0.0" />
35
35
<PackageVersion Include =" Microsoft.DotNet.HotReload.Agent.Data" Version =" $(MicrosoftDotNetHotReloadPackageVersion)" />
36
36
<PackageVersion Include =" Microsoft.DotNet.HotReload.Agent.PipeRpc" Version =" $(MicrosoftDotNetHotReloadPackageVersion)" />
37
- <PackageVersion Include =" Microsoft.DotNet.HotReload.Agent.Host" Version =" $(MicrosoftDotNetHotReloadPackageVersion) " />
37
+ <PackageVersion Include =" Microsoft.DotNet.HotReload.Agent.Host" Version =" 10.0.100-rc.2.25468.104 " />
38
38
<PackageVersion Include =" Microsoft.DotNet.HotReload.Client" Version =" $(MicrosoftDotNetHotReloadPackageVersion)" />
39
- <PackageVersion Include =" Microsoft.DotNet.HotReload.Web.Middleware" Version =" $(MicrosoftDotNetHotReloadPackageVersion) " />
39
+ <PackageVersion Include =" Microsoft.DotNet.HotReload.Web.Middleware" Version =" 10.0.100-rc.2.25468.104 " />
40
40
41
41
<!-- VS SDK -->
42
42
<!-- https://dev.azure.com/azure-public/vside/_artifacts/feed/vssdk -->
Original file line number Diff line number Diff line change 1
1
<!-- Any changes to this file or format requires updates in project-system-vscode -->
2
2
<Project >
3
3
<PropertyGroup >
4
- <CPSPackageVersion >18.0.176 -pre</CPSPackageVersion >
4
+ <CPSPackageVersion >18.0.221 -pre</CPSPackageVersion >
5
5
</PropertyGroup >
6
6
</Project >
Original file line number Diff line number Diff line change
1
+ // 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.md file in the project root for more information.
2
+ #pragma warning disable VSTHRD200 // Use "Async" suffix for async methods
3
+
4
+ namespace System . Threading . Tasks ;
5
+
6
+ internal static partial class ValueTaskExtensions
7
+ {
8
+ #if ! NET
9
+ extension ( ValueTask )
10
+ {
11
+ public static ValueTask < T > FromResult < T > ( T result )
12
+ => new ( result ) ;
13
+
14
+ public static ValueTask CompletedTask
15
+ => new ( ) ;
16
+ }
17
+ #endif
18
+ }
You can’t perform that action at this time.
0 commit comments