Compare commits

...

8 Commits

Author SHA1 Message Date
Jaime Bernardo
c8a8898a92 Merge branch 'main' into leilzh/fix_aot_peekui 2024-12-06 22:19:26 +00:00
Leilei Zhang
164fe6989d update script to remove the 'Auto-reference line' 2024-12-05 11:10:08 +08:00
Leilei Zhang
6f44e2411d add auto reference 2024-12-04 20:14:13 +08:00
Leilei Zhang
fb6092c46e add Microsoft.NET.ILLink.Tasks to notice.md 2024-12-04 19:00:06 +08:00
Leilei Zhang
c1a3f05cf9 Revert "format"
This reverts commit 742d5e2214.
2024-12-04 18:39:45 +08:00
Leilei Zhang
742d5e2214 format 2024-12-04 18:36:20 +08:00
Leilei Zhang
4dbbba0ee4 add Microsoft.NET.ILLink.Tasks to packages.props 2024-12-04 18:34:38 +08:00
Leilei Zhang
92caa03f74 add partial for aot support 2024-12-03 22:18:35 +08:00
5 changed files with 10 additions and 2 deletions

View File

@@ -46,8 +46,14 @@ $totalList = $projFiles | ForEach-Object -Parallel {
foreach($p in $temp)
{
# ignore "Auto-referenced" string in the output
if ($p -match "Auto-referenced") {
continue
}
# breaking item down to usable array and getting 1 and 2, see below of a sample output
# > PACKAGE VERSION VERSION
# if a package is Auto-referenced, "(A)" will appear in position 1 instead of a version number.
$p = -split $p
$p = $p[1, 2]

View File

@@ -1326,6 +1326,7 @@ EXHIBIT A -Mozilla Public License.
- Microsoft.Extensions.Hosting.WindowsServices 9.0.0
- Microsoft.Extensions.Logging 9.0.0
- Microsoft.Extensions.Logging.Abstractions 9.0.0
- Microsoft.NET.ILLink.Tasks (A)
- Microsoft.Toolkit.Uwp.Notifications 7.1.2
- Microsoft.Web.WebView2 1.0.2739.15
- Microsoft.Win32.SystemEvents 9.0.0

View File

@@ -10,7 +10,7 @@ using Peek.UI.Extensions;
namespace Peek.UI.Models
{
public class NeighboringItems : IReadOnlyList<IFileSystemItem>
public partial class NeighboringItems : IReadOnlyList<IFileSystemItem>
{
public IFileSystemItem this[int index] => Items[index] = Items[index] ?? ShellItemArray.GetItemAt(index).ToIFileSystemItem();

View File

@@ -10,7 +10,7 @@ using Peek.Common.Models;
namespace Peek.UI.Models
{
public class NeighboringItemsEnumerator : IEnumerator<IFileSystemItem>
public partial class NeighboringItemsEnumerator : IEnumerator<IFileSystemItem>
{
public IFileSystemItem Current => Items[CurrentIndex];

View File

@@ -2,6 +2,7 @@
<!-- Look at Directory.Build.props in root for common stuff as well -->
<Import Project="..\..\..\Common.Dotnet.CsWinRT.props" />
<Import Project="..\..\..\Common.SelfContained.props" />
<Import Project="..\..\..\Common.Dotnet.AotCompatibility.props" />
<PropertyGroup>
<AssemblyName>PowerToys.Peek.UI</AssemblyName>