Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .config/dotnet-tools.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"version": 1,
"isRoot": true,
"tools": {
"fake-cli": {
"version": "5.19.0",
"commands": [
"fake"
]
},
"paket": {
"version": "5.257.0",
"commands": [
"paket"
]
}
}
}
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -189,4 +189,5 @@ paket-files
docs/content/license.md
docs/content/release-notes.md
.fake
.nuget/
.nuget/
.ionide/
494 changes: 494 additions & 0 deletions .paket/Paket.Restore.targets

Large diffs are not rendered by default.

Binary file removed .paket/paket.bootstrapper.exe
Binary file not shown.
3 changes: 3 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
{
"FSharp.suggestGitignore": false
}
18 changes: 12 additions & 6 deletions Examples/Actors.fsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
#if INTERACTIVE

#load "References.fsx"
#r "nuget: Akka.FSharp"
#r "nuget: RabbitMQ.Client"
// #if INTERACTIVE

// #load "References.fsx"
#load "../RabbitMqActors/Common.fs"
#load "../RabbitMqActors/QueueTypes.fs"
#load "../RabbitMqActors/QueueActors.fs"
#load "DomainMessages.fs"
#load "Client.fs"
#load "Server.fs"

open System
open Akka.Actor
Expand All @@ -16,7 +24,7 @@ open Server

let system = System.create "system" <| Configuration.load ()
let server = spawn system "server" serverActor
let queue_factory = spawn system "queues" (queueFactoryActor {Hostname="localhost";Username="guest";Password="guest"})
let queue_factory = spawn system "queues" (queueFactoryActor {Hostname="localhost";Username="test";Password="test"})

let client = spawn system "client" (clientActor server)
let another_client = spawn system "another_client" (clientActor server)
Expand Down Expand Up @@ -109,5 +117,3 @@ topic_subscriber <! Disconnect

topic_publisher <! Publish (ContentWithRouting ("Hi 6!", "x.y"))
topic_publisher <! Disconnect

#endif
6 changes: 0 additions & 6 deletions Examples/App.config

This file was deleted.

41 changes: 0 additions & 41 deletions Examples/AssemblyInfo.fs

This file was deleted.

Loading