├── .gitattributes ├── .github └── workflows │ └── build.yml ├── .gitignore ├── Directory.Build.props ├── LICENSE.txt ├── README.md ├── Windows11ContextMenuManager.sln ├── docs ├── screenshot-1.png └── screenshot-2.png ├── src └── Windows11ContextMenuManager │ ├── App.axaml │ ├── App.axaml.cs │ ├── Assets │ └── icon.ico │ ├── Core │ ├── Blocks.cs │ └── Packages.cs │ ├── FodyWeavers.xml │ ├── Helpers │ ├── Permissions.cs │ └── Try.cs │ ├── Program.cs │ ├── Styles │ ├── Icons.axaml │ ├── ResourceDictionary.axaml │ └── Styles.axaml │ ├── ViewModels │ ├── ItemViewModel.cs │ └── MainViewModel.cs │ ├── Views │ ├── MainWindow.axaml │ └── MainWindow.axaml.cs │ ├── Windows11ContextMenuManager.csproj │ └── app.manifest └── test └── Windows11ContextMenuManager.Tests ├── BlocksTests.cs ├── Data └── Microsoft.WindowsNotepad │ └── AppxManifest.xml ├── PackagesTests.cs └── Windows11ContextMenuManager.Tests.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/.gitignore -------------------------------------------------------------------------------- /Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/Directory.Build.props -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/README.md -------------------------------------------------------------------------------- /Windows11ContextMenuManager.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/Windows11ContextMenuManager.sln -------------------------------------------------------------------------------- /docs/screenshot-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/docs/screenshot-1.png -------------------------------------------------------------------------------- /docs/screenshot-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/docs/screenshot-2.png -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/App.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/App.axaml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/App.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/App.axaml.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Assets/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Assets/icon.ico -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Core/Blocks.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Core/Blocks.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Core/Packages.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Core/Packages.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/FodyWeavers.xml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Helpers/Permissions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Helpers/Permissions.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Helpers/Try.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Helpers/Try.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Program.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Styles/Icons.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Styles/Icons.axaml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Styles/ResourceDictionary.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Styles/ResourceDictionary.axaml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Styles/Styles.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Styles/Styles.axaml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/ViewModels/ItemViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/ViewModels/ItemViewModel.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/ViewModels/MainViewModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/ViewModels/MainViewModel.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Views/MainWindow.axaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Views/MainWindow.axaml -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Views/MainWindow.axaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Views/MainWindow.axaml.cs -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/Windows11ContextMenuManager.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/Windows11ContextMenuManager.csproj -------------------------------------------------------------------------------- /src/Windows11ContextMenuManager/app.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/src/Windows11ContextMenuManager/app.manifest -------------------------------------------------------------------------------- /test/Windows11ContextMenuManager.Tests/BlocksTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/test/Windows11ContextMenuManager.Tests/BlocksTests.cs -------------------------------------------------------------------------------- /test/Windows11ContextMenuManager.Tests/Data/Microsoft.WindowsNotepad/AppxManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/test/Windows11ContextMenuManager.Tests/Data/Microsoft.WindowsNotepad/AppxManifest.xml -------------------------------------------------------------------------------- /test/Windows11ContextMenuManager.Tests/PackagesTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/test/Windows11ContextMenuManager.Tests/PackagesTests.cs -------------------------------------------------------------------------------- /test/Windows11ContextMenuManager.Tests/Windows11ContextMenuManager.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/branhill/windows-11-context-menu-manager/HEAD/test/Windows11ContextMenuManager.Tests/Windows11ContextMenuManager.Tests.csproj --------------------------------------------------------------------------------