Skip to content

Commit

Permalink
Documentation updates and port to Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
hallambaker committed Nov 14, 2017
1 parent 3257b46 commit 26a1d89
Show file tree
Hide file tree
Showing 245 changed files with 8,255 additions and 1,836 deletions.
Binary file modified .vs/BuildLibraries/v15/sqlite3/storage.ide
Binary file not shown.
Binary file modified .vs/BuildTools/v15/sqlite3/storage.ide
Binary file not shown.
16 changes: 16 additions & 0 deletions .vs/config/applicationhost.config
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,22 @@
<binding protocol="http" bindingInformation="*:54388:localhost" />
</bindings>
</site>
<site name="Test" id="3">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\hallam\Work\buildtools\Documentation\Test" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:53502:localhost" />
</bindings>
</site>
<site name="Test(1)" id="4">
<application path="/" applicationPool="Clr4IntegratedAppPool">
<virtualDirectory path="/" physicalPath="C:\Users\hallam\Work\WebPublish\Test" />
</application>
<bindings>
<binding protocol="http" bindingInformation="*:55114:localhost" />
</bindings>
</site>
<siteDefaults>
<logFile logFormat="W3C" directory="%IIS_USER_HOME%\Logs" />
<traceFailedRequestsLogging directory="%IIS_USER_HOME%\TraceLogFiles" enabled="true" maxLogFileSizeKB="1024" />
Expand Down
6 changes: 6 additions & 0 deletions ASN/Goedel.Tool.ASN/Goedel.Tool.ASN.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<OutputPath>bin\Publish\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DotNet|x86'">
<OutputPath>bin\x86\DotNet\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DotNet|AnyCPU'">
<OutputPath>bin\DotNet\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down
24 changes: 15 additions & 9 deletions ASN/ShellASN/ASN2.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,13 @@

