File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1111 workflow_dispatch :
1212
1313env :
14- DOTNET_VERSION : ' 9 .0.x' # The .NET SDK version to use
14+ DOTNET_VERSION : ' 10 .0.x' # The .NET SDK version to use
1515
1616jobs :
1717 build-and-package :
Original file line number Diff line number Diff line change @@ -165,16 +165,8 @@ public int IndexOf(Action<TEventArgs> callback)
165165
166166 IEnumerator IEnumerable . GetEnumerator ( ) => GetEnumerator ( ) ;
167167
168- public static WeakEvent < TEventArgs > operator + ( WeakEvent < TEventArgs > weakEvent , Action < TEventArgs > callback )
169- {
170- weakEvent . Add ( callback ) ;
171- return weakEvent ;
172- }
168+ public void operator + = ( Action < TEventArgs > callback ) => Add ( callback ) ;
173169
174- public static WeakEvent < TEventArgs > operator - ( WeakEvent < TEventArgs > weakEvent , Action < TEventArgs > callback )
175- {
176- weakEvent . Remove ( callback ) ;
177- return weakEvent ;
178- }
170+ public void operator - = ( Action < TEventArgs > callback ) => Remove ( callback ) ;
179171 }
180172}
Original file line number Diff line number Diff line change 1010 <PublishAot >True</PublishAot >
1111 <PublishProfile >win-$(Platform).pubxml</PublishProfile >
1212 <RuntimeIdentifiers >win-x86;win-x64;win-arm64</RuntimeIdentifiers >
13- <TargetFramework >net8 .0-windows10.0.26100.0</TargetFramework >
13+ <TargetFramework >net10 .0-windows10.0.26100.0</TargetFramework >
1414 <TargetPlatformMinVersion >10.0.17763.0</TargetPlatformMinVersion >
1515 <UseUwp >True</UseUwp >
1616 <VersionPrefix >0.0.1</VersionPrefix >
2828 <PackageReference Include =" CommunityToolkit.Uwp.Extensions" Version =" 8.2.250402" />
2929 <PackageReference Include =" CommunityToolkit.Uwp.Triggers" Version =" 8.2.250402" />
3030 <PackageReference Include =" Karambolo.Extensions.Logging.File" Version =" 3.6.3" />
31- <PackageReference Include =" Microsoft.Extensions.Logging.Debug" Version =" 9 .0.9 " />
31+ <PackageReference Include =" Microsoft.Extensions.Logging.Debug" Version =" 10 .0.0 " />
3232 <PackageReference Include =" Microsoft.UI.Xaml" Version =" 2.8.7" />
33- <PackageReference Include =" Microsoft.WindowsPackageManager.ComInterop" Version =" 1.11.530 " />
33+ <PackageReference Include =" Microsoft.WindowsPackageManager.ComInterop" Version =" 1.12.350 " />
3434 </ItemGroup >
3535
3636 <ItemGroup >
You can’t perform that action at this time.
0 commit comments