From 7ca785e55f3f9b35f0ecd24a5015b45c3a3e8cce Mon Sep 17 00:00:00 2001 From: "Collin M. Barrett" Date: Thu, 8 Feb 2018 16:55:12 -0600 Subject: [PATCH] initial add Agent --- FilterLists.sln | 8 +++++++- src/FilterLists.Agent/FilterLists.Agent.csproj | 8 ++++++++ src/FilterLists.Agent/Program.cs | 12 ++++++++++++ 3 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 src/FilterLists.Agent/FilterLists.Agent.csproj create mode 100644 src/FilterLists.Agent/Program.cs diff --git a/FilterLists.sln b/FilterLists.sln index c48eb5058..b32cf69e3 100644 --- a/FilterLists.sln +++ b/FilterLists.sln @@ -1,6 +1,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00 # Visual Studio 15 -VisualStudioVersion = 15.0.27130.2024 +VisualStudioVersion = 15.0.27130.2026 MinimumVisualStudioVersion = 10.0.40219.1 Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilterLists.Api", "src\FilterLists.Api\FilterLists.Api.csproj", "{57E4CE18-41F3-48F6-B142-12947FFBA86C}" EndProject @@ -32,6 +32,8 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{FCA7 scripts\deploy.sh = scripts\deploy.sh EndProjectSection EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FilterLists.Agent", "src\FilterLists.Agent\FilterLists.Agent.csproj", "{4F39D132-498D-4A93-9F6C-1C604718300D}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -54,6 +56,10 @@ Global {6B3E6765-5B8B-4A23-AD12-7E2BC5F4D2E6}.Debug|Any CPU.Build.0 = Debug|Any CPU {6B3E6765-5B8B-4A23-AD12-7E2BC5F4D2E6}.Release|Any CPU.ActiveCfg = Release|Any CPU {6B3E6765-5B8B-4A23-AD12-7E2BC5F4D2E6}.Release|Any CPU.Build.0 = Release|Any CPU + {4F39D132-498D-4A93-9F6C-1C604718300D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {4F39D132-498D-4A93-9F6C-1C604718300D}.Debug|Any CPU.Build.0 = Debug|Any CPU + {4F39D132-498D-4A93-9F6C-1C604718300D}.Release|Any CPU.ActiveCfg = Release|Any CPU + {4F39D132-498D-4A93-9F6C-1C604718300D}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/FilterLists.Agent/FilterLists.Agent.csproj b/src/FilterLists.Agent/FilterLists.Agent.csproj new file mode 100644 index 000000000..ce1697ae8 --- /dev/null +++ b/src/FilterLists.Agent/FilterLists.Agent.csproj @@ -0,0 +1,8 @@ + + + + Exe + netcoreapp2.0 + + + diff --git a/src/FilterLists.Agent/Program.cs b/src/FilterLists.Agent/Program.cs new file mode 100644 index 000000000..b789fdce4 --- /dev/null +++ b/src/FilterLists.Agent/Program.cs @@ -0,0 +1,12 @@ +using System; + +namespace FilterLists.Agent +{ + class Program + { + static void Main(string[] args) + { + Console.WriteLine("Hello World!"); + } + } +} \ No newline at end of file