Added another command line parser. Has a nice parameter verification framework

This commit is contained in:
Holger Boerchers
2018-08-16 21:36:25 +02:00
parent a08d551403
commit bfb6971564
11 changed files with 118 additions and 283 deletions

View File

@@ -111,6 +111,7 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<None Include="app.config" />
<None Include="packages.config" />
<None Include="testdata\changelog.md">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>

11
Katteker.Test/app.config Normal file
View File

@@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="System.ValueTuple" publicKeyToken="cc7b13ffcd2ddd51" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.0.3.0" newVersion="4.0.3.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>