π
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; | |
| using System.Net; | |
| using System.Threading; | |
| using JabbR.Client.Models; | |
| namespace JabbR.Client.Sample | |
| { | |
| class Program | |
| { |
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
| public class SpringloopsHandler : ServiceHookHandlerBase | |
| { | |
| public override DeployAction TryParseDeploymentInfo(HttpRequestBase request, JObject payload, string targetBranch, out DeploymentInfo deploymentInfo) | |
| { | |
| string deployer = payload.Value<string>("domain"); | |
| if (!"springloops.io".Equals(deployer, StringComparison.OrdinalIgnoreCase)) | |
| { | |
| deploymentInfo = null; | |
| return DeployAction.UnknownPayload; | |
| } |
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
| <jslint> | |
| <file name="App/app.ts"> | |
| <issue line="1" char="13" reason="missing whitespace"/> | |
| <issue line="2" char="5" reason="comment must start with a space"/> | |
| </file> | |
| <file name="App/some-folder/data.ts"> | |
| <issue line="1" char="13" reason="missing whitespace"/> | |
| <issue line="2" char="19" reason="missing whitespace"/> | |
| <issue line="2" char="20" reason="missing whitespace"/> | |
| <issue line="2" char="21" reason="expected variableDeclarator: 'SOME_VARIABLE' to have a typedef."/> |
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
| param($installPath, $toolsPath, $package, $project) | |
| . (Join-Path $toolsPath "GetNancyRazorBuildProviderPostBuildCmd.ps1") | |
| # Get the current Post Build Event cmd | |
| $currentPostBuildCmd = $project.Properties.Item("PostBuildEvent").Value | |
| # Append our post build command if it's not already there | |
| if (!$currentPostBuildCmd.Contains($NancyRazorBuildProviderPostBuildCmd)) { | |
| $project.Properties.Item("PostBuildEvent").Value += $NancyRazorBuildProviderPostBuildCmd |
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
| param($installPath, $toolsPath, $package, $project) | |
| # This is the MSBuild targets file to add | |
| $targetsFile = [System.IO.Path]::Combine($toolsPath, $package.Id + '.targets') | |
| # Need to load MSBuild assembly if it's not loaded yet. | |
| Add-Type -AssemblyName 'Microsoft.Build, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' | |
| # Grab the loaded MSBuild project for the project | |
| # Normalize project path before calling GetLoadedProjects as it performs a string based match | |
| $msbuild = [Microsoft.Build.Evaluation.ProjectCollection]::GlobalProjectCollection.GetLoadedProjects([System.IO.Path]::GetFullPath($project.FullName)) | Select-Object -First 1 |
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; | |
| using System.Diagnostics.Contracts; | |
| using System.Linq; | |
| namespace Merkator.Tools | |
| { | |
| public class ArrayHelpers | |
| { | |
| public static T[] ConcatArrays<T>(params T[][] arrays) | |
| { |
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
| Windows Registry Editor Version 5.00 | |
| [HKEY_CURRENT_USER\Console] | |
| "ColorTable00"=dword:003e4849 | |
| "ColorTable01"=dword:00969483 | |
| "ColorTable02"=dword:002ee2a6 | |
| "ColorTable03"=dword:00efd966 | |
| "ColorTable04"=dword:007226f9 | |
| "ColorTable05"=dword:007226f9 | |
| "ColorTable06"=dword:0074dbe6 |
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"?> | |
| <configuration xmlns:xdt="http://schemas.microsoft.com/XML-Document-Transform"> | |
| <location path="%XDT_SITENAME%" xdt:Transform="InsertIfMissing" xdt:Locator="Match(path)"> | |
| <system.webServer xdt:Transform="InsertIfMissing"> | |
| <applicationInitialization xdt:Transform="InsertIfMissing"> | |
| <add initializationPage="/" xdt:Transform="InsertIfMissing" /> | |
| </applicationInitialization> | |
| <httpProtocol xdt:Transform="InsertIfMissing"> | |
| <customHeaders xdt:Transform="InsertIfMissing"> |
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
| root = true | |
| [*] | |
| charset = utf-8 | |
| end_of_line = crlf | |
| insert_final_newline = true | |
| indent_size = 4 | |
| indent_style = space | |
| trim_trailing_whitespace = true |
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.Data.Entity.Validation; | |
| using System.Linq; | |
| using Microsoft.ApplicationInsights.Channel; | |
| using Microsoft.ApplicationInsights.DataContracts; | |
| using Microsoft.ApplicationInsights.Extensibility; | |
| public class EntityFrameworkExceptionTelemetryInitializer : ITelemetryInitializer | |
| { | |
| public void Initialize(ITelemetry telemetry) |
OlderNewer