aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAryadev Chavali <aryadevchavali1@gmail.com>2019-02-02 13:23:30 +0000
committerAryadev Chavali <aryadevchavali1@gmail.com>2019-02-02 13:23:30 +0000
commit66fb666b859c9705208d90b36d58a2012e591c80 (patch)
tree3488115416088936bc33e607f531c6dce8ee3e11
parent2484f1392b0247e7e7b9509cbacc19d5e830960c (diff)
downloadnewsaggregator-66fb666b859c9705208d90b36d58a2012e591c80.tar.gz
newsaggregator-66fb666b859c9705208d90b36d58a2012e591c80.tar.bz2
newsaggregator-66fb666b859c9705208d90b36d58a2012e591c80.zip
Added projects and solution for Aggregator
-rw-r--r--Aggregator/Aggregator.sln31
-rw-r--r--Aggregator/Classes/Class1.cs6
-rw-r--r--Aggregator/Classes/Classes.csproj7
-rw-r--r--Aggregator/Parser/Class1.cs6
-rw-r--r--Aggregator/Parser/Parser.csproj7
5 files changed, 57 insertions, 0 deletions
diff --git a/Aggregator/Aggregator.sln b/Aggregator/Aggregator.sln
new file mode 100644
index 0000000..66fb4f8
--- /dev/null
+++ b/Aggregator/Aggregator.sln
@@ -0,0 +1,31 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio 15
+VisualStudioVersion = 15.0.28307.271
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Parser", "Parser\Parser.csproj", "{CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}"
+EndProject
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Classes", "Classes\Classes.csproj", "{AB1F3DD4-1B23-427A-8F32-C11EC20A0815}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {CB7E60D1-BA25-46C1-BFCA-83A0897AE26D}.Release|Any CPU.Build.0 = Release|Any CPU
+ {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {AB1F3DD4-1B23-427A-8F32-C11EC20A0815}.Release|Any CPU.Build.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {6AC8D5E7-2740-4651-87BF-1EE3BCBB3004}
+ EndGlobalSection
+EndGlobal
diff --git a/Aggregator/Classes/Class1.cs b/Aggregator/Classes/Class1.cs
new file mode 100644
index 0000000..b122c6a
--- /dev/null
+++ b/Aggregator/Classes/Class1.cs
@@ -0,0 +1,6 @@
+using System;
+
+namespace Classes {
+ public class Class1 {
+ }
+}
diff --git a/Aggregator/Classes/Classes.csproj b/Aggregator/Classes/Classes.csproj
new file mode 100644
index 0000000..86ea3bb
--- /dev/null
+++ b/Aggregator/Classes/Classes.csproj
@@ -0,0 +1,7 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
+ </PropertyGroup>
+
+</Project>
diff --git a/Aggregator/Parser/Class1.cs b/Aggregator/Parser/Class1.cs
new file mode 100644
index 0000000..635f2eb
--- /dev/null
+++ b/Aggregator/Parser/Class1.cs
@@ -0,0 +1,6 @@
+using System;
+
+namespace Parser {
+ public class Class1 {
+ }
+}
diff --git a/Aggregator/Parser/Parser.csproj b/Aggregator/Parser/Parser.csproj
new file mode 100644
index 0000000..86ea3bb
--- /dev/null
+++ b/Aggregator/Parser/Parser.csproj
@@ -0,0 +1,7 @@
+<Project Sdk="Microsoft.NET.Sdk">
+
+ <PropertyGroup>
+ <TargetFramework>netcoreapp2.1</TargetFramework>
+ </PropertyGroup>
+
+</Project>