From f1b57194cc485f13e299c406176c3268eab8d2f7 Mon Sep 17 00:00:00 2001 From: Heejae Chang Date: Fri, 31 Mar 2017 14:00:08 -0700 Subject: [PATCH] add place holder --- .../CSharp/Portable/CSharpCodeAnalysis.csproj | 4 +++- .../Portable/Operations/CSharpOperationFactory.cs | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs diff --git a/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj b/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj index 668e29c0ec4..9d5a65446f9 100644 --- a/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj +++ b/src/Compilers/CSharp/Portable/CSharpCodeAnalysis.csproj @@ -452,6 +452,7 @@ + @@ -867,6 +868,7 @@ + - + \ No newline at end of file diff --git a/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs b/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs new file mode 100644 index 00000000000..c1000b0e476 --- /dev/null +++ b/src/Compilers/CSharp/Portable/Operations/CSharpOperationFactory.cs @@ -0,0 +1,12 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace Microsoft.CodeAnalysis.CSharp.Operations +{ + class CSharpOperationFactory + { + } +} -- GitLab