namespace Goedel.Shell.ASN2 {
public partial class CommandLineInterpreter : CommandLineInterpreterBase {


/// <summary>The command entries</summary>
public static SortedDictionary<string, DescribeCommand> Entries;
/// <summary>The default command.</summary>
public static DescribeCommandEntry DefaultCommand;
/// <summary>Description of the comman</summary>
public static string Description = "<Not specified>";

static char UnixFlag = '-';
static char WindowsFlag = '/';
Expand All @@ -21,22 +27,22 @@ public partial class CommandLineInterpreter : CommandLineInterpreterBase {
/// <param name="args"></param>
/// <param name="index"></param>
public static void Help (DispatchShell Dispatch, string[] args, int index) {
Brief();
Brief(Description, DefaultCommand, Entries);
}

public static DescribeCommandEntry DescribeHelp = new DescribeCommandEntry() {
Identifier = "help",
HandleDelegate = Brief,
HandleDelegate = Help,
Entries = new List<DescribeEntry>() { }
};

/// <summary>
///
/// Describe the application invoked by the command.
/// </summary>
/// <param name="Dispatch"></param>
/// <param name="args"></param>
/// <param name="index"></param>
public static new void About (DispatchShell Dispatch, string[] args, int index) {
/// <param name="Dispatch">The command description.</param>
/// <param name="args">The set of arguments.</param>
/// <param name="index">The first unparsed argument.</param>
public static void About (DispatchShell Dispatch, string[] args, int index) {
FileTools.About();
}

Expand Down Expand Up @@ -88,7 +94,7 @@ public void MainMethod(string[] Args) {


public void MainMethod(ASN2Shell Dispatch, string[] Args) {
Dispatcher (Entries, Dispatch, Args, 0);
Dispatcher (Entries, DefaultCommand, Dispatch, Args, 0);
} // Main


Expand Down
10 changes: 10 additions & 0 deletions ASN/ShellASN/ShellASN.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,12 @@
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Publish|AnyCPU'">
<OutputPath>bin\Publish\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DotNet|x86'">
<OutputPath>bin\x86\DotNet\</OutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'DotNet|AnyCPU'">
<OutputPath>bin\DotNet\</OutputPath>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
Expand Down Expand Up @@ -108,6 +114,10 @@
<Project>{e7d4d1f4-e41a-44e2-abbd-f6a9e1d3f1ac}</Project>
<Name>Goedel.Command</Name>
</ProjectReference>
<ProjectReference Include="..\..\Libraries\Goedel.FSR\Goedel.FSR.csproj">
<Project>{c06a45c9-3d54-40af-af59-ef860c50dd8b}</Project>
<Name>Goedel.FSR</Name>
</ProjectReference>
<ProjectReference Include="..\..\Libraries\Goedel.Registry\Goedel.Registry.csproj">
<Project>{ebda947e-d7a9-4a93-aef1-aea9d56b9225}</Project>
<Name>Goedel.Registry</Name>
Expand Down
39 changes: 0 additions & 39 deletions BuildLibraries.sln
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,6 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Goedel.Cryptography.Contain
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test.Goedel.Cryptography.Container", "Testing\Test.Goedel.Cryptography.Container\Test.Goedel.Cryptography.Container.csproj", "{CC59D34E-4BAD-4F03-9754-279B4CDAEC4F}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PHB New Library1", "PHB New Library1\PHB New Library1.csproj", "{0746C571-A9F5-4406-BAA7-8B74E9064144}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Goedel.Protocol.Exchange", "Libraries\Goedel.Protocol.Exchange\Goedel.Protocol.Exchange.csproj", "{3D59C3C8-119D-4A4C-AAA2-7D71024DE604}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Goedel.Protocol.Exchange.Server", "Libraries\Goedel.Protocol.Exchange.Server\Goedel.Protocol.Exchange.Server.csproj", "{DA00C857-80EC-4542-8188-7C2A9982D97F}"
Expand Down Expand Up @@ -934,42 +932,6 @@ Global
{CC59D34E-4BAD-4F03-9754-279B4CDAEC4F}.Release|x64.Build.0 = Release|Any CPU
{CC59D34E-4BAD-4F03-9754-279B4CDAEC4F}.Release|x86.ActiveCfg = Release|Any CPU
{CC59D34E-4BAD-4F03-9754-279B4CDAEC4F}.Release|x86.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|ARM.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|ARM.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|iPhone.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|iPhone.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|iPhoneSimulator.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|iPhoneSimulator.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|x64.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|x64.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|x86.ActiveCfg = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Debug|x86.Build.0 = Debug|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|Any CPU.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|Any CPU.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|ARM.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|ARM.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|iPhone.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|iPhone.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|iPhoneSimulator.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|iPhoneSimulator.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|x64.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|x64.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|x86.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Publish|x86.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|Any CPU.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|ARM.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|ARM.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|iPhone.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|iPhone.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|iPhoneSimulator.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|iPhoneSimulator.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|x64.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|x64.Build.0 = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|x86.ActiveCfg = Release|Any CPU
{0746C571-A9F5-4406-BAA7-8B74E9064144}.Release|x86.Build.0 = Release|Any CPU
{3D59C3C8-119D-4A4C-AAA2-7D71024DE604}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{3D59C3C8-119D-4A4C-AAA2-7D71024DE604}.Debug|Any CPU.Build.0 = Debug|Any CPU
{3D59C3C8-119D-4A4C-AAA2-7D71024DE604}.Debug|ARM.ActiveCfg = Debug|Any CPU
Expand Down Expand Up @@ -1395,7 +1357,6 @@ Global
{5BB8933C-92BF-4D8F-8B5E-7A170FF18B69} = {99F6D1D2-D977-4B4E-9D76-522601E01EF1}
{6BB41505-DEDB-46E7-85E5-99F7D99F57E2} = {975047D3-C561-4D89-BCE2-1950E202C2F7}
{CC59D34E-4BAD-4F03-9754-279B4CDAEC4F} = {2CEB307F-E38E-4316-8ABB-879C7FC6A2AC}
{0746C571-A9F5-4406-BAA7-8B74E9064144} = {2CEB307F-E38E-4316-8ABB-879C7FC6A2AC}
{3D59C3C8-119D-4A4C-AAA2-7D71024DE604} = {975047D3-C561-4D89-BCE2-1950E202C2F7}
{DA00C857-80EC-4542-8188-7C2A9982D97F} = {975047D3-C561-4D89-BCE2-1950E202C2F7}
{6EA3076D-C4E6-4ECF-9627-B706AD916858} = {99F6D1D2-D977-4B4E-9D76-522601E01EF1}
Expand Down
Loading

0 comments on commit 26a1d89

Please sign in to comment.