This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Get-ChildItem @("packages.config", "package.json") -Recurse | %{ @($_.FullName, (Get-Content $_.FullName)) } | Out-File results.xml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Template analysis script that runs SonarQube analysis for .NET projects | |
# More details in http://blog.pragmasoft.pl/software/2018-10-10-sonarqube-2-setup-environment/ | |
param( | |
$version = '', # SQ records analysis history, each having its version label | |
$authToken = '' # SonarCloud.io auth, generated in SQ administration | |
) | |
# retrieve all solution files that exist in the project subtree | |
$slns = Get-ChildItem *.sln -r |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[alias] | |
o = checkout | |
a = add | |
c = commit --verbose | |
ca = commit -a --verbose | |
s = status | |
b = branch | |
b-list = remote show origin | |
b-list2 = branch -r -v -a | |
b-refresh = remote prune origin |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion] | |
"EnableLog"=dword:00000000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Fusion] | |
"ForceLog"=dword:00000001 | |
"LogFailures"=dword:00000001 | |
"LogResourceBinds"=dword:00000001 | |
"EnableLog"=dword:00000001 | |
"LogPath"="C:\\FusionLogs\\" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\9.0\Debugger] | |
"DisableAttachSecurityWarning"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Wow6432Node\Microsoft\VisualStudio\9.0\Debugger] | |
"DisableAttachSecurityWarning"=dword:00000001 | |
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\10.0\Debugger] | |
"DisableAttachSecurityWarning"=dword:00000001 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions | |
Enable-RemoteDesktop | |
cinst conemu | |
cinst git.install | |
cinst git-credential-winstore | |
cinst poshgit | |
cinst gitextensions | |
cinst keepass.install | |
cinst sysinternals |