Compare commits
6 Commits
f14e863f0b
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 2b972ac4e9 | |||
| b018d54e9b | |||
| 7837c696cc | |||
| b5c60b5398 | |||
| a67cdf574d | |||
| 837cc0692b |
22
.gitignore
vendored
Normal file
@@ -0,0 +1,22 @@
|
|||||||
|
# Build outputs
|
||||||
|
**/bin/
|
||||||
|
**/obj/
|
||||||
|
**/publish/
|
||||||
|
dist/
|
||||||
|
|
||||||
|
# Installer payload
|
||||||
|
src/AxCopilot.Installer/payload.zip
|
||||||
|
|
||||||
|
# IDE
|
||||||
|
.vs/
|
||||||
|
*.user
|
||||||
|
*.suo
|
||||||
|
|
||||||
|
# OS
|
||||||
|
Thumbs.db
|
||||||
|
Desktop.ini
|
||||||
|
.DS_Store
|
||||||
|
|
||||||
|
# Secrets
|
||||||
|
*.env
|
||||||
|
credentials.json
|
||||||
BIN
dist/AxCopilot/Accessibility.dll
vendored
BIN
dist/AxCopilot/Assets/SearchEngines/duckduckgo.png
vendored
|
Before Width: | Height: | Size: 1.8 KiB |
BIN
dist/AxCopilot/Assets/SearchEngines/github.png
vendored
|
Before Width: | Height: | Size: 519 B |
BIN
dist/AxCopilot/Assets/SearchEngines/google.png
vendored
|
Before Width: | Height: | Size: 615 B |
BIN
dist/AxCopilot/Assets/SearchEngines/namuwiki.png
vendored
|
Before Width: | Height: | Size: 553 B |
BIN
dist/AxCopilot/Assets/SearchEngines/naver.png
vendored
|
Before Width: | Height: | Size: 247 B |
BIN
dist/AxCopilot/Assets/SearchEngines/navermap.png
vendored
|
Before Width: | Height: | Size: 1.3 KiB |
BIN
dist/AxCopilot/Assets/SearchEngines/wikipedia.png
vendored
|
Before Width: | Height: | Size: 555 B |
BIN
dist/AxCopilot/Assets/SearchEngines/youtube.png
vendored
|
Before Width: | Height: | Size: 488 B |
BIN
dist/AxCopilot/Assets/guide_dev.enc
vendored
BIN
dist/AxCopilot/Assets/guide_user.enc
vendored
BIN
dist/AxCopilot/Assets/icon.ico
vendored
|
Before Width: | Height: | Size: 7.3 KiB |
BIN
dist/AxCopilot/AxCopilot.SDK.dll
vendored
1319
dist/AxCopilot/AxCopilot.deps.json
vendored
BIN
dist/AxCopilot/AxCopilot.dll
vendored
BIN
dist/AxCopilot/AxCopilot.exe
vendored
19
dist/AxCopilot/AxCopilot.runtimeconfig.json
vendored
@@ -1,19 +0,0 @@
|
|||||||
{
|
|
||||||
"runtimeOptions": {
|
|
||||||
"tfm": "net8.0",
|
|
||||||
"includedFrameworks": [
|
|
||||||
{
|
|
||||||
"name": "Microsoft.NETCore.App",
|
|
||||||
"version": "8.0.25"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"name": "Microsoft.WindowsDesktop.App",
|
|
||||||
"version": "8.0.25"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"configProperties": {
|
|
||||||
"System.Reflection.Metadata.MetadataUpdater.IsSupported": false,
|
|
||||||
"CSWINRT_USE_WINDOWS_UI_XAML_PROJECTIONS": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||