mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-23 16:37:58 +08:00
17 lines
522 B
C#
17 lines
522 B
C#
// Copyright (c) Microsoft Corporation
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
using System;
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Microsoft.Plugin.Program.Programs
|
|
{
|
|
// Reference : https://stackoverflow.com/questions/32122679/getting-icon-of-modern-windows-app-from-a-desktop-application
|
|
[Guid("5842a140-ff9f-4166-8f5c-62f5b7b0c781")]
|
|
[ComImport]
|
|
public class AppxFactory
|
|
{
|
|
}
|
|
}
|