From a781ae1e5bbda0a0f72cdb70233461f03b8e4426 Mon Sep 17 00:00:00 2001 From: Alexandre Mutel Date: Mon, 5 Oct 2020 07:57:16 +0200 Subject: [PATCH] Change tests to exe --- src/Markdig.Tests/Markdig.Tests.csproj | 5 +++-- src/Markdig.Tests/Program.cs | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+), 2 deletions(-) create mode 100644 src/Markdig.Tests/Program.cs diff --git a/src/Markdig.Tests/Markdig.Tests.csproj b/src/Markdig.Tests/Markdig.Tests.csproj index 13555a271..5033a3de8 100644 --- a/src/Markdig.Tests/Markdig.Tests.csproj +++ b/src/Markdig.Tests/Markdig.Tests.csproj @@ -1,9 +1,10 @@ - net452;netcoreapp2.1;netcoreapp3.1 - Library + netcoreapp3.1 + Exe false + Markdig.Tests.Program diff --git a/src/Markdig.Tests/Program.cs b/src/Markdig.Tests/Program.cs new file mode 100644 index 000000000..564e9a9ea --- /dev/null +++ b/src/Markdig.Tests/Program.cs @@ -0,0 +1,19 @@ +// Copyright (c) Alexandre Mutel. All rights reserved. +// This file is licensed under the BSD-Clause 2 license. +// See the license.txt file in the project root for more information. + +using System; + +namespace Markdig.Tests +{ + class Program + { + public static void Main(string[] args) + { + Console.WriteLine("Run NUnit tests runner with this"); + // Uncomment the following line to debug a specific tests more easily + //var tests = new Specs.CommonMarkV_0_29.TestLeafBlocksSetextHeadings(); + //tests.LeafBlocksSetextHeadings_Example063(); + } + } +} \ No newline at end of file