001
This commit is contained in:
commit
816403ac66
137
.gitignore
vendored
Normal file
137
.gitignore
vendored
Normal file
@ -0,0 +1,137 @@
|
|||||||
|
syntax: glob
|
||||||
|
|
||||||
|
### VisualStudio ###
|
||||||
|
|
||||||
|
# Tools directory
|
||||||
|
/[Tt]ools/
|
||||||
|
.dotnet/
|
||||||
|
.packages/
|
||||||
|
|
||||||
|
# User-specific files
|
||||||
|
*.suo
|
||||||
|
*.user
|
||||||
|
*.userosscache
|
||||||
|
*.sln.docstates
|
||||||
|
launchSettings.json
|
||||||
|
|
||||||
|
# Build results
|
||||||
|
artifacts/
|
||||||
|
publish/
|
||||||
|
[Dd]ebug/
|
||||||
|
[Rr]elease/
|
||||||
|
x64/
|
||||||
|
x86/ !eng/common/cross/x86/
|
||||||
|
[Bb]in/
|
||||||
|
[Oo]bj/
|
||||||
|
msbuild.log
|
||||||
|
msbuild.err
|
||||||
|
msbuild.wrn
|
||||||
|
msbuild.binlog
|
||||||
|
|
||||||
|
# Visual Studio 2015
|
||||||
|
.vs/
|
||||||
|
|
||||||
|
# Visual Studio 2015 Pre-CTP6
|
||||||
|
*.sln.ide
|
||||||
|
*.ide/
|
||||||
|
|
||||||
|
# MSTest test Results
|
||||||
|
[Tt]est[Rr]esult*/
|
||||||
|
[Bb]uild[Ll]og.*
|
||||||
|
|
||||||
|
#NUNIT
|
||||||
|
*.VisualState.xml
|
||||||
|
TestResult.xml
|
||||||
|
|
||||||
|
# ReSharper is a .NET coding add-in
|
||||||
|
_ReSharper*/
|
||||||
|
*.[Rr]e[Ss]harper
|
||||||
|
*.DotSettings.user
|
||||||
|
|
||||||
|
# DotCover is a Code Coverage Tool
|
||||||
|
*.dotCover
|
||||||
|
|
||||||
|
# NuGet Packages
|
||||||
|
*.nuget.props
|
||||||
|
*.nuget.targets
|
||||||
|
*.nupkg
|
||||||
|
**/packages/*
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
|
||||||
|
# Windows image file caches
|
||||||
|
Thumbs.db
|
||||||
|
ehthumbs.db
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
Desktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
### OSX ###
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear on external disk
|
||||||
|
.Spotlight-V100
|
||||||
|
.Trashes
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
# vim temporary files
|
||||||
|
[._]*.s[a-w][a-z]
|
||||||
|
[._]s[a-w][a-z]
|
||||||
|
*.un~
|
||||||
|
Session.vim
|
||||||
|
.netrwhist
|
||||||
|
*~
|
||||||
|
|
||||||
|
# Visual Studio Code
|
||||||
|
.vscode/
|
||||||
|
|
||||||
|
# Private test configuration and binaries.
|
||||||
|
config.ps1
|
||||||
|
**/IISApplications
|
||||||
|
|
||||||
|
|
||||||
|
# Node.js modules
|
||||||
|
node_modules/
|
||||||
|
|
||||||
|
# Python Compile Outputs
|
||||||
|
*.pyc
|
||||||
|
|
||||||
|
#git
|
||||||
|
config
|
||||||
|
.git.zip
|
||||||
|
|
||||||
|
#VSCode Settings => mklink /J "VSCode Settings" "C:\Users\phares\AppData\Roaming\Code\User"
|
||||||
|
globalStorage/
|
||||||
|
*workspaceStorage/
|
28
User/keybindings.json
Normal file
28
User/keybindings.json
Normal file
@ -0,0 +1,28 @@
|
|||||||
|
// Place your key bindings in this file to override the defaultsauto[]
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+f10",
|
||||||
|
"command": "debug.jumpToCursor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+f10",
|
||||||
|
"command": "editor.debug.action.runToCursor"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+s",
|
||||||
|
"command": "-workbench.action.files.saveLocalFile",
|
||||||
|
"when": "remoteFileDialogVisible"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+s",
|
||||||
|
"command": "-workbench.action.files.saveAs"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+shift+s",
|
||||||
|
"command": "saveAll"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"key": "ctrl+k s",
|
||||||
|
"command": "-saveAll"
|
||||||
|
}
|
||||||
|
]
|
113
User/settings.json
Normal file
113
User/settings.json
Normal file
@ -0,0 +1,113 @@
|
|||||||
|
{
|
||||||
|
"explorer.confirmDelete": false,
|
||||||
|
"explorer.confirmDragAndDrop": false,
|
||||||
|
"cSpell.userWords": [
|
||||||
|
"Decompiler",
|
||||||
|
"HSMS",
|
||||||
|
"Infineon",
|
||||||
|
"Tencor",
|
||||||
|
"Villach",
|
||||||
|
"ipdsf",
|
||||||
|
"pdsf",
|
||||||
|
"tibco"
|
||||||
|
],
|
||||||
|
"workbench.startupEditor": "newUntitledFile",
|
||||||
|
"git.ignoreMissingGitWarning": true,
|
||||||
|
"editor.largeFileOptimizations": false,
|
||||||
|
"mssql.connections": [
|
||||||
|
{
|
||||||
|
"connectionString": "Microsoft.SqlTools|itemtype:Profile|server:MESSA008.na.infineon.com|db:IRMNSPC_TEST|user:IQSDMS1_TEST|isConnectionString:true",
|
||||||
|
"profileName": "DEV G4WAFERS",
|
||||||
|
"database": "IRMNSPC_TEST",
|
||||||
|
"user": "IQSDMS1_TEST",
|
||||||
|
"server": "MESSA008.na.infineon.com",
|
||||||
|
"authenticationType": "SqlLogin",
|
||||||
|
"savePassword": true,
|
||||||
|
"password": ""
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"connectionString": "Microsoft.SqlTools|itemtype:Profile|server:MESSA008.na.infineon.com|db:G4Wafers_TEST|user:IQSDMS1_TEST|isConnectionString:true",
|
||||||
|
"profileName": "DEV IRMNSPC",
|
||||||
|
"database": "G4Wafers_TEST",
|
||||||
|
"user": "IQSDMS1_TEST",
|
||||||
|
"server": "MESSA008.na.infineon.com",
|
||||||
|
"authenticationType": "SqlLogin",
|
||||||
|
"savePassword": true,
|
||||||
|
"password": ""
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"explorer.openEditors.visible": 0,
|
||||||
|
"workbench.list.openMode": "doubleClick",
|
||||||
|
"debug.onTaskErrors": "showErrors",
|
||||||
|
"[csharp]": {
|
||||||
|
"editor.defaultFormatter": "ms-dotnettools.csharp"
|
||||||
|
},
|
||||||
|
"terminal.integrated.tabs.enabled": true,
|
||||||
|
"workbench.editorAssociations": {
|
||||||
|
"*.pcl": "hexEditor.hexedit",
|
||||||
|
"*.dib": "default"
|
||||||
|
},
|
||||||
|
"workbench.commandPalette.history": 20,
|
||||||
|
"task.quickOpen.history": 20,
|
||||||
|
"git.confirmSync": false,
|
||||||
|
"git.enableSmartCommit": true,
|
||||||
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
|
||||||
|
},
|
||||||
|
"prettier.enabledLanguageIds": [
|
||||||
|
"csharp",
|
||||||
|
"css",
|
||||||
|
"elm",
|
||||||
|
"flow",
|
||||||
|
"graphql",
|
||||||
|
"handlebars",
|
||||||
|
"html",
|
||||||
|
"java",
|
||||||
|
"javascript",
|
||||||
|
"javascriptreact",
|
||||||
|
"jsonc",
|
||||||
|
"less",
|
||||||
|
"markdown",
|
||||||
|
"mdx",
|
||||||
|
"php",
|
||||||
|
"postcss",
|
||||||
|
"ruby",
|
||||||
|
"scss",
|
||||||
|
"solidity",
|
||||||
|
"svelte",
|
||||||
|
"svg",
|
||||||
|
"typescript",
|
||||||
|
"typescriptreact",
|
||||||
|
"twig",
|
||||||
|
"vue",
|
||||||
|
"xml",
|
||||||
|
"yaml",
|
||||||
|
"json"
|
||||||
|
],
|
||||||
|
"editor.fontSize": 16,
|
||||||
|
"[xml]": {
|
||||||
|
"editor.defaultFormatter": "SimonSiefke.prettier-vscode"
|
||||||
|
},
|
||||||
|
"security.workspace.trust.untrustedFiles": "open",
|
||||||
|
"window.zoomLevel": 1,
|
||||||
|
"editor.accessibilitySupport": "off",
|
||||||
|
"workbench.editor.untitled.hint": "hidden",
|
||||||
|
"debug.console.fontSize": 12,
|
||||||
|
"terminal.integrated.fontSize": 12,
|
||||||
|
"[jsonc]": {
|
||||||
|
"editor.defaultFormatter": "vscode.json-language-features"
|
||||||
|
},
|
||||||
|
"editor.renderWhitespace": "none",
|
||||||
|
"debug.openDebug": "neverOpen",
|
||||||
|
"debug.internalConsoleOptions": "neverOpen",
|
||||||
|
"debug.console.closeOnEnd": true,
|
||||||
|
"debug.terminal.clearBeforeReusing": true,
|
||||||
|
"window.newWindowDimensions": "maximized",
|
||||||
|
"csharp.referencesCodeLens.enabled": false,
|
||||||
|
"vscode-edge-devtools.mirrorEdits": true,
|
||||||
|
"debug.javascript.suggestPrettyPrinting": false,
|
||||||
|
"csharp.suppressBuildAssetsNotification": true,
|
||||||
|
"csharp.suppressDotnetRestoreNotification": true,
|
||||||
|
"omnisharp.disableMSBuildDiagnosticWarning": true,
|
||||||
|
"razor.disableBlazorDebugPrompt": true
|
||||||
|
}
|
36
User/syncLocalSettings.json
Normal file
36
User/syncLocalSettings.json
Normal file
@ -0,0 +1,36 @@
|
|||||||
|
{
|
||||||
|
"ignoreUploadFiles": [
|
||||||
|
"state.*",
|
||||||
|
"syncLocalSettings.json",
|
||||||
|
".DS_Store",
|
||||||
|
"sync.lock",
|
||||||
|
"projects.json",
|
||||||
|
"projects_cache_vscode.json",
|
||||||
|
"projects_cache_git.json",
|
||||||
|
"projects_cache_svn.json",
|
||||||
|
"gpm_projects.json",
|
||||||
|
"gpm-recentItems.json"
|
||||||
|
],
|
||||||
|
"ignoreUploadFolders": [
|
||||||
|
"workspaceStorage"
|
||||||
|
],
|
||||||
|
"ignoreExtensions": [],
|
||||||
|
"gistDescription": "Visual Studio Code Settings Sync Gist",
|
||||||
|
"version": 343,
|
||||||
|
"token": "",
|
||||||
|
"downloadPublicGist": false,
|
||||||
|
"supportedFileExtensions": [
|
||||||
|
"json",
|
||||||
|
"code-snippets"
|
||||||
|
],
|
||||||
|
"openTokenLink": true,
|
||||||
|
"disableUpdateMessage": false,
|
||||||
|
"lastUpload": null,
|
||||||
|
"lastDownload": null,
|
||||||
|
"githubEnterpriseUrl": null,
|
||||||
|
"askGistDescription": false,
|
||||||
|
"customFiles": {},
|
||||||
|
"hostName": null,
|
||||||
|
"universalKeybindings": false,
|
||||||
|
"autoUploadDelay": 20
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user