/
githubmirror
/
PowerToys
Обзор
Документация
Войти
/
githubmirror
/
PowerToys
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/modules/launcher/Plugins/Microsoft.Plugin.Program/Programs/IAppxFactory.cs
21 строка
931 B
Jeremy Sinclair
[Analyzers] Update .editorconfig with rules to relax IDE errors (#36095)
04 дек 2024, 20:58
Не верифицирован
04 дек 2024, 20:58
eadcf4b
Код
Авторство
О чём код?
// 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; using System.Runtime.InteropServices.ComTypes; namespace Microsoft.Plugin.Program.Programs { [Guid("BEB94909-E451-438B-B5A7-D79E767B75D8")] [InterfaceType(ComInterfaceType.InterfaceIsIUnknown)] public interface IAppxFactory { [System.Diagnostics.CodeAnalysis.SuppressMessage("StyleCop.CSharp.NamingRules", "SA1300:Element should begin with upper-case letter", Justification = "Implements COM Interface")] [System.Diagnostics.CodeAnalysis.SuppressMessage("Style", "IDE1006:Naming Styles", Justification = "Implements COM Interface")] void _VtblGap0_2(); // skip 2 methods IAppxManifestReader CreateManifestReader(IStream inputStream); } }