based on the
Thank you for your interest in contributing to Richard Murillo's Effective C# Analyzers ("We" or "Us").
Get-Project –All | Add-BindingRedirect | |
# On large projects commands like `Update-Package -Reinstall` can take HOURS | |
# If the updates are broken up, then don't lock up the IDE and complete much faster (minutes vs hours) | |
# Reinstall all packages that match a specific targetFramework | |
# Useful when retargeting | |
gci -recurse packages.config | % { [xml]$XmlDocument = Get-Content -Path $_.FullName; $XmlDocument.packages.package | ? { $_.targetFramework -eq 'net462' } | select id | sort-object -unique | % { update-package -reinstall $_.id } } | |
# Reinstall all packages that have been marked with requireReinstallation |
EVAL "for i, name in ipairs(redis.call('KEYS', 'user:*')) do redis.call('expire', name, 0); end" 0 |
# START http://boxstarter.org/package/url? | |
# Initial Windows Config | |
Update-ExecutionPolicy Unrestricted | |
Set-ExplorerOptions -showFileExtensions | |
Enable-RemoteDesktop | |
Disable-GameBarTips | |
# Windows Features and Extras | |
cinst sudo |