diff --git a/FilterLists.sln b/FilterLists.sln index 9c4c9dd7a..dd2fa64f4 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.26430.14 +VisualStudioVersion = 15.0.27004.2005 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 @@ -23,6 +23,10 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "scripts", "scripts", "{E2F4 EndProject Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "FilterLists.DataLoad", "src\FilterLists.DataLoad\FilterLists.DataLoad.csproj", "{B507EE76-B035-45D7-9D26-DF38A5013BC3}" EndProject +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FilterLists.Services.Tests", "tests\FilterLists.Services.Tests\FilterLists.Services.Tests.csproj", "{E5489C3B-A7AE-440B-8017-DA5550C11A37}" +EndProject +Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{378861FC-4C64-4676-9FA8-04A053219EA5}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -45,6 +49,10 @@ Global {B507EE76-B035-45D7-9D26-DF38A5013BC3}.Debug|Any CPU.Build.0 = Debug|Any CPU {B507EE76-B035-45D7-9D26-DF38A5013BC3}.Release|Any CPU.ActiveCfg = Release|Any CPU {B507EE76-B035-45D7-9D26-DF38A5013BC3}.Release|Any CPU.Build.0 = Release|Any CPU + {E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E5489C3B-A7AE-440B-8017-DA5550C11A37}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E5489C3B-A7AE-440B-8017-DA5550C11A37}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE @@ -55,5 +63,9 @@ Global {9F296ECF-97C9-47E6-A794-5AD900ECFE6C} = {E7590A2B-621D-47EA-B026-315793F0FE50} {E2F4C0A9-CA4D-4A11-8B10-899513E777F8} = {6EF78534-FCFD-4918-91AA-316D8AA951AA} {B507EE76-B035-45D7-9D26-DF38A5013BC3} = {E7590A2B-621D-47EA-B026-315793F0FE50} + {E5489C3B-A7AE-440B-8017-DA5550C11A37} = {378861FC-4C64-4676-9FA8-04A053219EA5} + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {8A31B449-52DD-4445-A9C4-033A24E25308} EndGlobalSection EndGlobal diff --git a/tests/FilterLists.Services.Tests/FilterLists.Services.Tests.csproj b/tests/FilterLists.Services.Tests/FilterLists.Services.Tests.csproj new file mode 100644 index 000000000..e542a8acc --- /dev/null +++ b/tests/FilterLists.Services.Tests/FilterLists.Services.Tests.csproj @@ -0,0 +1,12 @@ + + + + netcoreapp2.0 + false + + + + + + + \ No newline at end of file diff --git a/tests/FilterLists.Services.Tests/ListServiceTests.cs b/tests/FilterLists.Services.Tests/ListServiceTests.cs new file mode 100644 index 000000000..66d193645 --- /dev/null +++ b/tests/FilterLists.Services.Tests/ListServiceTests.cs @@ -0,0 +1,13 @@ +using Xunit; + +namespace FilterLists.Services.Tests +{ + public class ListServiceTests + { + [Fact] + public void Test1() + { + + } + } +} \ No newline at end of file