This file contains hidden or 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
# Install Chocolatey | |
Set-ExecutionPolicy Bypass | |
iex ((New-Object System.Net.WebClient).DownloadString('https://chocolatey.org/install.ps1')) | |
# Bypass confirmation | |
choco feature enable -n allowGlobalConfirmation | |
# Misc | |
choco install googlechrome | |
choco install 7zip |
This file contains hidden or 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
msbuild Search.Web.csproj /p:Configuration=Release /p:Platform=AnyCPU /t:WebPublish /p:WebPublishMethod=FileSystem /p:DeleteExistingFiles=True /p:publishUrl=c:\output |
This file contains hidden or 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
git config --global remote.origin.prune true | |
git config --global rerere.enabled true | |
git config --global push.autoSetupRemote true | |
git config --global alias.lg "log --oneline --graph --decorate" | |
git config --global alias.s "status" | |
git config --global alias.b "branch --all" | |
git config --global alias.ch "checkout" | |
git config --global color.ui.auto true | |
git config --global color.status.added "green normal bold" | |
git config --global color.status.changed "red normal bold" |