WireMock.Net.StandAlone (#31)

This commit is contained in:
Stef Heyenrath
2017-06-10 09:44:58 +02:00
parent b56fca85a6
commit 8ed82f3124
14 changed files with 197 additions and 184 deletions

View File

@@ -0,0 +1,15 @@
using System;
namespace WireMock.Net.StandAlone.NETCoreApp
{
class Program
{
static void Main(string[] args)
{
StandAloneApp.Start(args);
Console.WriteLine("Press any key to stop the server");
Console.ReadKey();
}
}
}

View File

@@ -0,0 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>netcoreapp1.1</TargetFramework>
<ApplicationIcon>../../WireMock.Net-Logo.ico</ApplicationIcon>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\..\src\WireMock.Net.StandAlone\WireMock.Net.StandAlone.csproj" />
</ItemGroup>
</Project>