PowerShell/.gitignore
Travis Plunk 49ec403899
fix MSI creation errors, and capture wixpdb for later patch creation (#6221)
- add `wixpdb` output when creating `MSI` package
- capture `wixpdb` in official build
- clean up anything left behind from previous MSI builds before starting MSI build to prevent using dirty files.
- make sure MSI creation fails if there is an error
- ignore `.wixpdb` files in git
- Add functionality to `Start-NativeExecution` to 
    - only display output if there is an error 
    - log caller information
- WXS validation error fixes
    - Remove unused `ExitDialog` to fix ICE82
    - Add KeyPath to `SetPath` to fix ICE18
    - Use `HKMU` which translates to `HKLM` to runtime to fix various validation errors about creating the shortcut
- Suppress Validation errors
    - suppress ICE61, which is about same version upgrades being allowed
    - suppress ICE57, caused by the shortcut not being installed per user
2018-02-26 15:45:15 -08:00

69 lines
922 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
*.wixpdb
# 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