Skip to content
This repository has been archived by the owner on Mar 16, 2022. It is now read-only.

Commit

Permalink
Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
guitarrapc committed May 8, 2016
1 parent 3c2286c commit 8cbad2a
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions CSharpCompilerSlackOuthookCSharp/run.csx
@@ -1,7 +1,7 @@
#load "..\EnumerableExtensions.csx"

#r "System.Web"
#r "MyExtentions.dll"
#r "MyExtensions.dll"

using System;
using System.Collections.Generic;
Expand All @@ -12,7 +12,7 @@ using System.Reflection;
using System.Threading.Tasks;
using System.Web;
using Newtonsoft.Json;
using MyExtentions;
using MyExtensions;

private const string TRIGGER_WORD = "@C#:";
private const string SlackWebhookUrl = "Input your Slack Notification Azure Functions Url";
Expand Down
4 changes: 2 additions & 2 deletions CSharpCompilerWebhookCSharp/run.csx
@@ -1,5 +1,5 @@
#load "..\CSharpScripting.csx"
#r "MyExtentions.dll"
#r "MyExtensions.dll"

using System;
using System.Collections.Generic;
Expand All @@ -10,7 +10,7 @@ using System.Threading.Tasks;
using Newtonsoft.Json;
using Microsoft.CodeAnalysis.Scripting;
using Microsoft.CodeAnalysis.CSharp.Scripting;
using MyExtentions;
using MyExtensions;

public static async Task<object> Run(HttpRequestMessage req, TraceWriter log)
{
Expand Down
4 changes: 2 additions & 2 deletions CSharpScripting.csx
Expand Up @@ -14,7 +14,7 @@ using System.Threading.Tasks;
using Newtonsoft.Json;
using Microsoft.CodeAnalysis.Scripting;
using Microsoft.CodeAnalysis.CSharp.Scripting;
using MyExtentions;
using MyExtensions;

private static readonly string[] DefaultImports =
{
Expand All @@ -28,7 +28,7 @@ private static readonly string[] DefaultImports =
"System.Net.Http",
"System.Threading",
"System.Threading.Tasks",
"MyExtentions",
"MyExtensions",
};

private static readonly Assembly[] DefaultReferences =
Expand Down

0 comments on commit 8cbad2a

Please sign in to comment.