PowerShell/.gitignore
Keith Hill cef7762d18 Add standard set of vscode workspace setting files (#5457)
* Add standard set of vscode workspace setting files

Add an extensions.json file that will prompt folks to install extensions that are recommended for this workspace (c++, c#, powershell, cmake (editing syntax) and markdown linter.

Add settings.json to start to configure C# syntax, PoweShell trim trailing whitespace and configure the markdown lint extension.

Update launch.json to provide ability to debug PowerShell scripts.

* Clean up grammar

* Instruct VSCode to ensure a final newline.

If this is not wanted for certain file types, we can restrict this option to only specified file types.
2017-11-15 11:18:37 +04:00

68 lines
913 B
Plaintext

bin/
obj/
project.lock.json
*-tests.xml
/debug/
/staging/
/Packages/
*.nuget.props
# dotnet cli install/uninstall scripts
dotnet-install.ps1
dotnet-install.sh
dotnet-uninstall-pkgs.sh
dotnet-uninstall-debian-packages.sh
# VS auto-generated solution files for project.json solutions
*.xproj
*.xproj.user
*.suo
# VS auto-generated files for csproj files
*.csproj.user
# Visual Studio IDE directory
.vs/
# Project Rider IDE files
.idea.powershell/
# Ignore executables
*.exe
*.msi
*.appx
# Ignore binaries and symbols
*.pdb
*.dll
# Ignore packages
*.deb
*.tar.gz
*.zip
*.rpm
*.pkg
*.nupkg
*.AppImage
# ignore the telemetry semaphore file
DELETE_ME_TO_DISABLE_CONSOLEHOST_TELEMETRY
# default location for produced nuget packages
/nuget-artifacts
# resgen output
gen
# Per repo profile
.profile.ps1
# macOS
.DS_Store
# TestsResults
TestsResults*.xml
# Resharper settings
PowerShell.sln.DotSettings.user