├── gep13.hgConfig ├── tools │ └── ChocolateyInstall.ps1 └── gep13.hgConfig.nuspec ├── gep13.ChocolateyServer ├── tools │ └── ChocolateyInstall.ps1 └── gep13.ChocolateyServer.nuspec ├── gep13.WindowsUpdate ├── tools │ └── ChocolateyInstall.ps1 └── gep13.WindowsUpdate.nuspec ├── .gitignore ├── gep13.DefaultBuild └── readme.md ├── gep13.DefaultConfig ├── tools │ └── ChocolateyInstall.ps1 └── gep13.DefaultConfig.nuspec ├── README.md ├── gep13.vs2010extensions ├── gep13.vs2010extensions.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.vs2012extensions ├── gep13.vs2012extensions.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.StyleCopDev ├── gep13.StyleCopDev.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.BoxstarterDev ├── gep13.BoxstarterDev.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.ChocolateyDev ├── gep13.ChocolateyDev.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.MSTestRunner ├── gep13.MSTestRunner.nuspec └── build │ └── gep13.MSTestRunner.targets ├── gep13.gitConfig ├── gep13.gitConfig.nuspec └── tools │ └── ChocolateyInstall.ps1 ├── gep13.NUnitRunner ├── gep13.NUnitRunner.nuspec └── build │ └── gep13.NUnitRunner.targets ├── gep13.xUnitRunner ├── gep13.xUnitRunner.nuspec └── build │ └── gep13.xUnitRunner.targets ├── gep13.ApplicationRunner ├── gep13.ApplicationRunner.nuspec └── build │ └── gep13.ApplicationRunner.targets ├── gep13.vs2015extensions ├── gep13.vs2015extensions.nuspec └── tools │ └── ChocolateyInstall.ps1 └── gep13.vs2013extensions ├── gep13.vs2013extensions.nuspec └── tools └── ChocolateyInstall.ps1 /gep13.hgConfig/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gep13.ChocolateyServer/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /gep13.WindowsUpdate/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Enable-MicrosoftUpdate 2 | Install-WindowsUpdate -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | obj 2 | _ReSharper* 3 | 4 | *.resharper 5 | *.cache 6 | *~ 7 | *.swp 8 | *.swo 9 | *.suo 10 | *.user 11 | *.bak 12 | *.orig 13 | 14 | *.nupkg 15 | 16 | Thumbs.db 17 | -------------------------------------------------------------------------------- /gep13.DefaultBuild/readme.md: -------------------------------------------------------------------------------- 1 | If you are looking for the gep13.DefaultBuild package that used to be located here, you can now find it here: 2 | 3 | https://github.com/cake-contrib/Cake.Recipe -------------------------------------------------------------------------------- /gep13.DefaultConfig/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Update-ExecutionPolicy Unrestricted 2 | Set-WindowsExplorerOptions -EnableShowHiddenFilesFoldersDrives -EnableShowProtectedOSFiles -EnableShowFileExtensions -EnableShowFullPathInTitleBar 3 | Set-TaskbarOptions -Size Small -Lock -Dock Left 4 | Disable-InternetExplorerESC 5 | Disable-UAC 6 | Enable-RemoteDesktop 7 | Enable-MicrosoftUpdate -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ##Personal Chocolatey Packages 2 | 3 | These are a set of Chocolatey/Boxstarter Packages that I maintain. They are available for consumption on my MyGet Feed here: 4 | 5 | https://www.myget.org/F/gep13/ 6 | 7 | ##Build Status 8 | [![gep13 MyGet Build Status](https://www.myget.org/BuildSource/Badge/gep13?identifier=d8a26406-cb5f-4cdb-a38a-4785f5e839d0)](https://www.myget.org/) 9 | -------------------------------------------------------------------------------- /gep13.hgConfig/gep13.hgConfig.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.hgConfig 5 | 1.0.0 6 | gep13 7 | gep13 8 | Chocolatey package to configure the default settings for a Hg install 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.WindowsUpdate/gep13.WindowsUpdate.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.WindowsUpdate 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to configure and install all Microsoft and Windows Updates 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.DefaultConfig/gep13.DefaultConfig.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.DefaultConfig 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to do all the things that are always done when starting a new machine 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.vs2010extensions/gep13.vs2010extensions.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.vs2010extensions 5 | 1.0.1 6 | gep13 7 | gep13 8 | Chocolatey package to install all the Visual Studio 2010 Extensions that I use 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.vs2012extensions/gep13.vs2012extensions.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.vs2012extensions 5 | 1.0.0 6 | gep13 7 | gep13 8 | Chocolatey package to install all the Visual Studio 2012 Extensions that I use 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.StyleCopDev/gep13.StyleCopDev.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.StyleCopDev 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to install and configure everything that is required to do StyleCop Development 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.BoxstarterDev/gep13.BoxstarterDev.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.BoxstarterDev 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to install and configure everything that is required to do Boxstarter Development 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.ChocolateyDev/gep13.ChocolateyDev.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.ChocolateyDev 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to install and configure everything that is required to do Chocolatey Development 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.ChocolateyServer/gep13.ChocolateyServer.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.ChocolateyServer 5 | 1.0.0 6 | gep13 7 | gep13 8 | Boxstarter Package to install and configure everything that is required to run a Ketarin Server to monitor and push new Chocolatey Packages 9 | Boxstarter 10 | 11 | -------------------------------------------------------------------------------- /gep13.MSTestRunner/gep13.MSTestRunner.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.MSTestRunner 5 | 0.1.0 6 | MSTest Runner 7 | gep13 8 | gep13 9 | false 10 | This package will register the build target for the MSTest test runner. 11 | mstest test runner build cake 12 | 13 | -------------------------------------------------------------------------------- /gep13.gitConfig/gep13.gitConfig.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.gitConfig 5 | 1.0.7 6 | gep13 7 | gep13 8 | Chocolatey package to configure the default settings for a Git install 9 | Boxstarter 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /gep13.NUnitRunner/gep13.NUnitRunner.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.NUnitRunner 5 | 0.1.0 6 | NUnit Runner 7 | gep13 8 | gep13 9 | false 10 | This package will register the build target for the NUnit test runner. 11 | nunit test runner build cake 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /gep13.xUnitRunner/gep13.xUnitRunner.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.xUnitRunner 5 | 0.1.2 6 | xUnit Runner 7 | gep13 8 | gep13 9 | false 10 | This package will register the build target for the xUnit test runner. 11 | xunit test runner build cake 12 | 13 | 14 | 15 | 16 | -------------------------------------------------------------------------------- /gep13.ApplicationRunner/gep13.ApplicationRunner.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.ApplicationRunner 5 | 0.1.2 6 | Application Runner 7 | gep13 8 | gep13 9 | false 10 | This package will register the build targets for the console applications and class libraries in preparation for a build. 11 | application runner build cake 12 | 13 | ## 0.1.2 14 | * Corrected issue ProjectType variable name 15 | 16 | ## 0.1.1 17 | * Corrected issue with missing parenthesis 18 | 19 | ## 0.1.0 20 | * Initial Release. 21 | 22 | 23 | -------------------------------------------------------------------------------- /gep13.vs2015extensions/gep13.vs2015extensions.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.vs2015extensions 5 | 1.0.4 6 | gep13 7 | gep13 8 | Chocolatey package to install all the Visual Studio 2015 Extensions that I use 9 | Boxstarter 10 | 11 | ## 1.0.4 12 | * Added GitFlow Extension 13 | 14 | ## 1.0.3 15 | * Added two extensions suggested by @citizenmatt 16 | 17 | ## 1.0.2 18 | * Updated download URL's 19 | * Added additional packages as per VS2013 extensions 20 | 21 | ## 1.0.1 22 | * Removed extensions no longer required 23 | * Added EditorConfig 24 | 25 | ## 1.0.0 26 | * Initial Release. 27 | 28 | 29 | 30 | -------------------------------------------------------------------------------- /gep13.StyleCopDev/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | choco install DotNet3.5 2 | choco install notepadplusplus 3 | choco install fiddler4 4 | choco install hg 5 | choco install Posh-HG 6 | choco install tortoisehg 7 | choco install Wix35 8 | choco install resharper 9 | 10 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Notepad++\notepad++.exe" 11 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files\Internet Explorer\iexplore.exe" 12 | 13 | if(!(Test-Path "c:\dev\stylecop-main")) { 14 | New-Item -Type Directory "c:\dev\stylecop-main" 15 | } 16 | 17 | cd "c:\dev\stylecop-main" 18 | 19 | if(!(Test-Path "c:\dev\stylecop-main\stylecop")){ 20 | hg clone https://hg.codeplex.com/stylecop 21 | } 22 | 23 | # Add a section to update the C:\users\gep13\mercurial.ini with: 24 | # [ui] 25 | # username = gep13 26 | 27 | Install-ChocolateyDesktopLink '%windir%\system32\cmd.exe /k c:\dev\stylecop-main\project\environment.cmd' -------------------------------------------------------------------------------- /gep13.vs2013extensions/gep13.vs2013extensions.nuspec: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | gep13.vs2013extensions 5 | 1.0.11 6 | gep13 7 | gep13 8 | Chocolatey package to install all the Visual Studio 2013 Extensions that I use 9 | Boxstarter 10 | 11 | ## 1.0.11 12 | * Added GitFlow extension 13 | 14 | ## 1.0.10 15 | * Updated all download URL's 16 | 17 | ## 1.0.9 18 | * Added EditorConfig 19 | 20 | ## 1.0.8 21 | * Removing extensions that are no longer used 22 | 23 | ## 1.0.7 24 | * Added the Dev Assistant Extension 25 | 26 | ## 1.0.6 27 | * Added the Flatten Packages extension 28 | 29 | ## 1.0.5 30 | * Added a couple new extensions, Tidy Tabs, and YamlEditor 31 | 32 | ## 1.0.4 33 | * Added Open Command Line - another from Mads 34 | 35 | ## 1.0.3 36 | 37 | * Added MvvmLight extension - based on requiring a lightweight MVVM framework for testing a few things out 38 | * Added GitHub Extension - based on hearing about it on Dot Net Rocks 39 | 40 | ## 1.0.2 41 | 42 | * Added Trailing Whitespace Visualizer 43 | 44 | ## 1.0.1 45 | 46 | * Added new packages from Mads. 47 | 48 | 49 | 50 | -------------------------------------------------------------------------------- /gep13.vs2010extensions/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Install-ChocolateyVsixPackage "NuGet Package Manager" "http://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c/file/37502/35/NuGet.Tools.vsix" 2 | Install-ChocolateyVsixPackage "PowerCommands for Visual Studio 2010" "http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db95b99/file/7088/6/PowerCommands.vsix" 3 | Install-ChocolateyVsixPackage "Visual Studio Spell Checker" "http://visualstudiogallery.msdn.microsoft.com/a23de100-31a1-405c-b4b7-d6be40c3dfff/file/104494/2/VSSpellCheckerPackage.vsix" 4 | Install-ChocolateyVsixPackage "Web Essentials" "http://visualstudiogallery.msdn.microsoft.com/6ed4c78f-a23e-49ad-b5fd-369af0c2107f/file/50769/32/WebEssentials.vsix" 5 | Install-ChocolateyVsixPackage "Productivity Power Tools" "http://visualstudiogallery.msdn.microsoft.com/d0d33361-18e2-46c0-8ff2-4adea1e34fef/file/29666/12/ProPowerTools.vsix" 6 | Install-ChocolateyVsixPackage "StopOnFirstBuildError" "http://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/3/StopOnFirstBuildError.vsix" 7 | Install-ChocolateyVsixPackage "Ref12" "http://visualstudiogallery.msdn.microsoft.com/f89b27c5-7d7b-4059-adde-7ccc709fa86e/file/125016/4/Ref12.vsix" 8 | Install-ChocolateyVsixPackage "CodeMaid" "http://visualstudiogallery.msdn.microsoft.com/76293c4d-8c16-4f4a-aee6-21f83a571496/file/9356/23/CodeMaid_v0.7.0.vsix" 9 | Install-ChocolateyVsixPackage "ClipboardDiff" "http://visualstudiogallery.msdn.microsoft.com/a7519ab0-6029-49f3-9243-a74d1718a5bb/file/49749/4/ClipboardDiff.vsix" -------------------------------------------------------------------------------- /gep13.gitConfig/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | git config --global "user.name" "Gary Ewan Park" 2 | git config --global "user.email" "gep13@gep13.co.uk" 3 | 4 | # Only enable this is you want signing of commits 5 | # git config --global user.signingkey 5BE9DB14 6 | # git config --global commit.gpgsign true 7 | # Windows 8 | # git config --global "gpg.program" "C:/Program Files (x86)/GNU/GnuPG/pub/gpg.exe" 9 | # Mac 10 | # On a Mac, the path to the gpg program isn't required, as this is already on the path 11 | 12 | git config --global "push.default" "simple" 13 | 14 | git config --global "diff.tool" "vscode" 15 | git config --global "difftool.vscode.cmd" "code --wait --diff $LOCAL $REMOTE" 16 | 17 | git config --global "merge.ff" "false" 18 | git config --global "merge.log" "true" 19 | git config --global "merge.renamelimit" "6500" 20 | git config --global "merge.tool" "kdiff3" 21 | 22 | # Windows 23 | git config --global "mergetool.kdiff3.path" "C:/Program Files/KDiff3/bin/kdiff3.exe" 24 | 25 | git config --global "mergetool.kdiff3.keepBackup" "false" 26 | git config --global "mergetool.kdiff3.trustExitCode" "false" 27 | 28 | git config --global "fetch.prune" "true" 29 | 30 | git config --global "core.symlinks" "false" 31 | git config --global "core.autocrlf" "false" 32 | git config --global "core.editor" "code --wait" 33 | 34 | git config --global "alias.st" "status" 35 | git config --global "alias.standup" "!git log --since yesterday --oneline --author 'gep13@gep13.co.uk'" 36 | git config --global "alias.lg" "log --pretty=format:'%C(yellow)%h%C(reset) %s %C(cyan)%cr%C(reset) %C(blue)%an%C(reset) %C(green)%d%C(reset)' --graph --date-order" 37 | git config --global "alias.review" "log -p --reverse -M -C -C --patience --no-prefix" 38 | 39 | git config --global "color.branch" "auto" 40 | git config --global "color.diff" "auto" 41 | git config --global "color.status" "auto" 42 | git config --global "color.ui" "auto" 43 | -------------------------------------------------------------------------------- /gep13.BoxstarterDev/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | choco install IIS-WebServerRole -source windowsfeatures 2 | choco install IIS-HttpCompressionDynamic -source windowsfeatures 3 | choco install TelnetClient -source windowsFeatures 4 | 5 | choco install GoogleChrome 6 | choco install Firefox 7 | choco install dotPeek 8 | choco install filezilla 9 | choco install notepadplusplus 10 | choco install fiddler4 11 | choco install git-credential-winstore 12 | choco install git 13 | choco install poshgit 14 | choco install gitextensions 15 | choco install NugetPackageExplorer 16 | choco install githubforwindows 17 | choco install PowerGUI 18 | choco install powershell 19 | choco install kdiff3 20 | choco install markdownpad2 21 | choco install 7zip 22 | choco install 7zip.CommandLine 23 | choco install pester 24 | choco install psake -source http://packages.nuget.org/v1/FeedService.svc/ 25 | 26 | choco install NetFx3 -source windowsfeatures 27 | 28 | choco install VisualStudio2013Premium -InstallArguments "Blend WebTools Win8SDK SilverLight_Developer_Kit WindowsPhone80" 29 | choco install VS2013.1 30 | 31 | choco install gep13.DefaultConfig -source https://www.myget.org/F/gep13 32 | choco install gep13.gitConfig -source https://www.myget.org/F/gep13 33 | choco install gep13.vs2013extensions -source https://www.myget.org/F/gep13 34 | 35 | # fix the "WARNING: Could not find ssh-agent" in PowerShell console as per here: 36 | # http://stackoverflow.com/questions/7470385/git-in-powershell-saying-could-not-find-ssh-agent 37 | $currentPathVariable = [environment]::GetEnvironmentVariable("PATH", "Machine") 38 | [System.Environment]::SetEnvironmentVariable("PATH", $currentPathVariable + ";C:\Program Files (x86)\Git\bin", "Machine") 39 | 40 | if(!(Test-Path "c:\codeplex")) { 41 | New-Item -Type Directory "C:\codeplex" 42 | } 43 | 44 | cd "C:\codeplex" 45 | 46 | if(!(Test-Path "c:\codeplex\boxstarter")){ 47 | git clone https://git01.codeplex.com/forks/gep13/boxstarter 48 | } 49 | 50 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Notepad++\notepad++.exe" 51 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files\Internet Explorer\iexplore.exe" 52 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" 53 | 54 | # Enable Nuget Package Restore 55 | choco install NuGetEnablePackageRestore -source https://www.nuget.org/api/v2/ 56 | 57 | choco install gep13.WindowsUpdate -source https://www.myget.org/F/gep13 58 | 59 | Update-Help 60 | -------------------------------------------------------------------------------- /gep13.vs2012extensions/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Install-ChocolateyVsixPackage "Gister" "http://visualstudiogallery.msdn.microsoft.com/b31916b0-c026-4c27-9d6b-ba831093f6b2/file/62080/3/Gister.vsix" 2 | Install-ChocolateyVsixPackage "NuGet Package Manager" "http://visualstudiogallery.msdn.microsoft.com/27077b70-9dad-4c64-adcf-c7cf6bc9970c/file/37502/28/NuGet.Tools.vsix" 3 | Install-ChocolateyVsixPackage "PowerCommands for Visual Studio 2010" "http://visualstudiogallery.msdn.microsoft.com/e5f41ad9-4edc-4912-bca3-91147db95b99/file/7088/6/PowerCommands.vsix" 4 | Install-ChocolateyVsixPackage "Web Essentials 2012" "http://visualstudiogallery.msdn.microsoft.com/07d54d12-7133-4e15-becb-6f451ea3bea6/file/79465/39/WebEssentials2012.vsix" 5 | Install-ChocolateyVsixPackage "Visual Studio 2012 Color Theme Editor" "http://visualstudiogallery.msdn.microsoft.com/366ad100-0003-4c9a-81a8-337d4e7ace05/file/82992/3/ColorThemeEditor.vsix" 6 | Install-ChocolateyVsixPackage "VSCommands for Visual Studio 2012" "http://visualstudiogallery.msdn.microsoft.com/a83505c6-77b3-44a6-b53b-73d77cba84c8/file/74740/21/SquaredInfinity.VSCommands.VS11.vsix" 7 | Install-ChocolateyVsixPackage "Spell Checker" "http://visualstudiogallery.msdn.microsoft.com/7c8341f1-ebac-40c8-92c2-476db8d523ce/file/15808/10/SpellChecker.vsix" 8 | Install-ChocolateyVsixPackage "devColor" "http://visualstudiogallery.msdn.microsoft.com/7dbae8b3-5812-490e-913e-7bfe17f47f1d/file/29587/13/donmar.devColor.vsix" 9 | Install-ChocolateyVsixPackage "MultiEditing" "http://visualstudiogallery.msdn.microsoft.com/2beb9705-b568-45d1-8550-751e181e3aef/file/93630/4/MultiEdit.vsix" 10 | Install-ChocolateyVsixPackage "Productivity Power Tools 2012" "http://visualstudiogallery.msdn.microsoft.com/3a96a4dc-ba9c-4589-92c5-640e07332afd/file/88404/2/ProPowerTools.vsix" 11 | Install-ChocolateyVsixPackage "PowerShell Tools for Visual Studio" "http://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/112013/5/PowerShellTools.vsix" 12 | Install-ChocolateyVsixPackage "Visual Studio Spell Checker" "http://visualstudiogallery.msdn.microsoft.com/a23de100-31a1-405c-b4b7-d6be40c3dfff/file/104494/2/VSSpellCheckerPackage.vsix" 13 | Install-ChocolateyVsixPackage "Regionator" "http://visualstudiogallery.msdn.microsoft.com/646f2de1-f421-4aa8-be18-8996abfb40a7/file/128005/4/RegionatorExtension.vsix" 14 | Install-ChocolateyVsixPackage "Ref12" "http://visualstudiogallery.msdn.microsoft.com/f89b27c5-7d7b-4059-adde-7ccc709fa86e/file/125016/4/Ref12.vsix" 15 | Install-ChocolateyVsixPackage "StopOnFirstBuildError" "http://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/3/StopOnFirstBuildError.vsix" 16 | Install-ChocolateyVsixPackage "CodeMaid" "http://visualstudiogallery.msdn.microsoft.com/76293c4d-8c16-4f4a-aee6-21f83a571496/file/9356/23/CodeMaid_v0.7.0.vsix" 17 | Install-ChocolateyVsixPackage "ClipboardDiff" "http://visualstudiogallery.msdn.microsoft.com/a7519ab0-6029-49f3-9243-a74d1718a5bb/file/49749/4/ClipboardDiff.vsix" -------------------------------------------------------------------------------- /gep13.vs2015extensions/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Install-ChocolateyVsixPackage "Web Essentials 2015.0 RC" "https://visualstudiogallery.msdn.microsoft.com/ee6e6d8c-c837-41fb-886a-6b50ae2d06a2/file/146119/17/Web%20Essentials%202015.0%20RC%20v0.4.107.vsix" 2 | Install-ChocolateyVsixPackage "StopOnFirstBuildError" "https://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/7/StopOnFirstBuildError.vsix" 3 | Install-ChocolateyVsixPackage "SideWaffle Template Pack" "http://visualstudiogallery.msdn.microsoft.com/a16c2d07-b2e1-4a25-87d9-194f04e7a698/referral/110630" 4 | Install-ChocolateyVsixPackage "Ref12" "https://visualstudiogallery.msdn.microsoft.com/f89b27c5-7d7b-4059-adde-7ccc709fa86e/file/125016/11/Ref12.vsix" 5 | Install-ChocolateyVsixPackage "VSColorOutput" "https://visualstudiogallery.msdn.microsoft.com/f4d9c2b5-d6d7-4543-a7a5-2d7ebabc2496/file/63103/9/VSColorOutput.vsix" 6 | Install-ChocolateyVsixPackage "Add New File" "https://visualstudiogallery.msdn.microsoft.com/3f820e99-6c0d-41db-aa74-a18d9623b1f3/file/140782/17/Add%20New%20File%20v2.1.39.vsix" 7 | Install-ChocolateyVsixPackage "NuGet Reference Switcher" "https://visualstudiogallery.msdn.microsoft.com/e2458c0b-03c0-47a9-a94b-0d28567e0a84/file/159417/1/NuGetReferenceSwitcher.vsix" 8 | Install-ChocolateyVsixPackage "Image Optimizer" "https://visualstudiogallery.msdn.microsoft.com/a56eddd3-d79b-48ac-8c8f-2db06ade77c3/file/38601/23/Image%20Optimizer%20v3.0.25.vsix" 9 | Install-ChocolateyVsixPackage "AutoHistory " "https://visualstudiogallery.msdn.microsoft.com/dfcb2438-180c-4f8a-983b-62d89e141fe3/file/122993/3/Microsoft.VisualStudio.AutoHistory.vsix" 10 | Install-ChocolateyVsixPackage "File Nesting" "https://visualstudiogallery.msdn.microsoft.com/3ebde8fb-26d8-4374-a0eb-1e4e2665070c/file/123284/15/File%20Nesting%20v2.1.20.vsix" 11 | Install-ChocolateyVsixPackage "Error Catcher" "https://visualstudiogallery.msdn.microsoft.com/a85f155f-b519-44a8-b56b-07611cf78393/file/136589/13/Error%20Catcher%20v1.6.28.vsix" 12 | Install-ChocolateyVsixPackage "CssCop - FxCop for Stylesheets" "https://visualstudiogallery.msdn.microsoft.com/a921b98e-9430-4be2-bf53-1169e12bdb50/file/62099/7/CssLint.vsix" 13 | Install-ChocolateyVsixPackage "Open From Azure Websites" "https://visualstudiogallery.msdn.microsoft.com/60d414b1-4ead-4fde-9359-588aa126cd6c/file/151097/4/Open%20From%20Azure%20Websites%20v1.2.37.vsix" 14 | Install-ChocolateyVsixPackage "Trailing Whitespace Visualizer" "https://visualstudiogallery.msdn.microsoft.com/a204e29b-1778-4dae-affd-209bea658a59/file/135653/17/Trailing%20Whitespace%20Visualizer%20v2.0.51.vsix" 15 | Install-ChocolateyVsixPackage "Open Command Line" "https://visualstudiogallery.msdn.microsoft.com/4e84e2cf-2d6b-472a-b1e2-b84932511379/file/151803/12/Open%20Command%20Line%20v1.7.121.vsix" 16 | Install-ChocolateyVsixPackage "Flatten Packages" "https://visualstudiogallery.msdn.microsoft.com/cd0b1938-4513-4e57-b9b7-c674b4a20e79/file/157954/7/Flatten%20Packages%20v1.0.8.vsix" 17 | Install-ChocolateyVsixPackage "Developer Assistant" "https://visualstudiogallery.msdn.microsoft.com/5d01e3bd-6433-47f2-9c6d-a9da52d172cc/file/150980/4/DeveloperAssistant_2015.vsix" 18 | Install-ChocolateyVsixPackage "EditorConfig" "https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328/file/75539/12/EditorConfigPlugin.vsix" 19 | Install-ChocolateyVsixPackage "BetterStartPage" "https://visualstudiogallery.msdn.microsoft.com/8da4b080-2ad6-47fd-a1ff-4e7cc185523b/file/146177/8/BetterStartPage.vsix" 20 | Install-ChocolateyVsixPackage "Reopen Start Page" "https://visualstudiogallery.msdn.microsoft.com/e64380ab-e3aa-4ac7-aa11-95719c5c91e9/file/169737/1/VSReopenStartPage.vsix" 21 | Install-ChocolateyVsixPackage "GitFlow for Visual Studio 2015" "https://visualstudiogallery.msdn.microsoft.com/f5ae0a1d-005f-4a09-a19c-3f46ff30400a/file/154275/6/GitFlowVS.2015.vsix" -------------------------------------------------------------------------------- /gep13.NUnitRunner/build/gep13.NUnitRunner.targets: -------------------------------------------------------------------------------- 1 | $(OutDir)_PublishedNUnitTests\$(MSBuildProjectName) $(PrepareForRunDependsOn); _CopyNUnitTests -------------------------------------------------------------------------------- /gep13.xUnitRunner/build/gep13.xUnitRunner.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(OutDir)_PublishedxUnitTests\$(MSBuildProjectName) 5 | 6 | 7 | 8 | 9 | $(PrepareForRunDependsOn); 10 | CopyxUnitTests 11 | 12 | 13 | 14 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /gep13.MSTestRunner/build/gep13.MSTestRunner.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | $(OutDir)_PublishedMSTestTests\$(MSBuildProjectName) 5 | 6 | 7 | 8 | 9 | $(PrepareForRunDependsOn); 10 | _CopyMSTestTests 11 | 12 | 13 | 14 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | -------------------------------------------------------------------------------- /gep13.vs2013extensions/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | Install-ChocolateyVsixPackage "PowerShell Tools for Visual Studio" "https://visualstudiogallery.msdn.microsoft.com/c9eb3ba8-0c59-4944-9a62-6eee37294597/file/160501/1/PowerShellTools.vsix" 2 | Install-ChocolateyVsixPackage "Web Essentials 2013" "https://visualstudiogallery.msdn.microsoft.com/56633663-6799-41d7-9df7-0f2a504ca361/file/105627/44/WebEssentials2013.vsix" 3 | Install-ChocolateyVsixPackage "StopOnFirstBuildError" "https://visualstudiogallery.msdn.microsoft.com/91aaa139-5d3c-43a7-b39f-369196a84fa5/file/44205/7/StopOnFirstBuildError.vsix" 4 | Install-ChocolateyVsixPackage "SideWaffle Template Pack" "https://visualstudiogallery.msdn.microsoft.com/a16c2d07-b2e1-4a25-87d9-194f04e7a698/referral/110630" 5 | Install-ChocolateyVsixPackage "Ref12" "https://visualstudiogallery.msdn.microsoft.com/f89b27c5-7d7b-4059-adde-7ccc709fa86e/file/125016/12/Ref12.vsix" 6 | Install-ChocolateyVsixPackage "VSColorOutput" "https://visualstudiogallery.msdn.microsoft.com/f4d9c2b5-d6d7-4543-a7a5-2d7ebabc2496/file/63103/9/VSColorOutput.vsix" 7 | Install-ChocolateyVsixPackage "Add New File" "https://visualstudiogallery.msdn.microsoft.com/3f820e99-6c0d-41db-aa74-a18d9623b1f3/file/140782/17/Add%20New%20File%20v2.1.39.vsix" 8 | Install-ChocolateyVsixPackage "NuGet Reference Switcher" "https://visualstudiogallery.msdn.microsoft.com/68878c27-110c-43ec-ae61-3ea3f7aae88c/file/140063/12/NuGetReferenceSwitcher.vsix" 9 | Install-ChocolateyVsixPackage "Image Optimizer" "https://visualstudiogallery.msdn.microsoft.com/a56eddd3-d79b-48ac-8c8f-2db06ade77c3/file/38601/23/Image%20Optimizer%20v3.0.25.vsix" 10 | Install-ChocolateyVsixPackage "AutoHistory " "https://visualstudiogallery.msdn.microsoft.com/dfcb2438-180c-4f8a-983b-62d89e141fe3/file/122993/3/Microsoft.VisualStudio.AutoHistory.vsix" 11 | Install-ChocolateyVsixPackage "File Nesting" "https://visualstudiogallery.msdn.microsoft.com/3ebde8fb-26d8-4374-a0eb-1e4e2665070c/file/123284/15/File%20Nesting%20v2.1.20.vsix" 12 | Install-ChocolateyVsixPackage "Error Catcher" "https://visualstudiogallery.msdn.microsoft.com/a85f155f-b519-44a8-b56b-07611cf78393/file/136589/13/Error%20Catcher%20v1.6.28.vsix" 13 | Install-ChocolateyVsixPackage "SlowCheetah - XML Transforms" "https://visualstudiogallery.msdn.microsoft.com/69023d00-a4f9-4a34-a6cd-7e854ba318b5/file/55948/26/SlowCheetah.vsix" 14 | Install-ChocolateyVsixPackage "Visual Studio Auto Updater" "https://visualstudiogallery.msdn.microsoft.com/14973bbb-8e00-4cab-a8b4-415a38d78615/file/150147/10/ExtensionUpdater.vsix" 15 | Install-ChocolateyVsixPackage "CssCop - FxCop for Stylesheets" "https://visualstudiogallery.msdn.microsoft.com/a921b98e-9430-4be2-bf53-1169e12bdb50/file/62099/7/CssLint.vsix" 16 | Install-ChocolateyVsixPackage "Open From Azure Websites" "https://visualstudiogallery.msdn.microsoft.com/60d414b1-4ead-4fde-9359-588aa126cd6c/file/151097/4/Open%20From%20Azure%20Websites%20v1.2.37.vsix" 17 | Install-ChocolateyVsixPackage "Trailing Whitespace Visualizer" "https://visualstudiogallery.msdn.microsoft.com/a204e29b-1778-4dae-affd-209bea658a59/file/135653/17/Trailing%20Whitespace%20Visualizer%20v2.0.51.vsix" 18 | Install-ChocolateyVsixPackage "GitHub Extension" "https://visualstudiogallery.msdn.microsoft.com/e4ba5ebd-bcd5-4e20-8375-bb8cbdd71d7e/file/148389/5/Alteridem.GitHub.Extension.vsix" 19 | Install-ChocolateyVsixPackage "MVVM Light for VS2013" "https://visualstudiogallery.msdn.microsoft.com/2f214591-4162-4e41-9908-8bf88282968e/file/143801/4/MvvmLight.VS2013.vsix" 20 | Install-ChocolateyVsixPackage "Open Command Line" "https://visualstudiogallery.msdn.microsoft.com/4e84e2cf-2d6b-472a-b1e2-b84932511379/file/151803/12/Open%20Command%20Line%20v1.7.121.vsix" 21 | Install-ChocolateyVsixPackage "YAML Editor" "https://visualstudiogallery.msdn.microsoft.com/34423c06-f756-4721-8394-bc3d23b91ca7/file/101669/10/YamlDotNetEditor.vsix" 22 | Install-ChocolateyVsixPackage "Flatten Packages" "https://visualstudiogallery.msdn.microsoft.com/cd0b1938-4513-4e57-b9b7-c674b4a20e79/file/157954/7/Flatten%20Packages%20v1.0.8.vsix" 23 | Install-ChocolateyVsixPackage "Developer Assistant" "https://visualstudiogallery.msdn.microsoft.com/a1166718-a2d9-4a48-a5fd-504ff4ad1b65/file/125117/17/DeveloperAssistant_2013.vsix" 24 | Install-ChocolateyVsixPackage "EditorConfig" "https://visualstudiogallery.msdn.microsoft.com/c8bccfe2-650c-4b42-bc5c-845e21f96328/file/75539/12/EditorConfigPlugin.vsix" 25 | Install-ChocolateyVsixPackage "GitFlow for Visual Studio" "https://visualstudiogallery.msdn.microsoft.com/27f6d087-9b6f-46b0-b236-d72907b54683/file/154064/7/GitFlowVS.2013.vsix" -------------------------------------------------------------------------------- /gep13.ChocolateyDev/tools/ChocolateyInstall.ps1: -------------------------------------------------------------------------------- 1 | choco install IIS-WebServerRole -source windowsfeatures 2 | choco install IIS-HttpCompressionDynamic -source windowsfeatures 3 | choco install TelnetClient -source windowsFeatures 4 | 5 | choco install GoogleChrome 6 | choco install Firefox 7 | choco install dotPeek 8 | choco install filezilla 9 | choco install notepadplusplus 10 | choco install fiddler4 11 | choco install git-credential-winstore 12 | choco install git 13 | choco install poshgit 14 | choco install gitextensions 15 | choco install NugetPackageExplorer 16 | choco install ChocolateyGUI 17 | choco install githubforwindows 18 | choco install PowerGUI 19 | choco install powershell 20 | choco install kdiff3 21 | choco install markdownpad2 22 | choco install 7zip 23 | choco install wixtoolset 24 | 25 | choco install NetFx3 -source windowsfeatures 26 | 27 | choco install VS2010PremiumMsdn -source https://www.myget.org/F/gep13 28 | 29 | choco install gep13.aspnetmvc -source https://www.myget.org/F/gep13 30 | choco install IISExpress -source webpi 31 | 32 | choco install VisualStudio2013Premium -InstallArguments "Blend WebTools Win8SDK SilverLight_Developer_Kit WindowsPhone80" 33 | 34 | choco install gep13.DefaultConfig -source https://www.myget.org/F/gep13 35 | choco install gep13.gitConfig -source https://www.myget.org/F/gep13 36 | choco install gep13.vs2010extensions -source https://www.myget.org/F/gep13 37 | choco install gep13.vs2013extensions -source https://www.myget.org/F/gep13 38 | 39 | # fix the "WARNING: Could not find ssh-agent" in PowerShell console as per here: 40 | # http://stackoverflow.com/questions/7470385/git-in-powershell-saying-could-not-find-ssh-agent 41 | $currentPathVariable = [environment]::GetEnvironmentVariable("PATH", "Machine") 42 | [System.Environment]::SetEnvironmentVariable("PATH", $currentPathVariable + ";C:\Program Files (x86)\Git\bin", "Machine") 43 | 44 | if(!(Test-Path "c:\github")) { 45 | New-Item -Type Directory "C:\github" 46 | } 47 | 48 | if(!(Test-Path "c:\github\organisations")) { 49 | New-Item -Type Directory "C:\github\organisations" 50 | } 51 | 52 | cd "C:\github\organisations" 53 | 54 | if(!(Test-Path "c:\github\organisations\chocolatey-coreteampackages")){ 55 | git clone https://github.com/chocolatey/chocolatey-coreteampackages.git 56 | } 57 | 58 | if(!(Test-Path "c:\github\organisations\chocolatey.org")){ 59 | git clone https://github.com/chocolatey/chocolatey.org.git 60 | } 61 | 62 | if(!(Test-Path "c:\github\organisations\chocolatey-webhooks")){ 63 | git clone https://github.com/chocolatey/chocolatey-webhooks.git 64 | } 65 | 66 | if(!(Test-Path "c:\github\organisations\puppet-chocolatey")){ 67 | git clone https://github.com/chocolatey/puppet-chocolatey.git 68 | } 69 | 70 | if(!(Test-Path "c:\github\organisations\puppet-chocolatey-handsonlab")){ 71 | git clone https://github.com/chocolatey/puppet-chocolatey-handsonlab.git 72 | } 73 | 74 | if(!(Test-Path "c:\github\organisations\chocolatey")){ 75 | git clone https://github.com/chocolatey/chocolatey.git 76 | } 77 | 78 | if(!(Test-Path "c:\github\organisations\chocolateytemplates")){ 79 | git clone https://github.com/chocolatey/chocolateytemplates.git 80 | } 81 | 82 | if(!(Test-Path "c:\github\organisations\chocolatey.github.com")){ 83 | git clone https://github.com/chocolatey/chocolatey.github.com.git 84 | } 85 | 86 | if(!(Test-Path "c:\github\organisations\chocolatey-cookbook")){ 87 | git clone https://github.com/chocolatey/chocolatey-cookbook.git 88 | } 89 | 90 | if(!(Test-Path "c:\github\organisations\chocolatey.web")){ 91 | git clone https://github.com/chocolatey/chocolatey.web.git 92 | } 93 | 94 | if(!(Test-Path "c:\github\organisations\ChocolateyGUI")){ 95 | git clone https://github.com/chocolatey/ChocolateyGUI.git 96 | } 97 | 98 | # My Repos 99 | cd "c:\github" 100 | 101 | if(!(Test-Path "c:\github\ChocolateyPackages")){ 102 | git clone https://github.com/gep13/ChocolateyPackages.git 103 | } 104 | 105 | if(!(Test-Path "c:\github\ChocolateyAutomaticPackages")){ 106 | git clone https://github.com/gep13/ChocolateyAutomaticPackages.git 107 | } 108 | 109 | if(!(Test-Path "C:\github\chocolatey")) { 110 | git clone https://github.com/gep13/chocolatey.git 111 | } 112 | 113 | if(!(Test-Path "C:\github\chocolatey.org")) { 114 | git clone https://github.com/gep13/chocolatey.org.git 115 | } 116 | 117 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Notepad++\notepad++.exe" 118 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files\Internet Explorer\iexplore.exe" 119 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Microsoft Visual Studio 10.0\Common7\IDE\devenv.exe" 120 | Install-ChocolateyPinnedTaskBarItem "C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\IDE\devenv.exe" 121 | 122 | # Enable Nuget Package Restore 123 | choco install NuGetEnablePackageRestore -source https://www.nuget.org/api/v2/ 124 | 125 | choco install gep13.WindowsUpdate -source https://www.myget.org/F/gep13 126 | 127 | Update-Help -------------------------------------------------------------------------------- /gep13.ApplicationRunner/build/gep13.ApplicationRunner.targets: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Exe 5 | Web 6 | Library 7 | 8 | $(OutDir)_PublishedApplications\$(MSBuildProjectName) 9 | $(OutDir)_PublishedLibraries\$(MSBuildProjectName) 10 | 11 | 12 | 13 | 14 | $(PrepareForRunDependsOn); 15 | CopyApplications; 16 | CopyLibraries; 17 | 18 | 19 | 20 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | --------------------------------------------------------------------------------