├── .gitignore ├── LICENSE ├── README.md ├── doc ├── images │ ├── libs added.png │ ├── nuget package manager.png │ └── postjsonpayload.png └── reference.md ├── lib └── nuget.exe ├── nuget ├── publish └── readme.md └── src └── servicehost ├── democlient ├── DemoClientService.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── content │ └── elm │ │ ├── addition.elm │ │ ├── elm-package.json │ │ ├── elm-stuff │ │ ├── build-artifacts │ │ │ └── 0.18.0 │ │ │ │ ├── elm-lang │ │ │ │ ├── core │ │ │ │ │ └── 5.1.1 │ │ │ │ │ │ ├── Array.elmi │ │ │ │ │ │ ├── Array.elmo │ │ │ │ │ │ ├── Basics.elmi │ │ │ │ │ │ ├── Basics.elmo │ │ │ │ │ │ ├── Bitwise.elmi │ │ │ │ │ │ ├── Bitwise.elmo │ │ │ │ │ │ ├── Char.elmi │ │ │ │ │ │ ├── Char.elmo │ │ │ │ │ │ ├── Color.elmi │ │ │ │ │ │ ├── Color.elmo │ │ │ │ │ │ ├── Date.elmi │ │ │ │ │ │ ├── Date.elmo │ │ │ │ │ │ ├── Debug.elmi │ │ │ │ │ │ ├── Debug.elmo │ │ │ │ │ │ ├── Dict.elmi │ │ │ │ │ │ ├── Dict.elmo │ │ │ │ │ │ ├── Json-Decode.elmi │ │ │ │ │ │ ├── Json-Decode.elmo │ │ │ │ │ │ ├── Json-Encode.elmi │ │ │ │ │ │ ├── Json-Encode.elmo │ │ │ │ │ │ ├── List.elmi │ │ │ │ │ │ ├── List.elmo │ │ │ │ │ │ ├── Maybe.elmi │ │ │ │ │ │ ├── Maybe.elmo │ │ │ │ │ │ ├── Platform-Cmd.elmi │ │ │ │ │ │ ├── Platform-Cmd.elmo │ │ │ │ │ │ ├── Platform-Sub.elmi │ │ │ │ │ │ ├── Platform-Sub.elmo │ │ │ │ │ │ ├── Platform.elmi │ │ │ │ │ │ ├── Platform.elmo │ │ │ │ │ │ ├── Process.elmi │ │ │ │ │ │ ├── Process.elmo │ │ │ │ │ │ ├── Random.elmi │ │ │ │ │ │ ├── Random.elmo │ │ │ │ │ │ ├── Regex.elmi │ │ │ │ │ │ ├── Regex.elmo │ │ │ │ │ │ ├── Result.elmi │ │ │ │ │ │ ├── Result.elmo │ │ │ │ │ │ ├── Set.elmi │ │ │ │ │ │ ├── Set.elmo │ │ │ │ │ │ ├── String.elmi │ │ │ │ │ │ ├── String.elmo │ │ │ │ │ │ ├── Task.elmi │ │ │ │ │ │ ├── Task.elmo │ │ │ │ │ │ ├── Time.elmi │ │ │ │ │ │ ├── Time.elmo │ │ │ │ │ │ ├── Tuple.elmi │ │ │ │ │ │ ├── Tuple.elmo │ │ │ │ │ │ └── graph.dat │ │ │ │ ├── html │ │ │ │ │ └── 2.0.0 │ │ │ │ │ │ ├── Html-Attributes.elmi │ │ │ │ │ │ ├── Html-Attributes.elmo │ │ │ │ │ │ ├── Html-Events.elmi │ │ │ │ │ │ ├── Html-Events.elmo │ │ │ │ │ │ ├── Html-Keyed.elmi │ │ │ │ │ │ ├── Html-Keyed.elmo │ │ │ │ │ │ ├── Html-Lazy.elmi │ │ │ │ │ │ ├── Html-Lazy.elmo │ │ │ │ │ │ ├── Html.elmi │ │ │ │ │ │ ├── Html.elmo │ │ │ │ │ │ └── graph.dat │ │ │ │ ├── http │ │ │ │ │ └── 1.0.0 │ │ │ │ │ │ ├── Http-Internal.elmi │ │ │ │ │ │ ├── Http-Internal.elmo │ │ │ │ │ │ ├── Http-Progress.elmi │ │ │ │ │ │ ├── Http-Progress.elmo │ │ │ │ │ │ ├── Http.elmi │ │ │ │ │ │ ├── Http.elmo │ │ │ │ │ │ └── graph.dat │ │ │ │ └── virtual-dom │ │ │ │ │ └── 2.0.4 │ │ │ │ │ ├── VirtualDom-Debug.elmi │ │ │ │ │ ├── VirtualDom-Debug.elmo │ │ │ │ │ ├── VirtualDom-Expando.elmi │ │ │ │ │ ├── VirtualDom-Expando.elmo │ │ │ │ │ ├── VirtualDom-Helpers.elmi │ │ │ │ │ ├── VirtualDom-Helpers.elmo │ │ │ │ │ ├── VirtualDom-History.elmi │ │ │ │ │ ├── VirtualDom-History.elmo │ │ │ │ │ ├── VirtualDom-Metadata.elmi │ │ │ │ │ ├── VirtualDom-Metadata.elmo │ │ │ │ │ ├── VirtualDom-Overlay.elmi │ │ │ │ │ ├── VirtualDom-Overlay.elmo │ │ │ │ │ ├── VirtualDom-Report.elmi │ │ │ │ │ ├── VirtualDom-Report.elmo │ │ │ │ │ ├── VirtualDom.elmi │ │ │ │ │ ├── VirtualDom.elmo │ │ │ │ │ └── graph.dat │ │ │ │ └── user │ │ │ │ └── project │ │ │ │ └── 1.0.0 │ │ │ │ ├── Hello.elmi │ │ │ │ ├── Hello.elmo │ │ │ │ ├── Main.elmi │ │ │ │ ├── Main.elmo │ │ │ │ ├── Repl.elmi │ │ │ │ └── Repl.elmo │ │ └── exact-dependencies.json │ │ └── index.html ├── democlient.csproj └── packages.config ├── demoservice ├── Math.cs ├── MonteCarloForecast.cs ├── Properties │ └── AssemblyInfo.cs ├── SimpleService.cs ├── content │ ├── addition.html │ └── jquery-3.2.0.min.js └── demoservice.csproj ├── servicehost.contract ├── EntryPointAttribute.cs ├── JsonData.cs ├── PayloadAttribute.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceAttribute.cs ├── SetupAttribute.cs ├── TeardownAttribute.cs ├── servicehost.contract.csproj └── servicehost.contract.nuspec ├── servicehost.sln ├── servicehost ├── CLI.cs ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── ServiceCollector.cs ├── ServiceHost.cs ├── ServiceModuleFactory.cs ├── data │ └── ServiceInfo.cs ├── nancy │ ├── NancyServiceModule.cs │ └── nonpublic │ │ ├── NancyBootstrapper.cs │ │ ├── NancyHosting.cs │ │ └── ServiceAdapter.cs ├── packages.config ├── servicehost.csproj └── servicehost.nuspec └── tests ├── myservice ├── MyService.cs ├── Properties │ └── AssemblyInfo.cs ├── myservice.csproj └── packages.config ├── nugettest ├── Example.cs ├── Properties │ └── AssemblyInfo.cs ├── ReadMe.txt ├── nugettest.csproj └── packages.config ├── servicehost_tests ├── Program.cs ├── Properties │ └── AssemblyInfo.cs ├── content │ ├── hello.html │ ├── hello.jpeg │ ├── helloworld.html │ └── reverse.html ├── packages.config ├── servicehost_tests.csproj ├── test_Acceptance.cs ├── test_NancyHosting.cs ├── test_NancyModule.cs └── test_ServiceCollector.cs └── yourservice ├── Properties └── AssemblyInfo.cs ├── YourService.cs └── yourservice.csproj /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/README.md -------------------------------------------------------------------------------- /doc/images/libs added.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/doc/images/libs added.png -------------------------------------------------------------------------------- /doc/images/nuget package manager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/doc/images/nuget package manager.png -------------------------------------------------------------------------------- /doc/images/postjsonpayload.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/doc/images/postjsonpayload.png -------------------------------------------------------------------------------- /doc/reference.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/doc/reference.md -------------------------------------------------------------------------------- /lib/nuget.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/lib/nuget.exe -------------------------------------------------------------------------------- /nuget/publish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/nuget/publish -------------------------------------------------------------------------------- /nuget/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/nuget/readme.md -------------------------------------------------------------------------------- /src/servicehost/democlient/DemoClientService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/DemoClientService.cs -------------------------------------------------------------------------------- /src/servicehost/democlient/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/Program.cs -------------------------------------------------------------------------------- /src/servicehost/democlient/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/addition.elm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/addition.elm -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-package.json -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Array.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Array.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Array.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Array.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Basics.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Basics.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Basics.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Basics.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Bitwise.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Bitwise.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Bitwise.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Bitwise.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Char.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Char.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Char.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Char.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Color.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Color.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Color.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Color.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Date.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Date.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Date.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Date.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Debug.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Debug.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Debug.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Debug.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Dict.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Dict.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Dict.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Dict.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Decode.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Decode.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Decode.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Decode.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Encode.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Encode.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Encode.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Json-Encode.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/List.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/List.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/List.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/List.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Maybe.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Maybe.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Maybe.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Maybe.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Cmd.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Cmd.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Cmd.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Cmd.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Sub.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Sub.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Sub.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform-Sub.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Platform.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Process.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Process.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Process.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Process.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Random.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Random.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Random.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Random.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Regex.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Regex.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Regex.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Regex.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Result.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Result.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Result.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Result.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Set.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Set.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Set.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Set.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/String.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/String.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/String.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/String.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Task.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Task.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Task.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Task.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Time.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Time.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Time.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Time.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Tuple.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Tuple.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Tuple.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/Tuple.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/graph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/core/5.1.1/graph.dat -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Attributes.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Attributes.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Attributes.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Attributes.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Events.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Events.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Events.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Events.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Keyed.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Keyed.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Keyed.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Keyed.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Lazy.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Lazy.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Lazy.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html-Lazy.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/Html.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/graph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/html/2.0.0/graph.dat -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Internal.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Internal.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Internal.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Internal.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Progress.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Progress.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Progress.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http-Progress.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/Http.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/graph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/http/1.0.0/graph.dat -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Debug.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Debug.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Debug.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Debug.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Expando.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Expando.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Expando.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Expando.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Helpers.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Helpers.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Helpers.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Helpers.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-History.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-History.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-History.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-History.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Metadata.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Metadata.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Metadata.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Metadata.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Overlay.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Overlay.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Overlay.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Overlay.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Report.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Report.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Report.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom-Report.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/VirtualDom.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/graph.dat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/elm-lang/virtual-dom/2.0.4/graph.dat -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Hello.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Hello.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Hello.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Hello.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Main.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Main.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Main.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Main.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Repl.elmi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Repl.elmi -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Repl.elmo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/build-artifacts/0.18.0/user/project/1.0.0/Repl.elmo -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/elm-stuff/exact-dependencies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/elm-stuff/exact-dependencies.json -------------------------------------------------------------------------------- /src/servicehost/democlient/content/elm/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/content/elm/index.html -------------------------------------------------------------------------------- /src/servicehost/democlient/democlient.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/democlient.csproj -------------------------------------------------------------------------------- /src/servicehost/democlient/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/democlient/packages.config -------------------------------------------------------------------------------- /src/servicehost/demoservice/Math.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/Math.cs -------------------------------------------------------------------------------- /src/servicehost/demoservice/MonteCarloForecast.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/MonteCarloForecast.cs -------------------------------------------------------------------------------- /src/servicehost/demoservice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/demoservice/SimpleService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/SimpleService.cs -------------------------------------------------------------------------------- /src/servicehost/demoservice/content/addition.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/content/addition.html -------------------------------------------------------------------------------- /src/servicehost/demoservice/content/jquery-3.2.0.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/content/jquery-3.2.0.min.js -------------------------------------------------------------------------------- /src/servicehost/demoservice/demoservice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/demoservice/demoservice.csproj -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/EntryPointAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/EntryPointAttribute.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/JsonData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/JsonData.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/PayloadAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/PayloadAttribute.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/ServiceAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/ServiceAttribute.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/SetupAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/SetupAttribute.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/TeardownAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/TeardownAttribute.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/servicehost.contract.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/servicehost.contract.csproj -------------------------------------------------------------------------------- /src/servicehost/servicehost.contract/servicehost.contract.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.contract/servicehost.contract.nuspec -------------------------------------------------------------------------------- /src/servicehost/servicehost.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost.sln -------------------------------------------------------------------------------- /src/servicehost/servicehost/CLI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/CLI.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/Program.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/ServiceCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/ServiceCollector.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/ServiceHost.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/ServiceHost.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/ServiceModuleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/ServiceModuleFactory.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/data/ServiceInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/data/ServiceInfo.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/nancy/NancyServiceModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/nancy/NancyServiceModule.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/nancy/nonpublic/NancyBootstrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/nancy/nonpublic/NancyBootstrapper.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/nancy/nonpublic/NancyHosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/nancy/nonpublic/NancyHosting.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/nancy/nonpublic/ServiceAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/nancy/nonpublic/ServiceAdapter.cs -------------------------------------------------------------------------------- /src/servicehost/servicehost/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/packages.config -------------------------------------------------------------------------------- /src/servicehost/servicehost/servicehost.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/servicehost.csproj -------------------------------------------------------------------------------- /src/servicehost/servicehost/servicehost.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/servicehost/servicehost.nuspec -------------------------------------------------------------------------------- /src/servicehost/tests/myservice/MyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/myservice/MyService.cs -------------------------------------------------------------------------------- /src/servicehost/tests/myservice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/myservice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/tests/myservice/myservice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/myservice/myservice.csproj -------------------------------------------------------------------------------- /src/servicehost/tests/myservice/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/myservice/packages.config -------------------------------------------------------------------------------- /src/servicehost/tests/nugettest/Example.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/nugettest/Example.cs -------------------------------------------------------------------------------- /src/servicehost/tests/nugettest/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/nugettest/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/tests/nugettest/ReadMe.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/nugettest/ReadMe.txt -------------------------------------------------------------------------------- /src/servicehost/tests/nugettest/nugettest.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/nugettest/nugettest.csproj -------------------------------------------------------------------------------- /src/servicehost/tests/nugettest/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/nugettest/packages.config -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/Program.cs -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/content/hello.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/content/hello.html -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/content/hello.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/content/hello.jpeg -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/content/helloworld.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/content/helloworld.html -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/content/reverse.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/content/reverse.html -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/packages.config -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/servicehost_tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/servicehost_tests.csproj -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/test_Acceptance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/test_Acceptance.cs -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/test_NancyHosting.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/test_NancyHosting.cs -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/test_NancyModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/test_NancyModule.cs -------------------------------------------------------------------------------- /src/servicehost/tests/servicehost_tests/test_ServiceCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/servicehost_tests/test_ServiceCollector.cs -------------------------------------------------------------------------------- /src/servicehost/tests/yourservice/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/yourservice/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /src/servicehost/tests/yourservice/YourService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/yourservice/YourService.cs -------------------------------------------------------------------------------- /src/servicehost/tests/yourservice/yourservice.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ralfw/servicehost/HEAD/src/servicehost/tests/yourservice/yourservice.csproj --------------------------------------------------------------------------------