Skip to content

Commit d64ed8c

Browse files
committed
1.0
0 parents  commit d64ed8c

24 files changed

Lines changed: 1255 additions & 0 deletions

.gitignore

Lines changed: 281 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,281 @@
1+
*.zip
2+
.stats/
3+
MigrationBackup/
4+
5+
## Ignore Visual Studio temporary files, build results, and
6+
## files generated by popular Visual Studio add-ons.
7+
##
8+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
9+
10+
# User-specific files
11+
*.suo
12+
*.user
13+
*.userosscache
14+
*.sln.docstates
15+
*.vcxproj.filters
16+
17+
# User-specific files (MonoDevelop/Xamarin Studio)
18+
*.userprefs
19+
20+
# Build results
21+
[Dd]ebug/
22+
[Dd]ebugPublic/
23+
[Rr]elease/
24+
[Rr]eleases/
25+
x64/
26+
x86/
27+
bld/
28+
[Bb]in/
29+
[Oo]bj/
30+
[Ll]og/
31+
32+
# Visual Studio 2015 cache/options directory
33+
.vs/
34+
# Uncomment if you have tasks that create the project's static files in wwwroot
35+
#wwwroot/
36+
37+
# MSTest test Results
38+
[Tt]est[Rr]esult*/
39+
[Bb]uild[Ll]og.*
40+
41+
# NUNIT
42+
*.VisualState.xml
43+
TestResult.xml
44+
45+
# Build Results of an ATL Project
46+
[Dd]ebugPS/
47+
[Rr]eleasePS/
48+
dlldata.c
49+
50+
# .NET Core
51+
project.lock.json
52+
project.fragment.lock.json
53+
artifacts/
54+
**/Properties/launchSettings.json
55+
56+
*_i.c
57+
*_p.c
58+
*_i.h
59+
*.ilk
60+
*.meta
61+
*.obj
62+
*.pch
63+
*.pdb
64+
*.pgc
65+
*.pgd
66+
*.rsp
67+
*.sbr
68+
*.tlb
69+
*.tli
70+
*.tlh
71+
*.tmp
72+
*.tmp_proj
73+
*.log
74+
*.vspscc
75+
*.vssscc
76+
.builds
77+
*.pidb
78+
*.svclog
79+
*.scc
80+
81+
# Chutzpah Test files
82+
_Chutzpah*
83+
84+
# Visual C++ cache files
85+
ipch/
86+
*.aps
87+
*.ncb
88+
*.opendb
89+
*.opensdf
90+
*.sdf
91+
*.cachefile
92+
*.VC.db
93+
*.VC.VC.opendb
94+
95+
# Visual Studio profiler
96+
*.psess
97+
*.vsp
98+
*.vspx
99+
*.sap
100+
101+
# TFS 2012 Local Workspace
102+
$tf/
103+
104+
# Guidance Automation Toolkit
105+
*.gpState
106+
107+
# ReSharper is a .NET coding add-in
108+
_ReSharper*/
109+
*.[Rr]e[Ss]harper
110+
*.DotSettings.user
111+
112+
# JustCode is a .NET coding add-in
113+
.JustCode
114+
115+
# TeamCity is a build add-in
116+
_TeamCity*
117+
118+
# DotCover is a Code Coverage Tool
119+
*.dotCover
120+
121+
# Visual Studio code coverage results
122+
*.coverage
123+
*.coveragexml
124+
125+
# NCrunch
126+
_NCrunch_*
127+
.*crunch*.local.xml
128+
nCrunchTemp_*
129+
130+
# MightyMoose
131+
*.mm.*
132+
AutoTest.Net/
133+
134+
# Web workbench (sass)
135+
.sass-cache/
136+
137+
# Installshield output folder
138+
[Ee]xpress/
139+
140+
# DocProject is a documentation generator add-in
141+
DocProject/buildhelp/
142+
DocProject/Help/*.HxT
143+
DocProject/Help/*.HxC
144+
DocProject/Help/*.hhc
145+
DocProject/Help/*.hhk
146+
DocProject/Help/*.hhp
147+
DocProject/Help/Html2
148+
DocProject/Help/html
149+
150+
# Click-Once directory
151+
publish/
152+
153+
# Publish Web Output
154+
*.[Pp]ublish.xml
155+
*.azurePubxml
156+
# TODO: Comment the next line if you want to checkin your web deploy settings
157+
# but database connection strings (with potential passwords) will be unencrypted
158+
*.pubxml
159+
*.publishproj
160+
161+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
162+
# checkin your Azure Web App publish settings, but sensitive information contained
163+
# in these scripts will be unencrypted
164+
PublishScripts/
165+
166+
# NuGet Packages
167+
*.nupkg
168+
# The packages folder can be ignored because of Package Restore
169+
**/packages/*
170+
# except build/, which is used as an MSBuild target.
171+
!**/packages/build/
172+
# Uncomment if necessary however generally it will be regenerated when needed
173+
#!**/packages/repositories.config
174+
# NuGet v3's project.json files produces more ignoreable files
175+
*.nuget.props
176+
*.nuget.targets
177+
178+
# Microsoft Azure Build Output
179+
csx/
180+
*.build.csdef
181+
182+
# Microsoft Azure Emulator
183+
ecf/
184+
rcf/
185+
186+
# Windows Store app package directories and files
187+
AppPackages/
188+
BundleArtifacts/
189+
Package.StoreAssociation.xml
190+
_pkginfo.txt
191+
192+
# Visual Studio cache files
193+
# files ending in .cache can be ignored
194+
*.[Cc]ache
195+
# but keep track of directories ending in .cache
196+
!*.[Cc]ache/
197+
198+
# Others
199+
ClientBin/
200+
~$*
201+
*~
202+
*.dbmdl
203+
*.dbproj.schemaview
204+
*.jfm
205+
*.pfx
206+
*.publishsettings
207+
node_modules/
208+
orleans.codegen.cs
209+
210+
# Since there are multiple workflows, uncomment next line to ignore bower_components
211+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
212+
#bower_components/
213+
214+
# RIA/Silverlight projects
215+
Generated_Code/
216+
217+
# Backup & report files from converting an old project file
218+
# to a newer Visual Studio version. Backup files are not needed,
219+
# because we have git ;-)
220+
_UpgradeReport_Files/
221+
Backup*/
222+
UpgradeLog*.XML
223+
UpgradeLog*.htm
224+
225+
# SQL Server files
226+
*.mdf
227+
*.ldf
228+
229+
# Business Intelligence projects
230+
*.rdl.data
231+
*.bim.layout
232+
*.bim_*.settings
233+
234+
# Microsoft Fakes
235+
FakesAssemblies/
236+
237+
# GhostDoc plugin setting file
238+
*.GhostDoc.xml
239+
240+
# Node.js Tools for Visual Studio
241+
.ntvs_analysis.dat
242+
243+
# Visual Studio 6 build log
244+
*.plg
245+
246+
# Visual Studio 6 workspace options file
247+
*.opt
248+
249+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
250+
*.vbw
251+
252+
# Visual Studio LightSwitch build output
253+
**/*.HTMLClient/GeneratedArtifacts
254+
**/*.DesktopClient/GeneratedArtifacts
255+
**/*.DesktopClient/ModelManifest.xml
256+
**/*.Server/GeneratedArtifacts
257+
**/*.Server/ModelManifest.xml
258+
_Pvt_Extensions
259+
260+
# Paket dependency manager
261+
.paket/paket.exe
262+
paket-files/
263+
264+
# FAKE - F# Make
265+
.fake/
266+
267+
# JetBrains Rider
268+
.idea/
269+
*.sln.iml
270+
271+
# CodeRush
272+
.cr/
273+
274+
# Python Tools for Visual Studio (PTVS)
275+
__pycache__/
276+
*.pyc
277+
278+
# Cake - Uncomment if you are using it
279+
# tools/
280+
StoreLite/win32/
281+
StorePro/win32/

.gitmodules

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "XJKdotNetLibrary"]
2+
path = XJKdotNetLibrary
3+
url = https://github.com/XUJINKAI/XJKdotNetLibrary.git

README.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# ShellCommand
2+
3+
Customize your context menu by Single file.
4+
5+
![](/docs/screenshot.png)
6+
7+
### Feature
8+
9+
- Custom one folder's context menu by `.shellcommand.yaml`
10+
- Custom global context menu by `global.shellcommand.yaml`
11+
12+
## Usage
13+
14+
Open ShellCommand.exe, Click Install, Bingo!
15+
16+
<img src="docs/app.png" style="height: 50%">
17+
18+
## Known Issues
19+
20+
- After Uninstall, explorer.exe keep loading program. You should restart explorer to release or the file cannot be deleted.
21+
22+
## LICENSE
23+
24+
MIT. by XUJINKAI.❤

ShellCommand.sln

Lines changed: 79 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,79 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio Version 16
4+
VisualStudioVersion = 16.0.29324.140
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ShellCommand", "ShellCommand\ShellCommand.csproj", "{B6932DFC-F84B-4541-9FBC-DB87064B978D}"
7+
EndProject
8+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XJK.SysX", "XJKdotNetLibrary\dotNetFramework\SysX\XJK.SysX.csproj", "{0B364D67-F5DF-499D-87E3-93EBA78CFB11}"
9+
EndProject
10+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "XJK", "XJK", "{798B21C9-4D7C-443A-A05F-E4774B9C96AE}"
11+
EndProject
12+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XJK.PInvoke", "XJKdotNetLibrary\dotNetFramework\PInvoke\XJK.PInvoke.csproj", "{09B2A181-0411-447E-B18A-E12E72A97C53}"
13+
EndProject
14+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "XJK.Common", "XJKdotNetLibrary\dotNetStandard\Common\XJK.Common.csproj", "{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}"
15+
EndProject
16+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "XJK.WPF", "XJKdotNetLibrary\dotNetFramework\WPF\XJK.WPF.csproj", "{E91D5857-D99B-4825-BAE8-5CF06C706A3D}"
17+
EndProject
18+
Global
19+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
20+
Debug|x64 = Debug|x64
21+
Debug|x86 = Debug|x86
22+
Release|x64 = Release|x64
23+
Release|x86 = Release|x86
24+
EndGlobalSection
25+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
26+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Debug|x64.ActiveCfg = Debug|x64
27+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Debug|x64.Build.0 = Debug|x64
28+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Debug|x86.ActiveCfg = Debug|x86
29+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Debug|x86.Build.0 = Debug|x86
30+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Release|x64.ActiveCfg = Release|x64
31+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Release|x64.Build.0 = Release|x64
32+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Release|x86.ActiveCfg = Release|x86
33+
{B6932DFC-F84B-4541-9FBC-DB87064B978D}.Release|x86.Build.0 = Release|x86
34+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Debug|x64.ActiveCfg = Debug|x64
35+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Debug|x64.Build.0 = Debug|x64
36+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Debug|x86.ActiveCfg = Debug|x86
37+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Debug|x86.Build.0 = Debug|x86
38+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Release|x64.ActiveCfg = Release|x64
39+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Release|x64.Build.0 = Release|x64
40+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Release|x86.ActiveCfg = Release|x86
41+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11}.Release|x86.Build.0 = Release|x86
42+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Debug|x64.ActiveCfg = Debug|x64
43+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Debug|x64.Build.0 = Debug|x64
44+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Debug|x86.ActiveCfg = Debug|x86
45+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Debug|x86.Build.0 = Debug|x86
46+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Release|x64.ActiveCfg = Release|x64
47+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Release|x64.Build.0 = Release|x64
48+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Release|x86.ActiveCfg = Release|x86
49+
{09B2A181-0411-447E-B18A-E12E72A97C53}.Release|x86.Build.0 = Release|x86
50+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Debug|x64.ActiveCfg = Debug|x64
51+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Debug|x64.Build.0 = Debug|x64
52+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Debug|x86.ActiveCfg = Debug|x86
53+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Debug|x86.Build.0 = Debug|x86
54+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Release|x64.ActiveCfg = Release|x64
55+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Release|x64.Build.0 = Release|x64
56+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Release|x86.ActiveCfg = Release|x86
57+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33}.Release|x86.Build.0 = Release|x86
58+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Debug|x64.ActiveCfg = Debug|x64
59+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Debug|x64.Build.0 = Debug|x64
60+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Debug|x86.ActiveCfg = Debug|x86
61+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Debug|x86.Build.0 = Debug|x86
62+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Release|x64.ActiveCfg = Release|x64
63+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Release|x64.Build.0 = Release|x64
64+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Release|x86.ActiveCfg = Release|x86
65+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D}.Release|x86.Build.0 = Release|x86
66+
EndGlobalSection
67+
GlobalSection(SolutionProperties) = preSolution
68+
HideSolutionNode = FALSE
69+
EndGlobalSection
70+
GlobalSection(NestedProjects) = preSolution
71+
{0B364D67-F5DF-499D-87E3-93EBA78CFB11} = {798B21C9-4D7C-443A-A05F-E4774B9C96AE}
72+
{09B2A181-0411-447E-B18A-E12E72A97C53} = {798B21C9-4D7C-443A-A05F-E4774B9C96AE}
73+
{2E738408-5F22-4B7B-A7EF-2958FA4DCE33} = {798B21C9-4D7C-443A-A05F-E4774B9C96AE}
74+
{E91D5857-D99B-4825-BAE8-5CF06C706A3D} = {798B21C9-4D7C-443A-A05F-E4774B9C96AE}
75+
EndGlobalSection
76+
GlobalSection(ExtensibilityGlobals) = postSolution
77+
SolutionGuid = {80299784-1055-404A-AE46-E0668BF4A16C}
78+
EndGlobalSection
79+
EndGlobal

0 commit comments

Comments
 (0)