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
<code-sample> | |
<ul> | |
<li>list item 1</li> | |
<li>list item 2</li> | |
<li>list item 3</li> | |
</ul> | |
<p>a paragraph</p> | |
</code-sample> |
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
using System; | |
public class Program | |
{ | |
public static void Main() | |
{ | |
var p = new Program(); | |
var perms = p.GetPermutations(new int[] {1,2,3,4}); | |
foreach(var perm in perms) | |
{ |
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
<?xml version="1.0" encoding="utf-8"?> | |
<Project ToolsVersion="3.5" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<ItemGroup> | |
<TheParentProj Include="$(ParentProj)" /> | |
</ItemGroup> | |
<!-- This is the entry point for this msbuild project. --> | |
<Target Name="ContentFiles"> |
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
:: 2. Copy only Content files (generally static) without a build. | |
call :ExecuteCmd "%MSBUILD_PATH%" "%DEPLOYMENT_SOURCE%\StaticContentOnly.csproj" /p:ParentProj="%DEPLOYME NT_SOURCE%\MyWebApp\MyWebApp.csproj" /p:_PackageTempDir="%DEPLOYMENT_TEMP%" /p:VisualStudioVersion=14.0 |
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
:: 2. Build to the temporary path | |
IF /I "%IN_PLACE_DEPLOYMENT%" NEQ "1" ( | |
call :ExecuteCmd "%MSBUILD_PATH%" "%DEPLOYMENT_SOURCE%\MyWebApp\MyWebApp.csproj" /nologo /verbosity:m /t: Build /t:pipelinePreDeployCopyAllFilesToOneFolder /p:_PackageTempDir="%DEPLOYMENT_TEMP%";AutoParameterizati onWebConfigConnectionStrings=false;Configuration=Release /p:SolutionDir="%DEPLOYMENT_SOURCE%\.\\" %SCM_BUIL D_ARGS% | |
) ELSE ( | |
call :ExecuteCmd "%MSBUILD_PATH%" "%DEPLOYMENT_SOURCE%\MyWebApp\MyWebApp.csproj" /nologo /verbosity:m /t: Build /p:AutoParameterizationWebConfigConnectionStrings=false;Configuration=Release /p:SolutionDir="%DEPLOY MENT_SOURCE%\.\\" %SCM_BUILD_ARGS% | |
) |
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
- [spacebar], continue --more-- | |
- [q], quit the --more-- | |
- [ctrl+c], cancel a long print | |
- [right click], copy highlighted text & paste it at a cursor location | |
- [tab], tab completion for commands | |
- [shift+tab], go backward through commands | |
- [up arrow], show last command |
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
choco install 7zip -y | |
choco install anyvideoconverter -y | |
choco install jivkok.autohotkey -y | |
choco install autoruns -y | |
choco install avastfreeantivirus -y | |
choco install conemu -y | |
choco install f.lux -y | |
choco install fiddler -y | |
choco install filezilla -y | |
choco install FoxitReader -y |