Skip to content

Commit d9ae011

Browse files
Mousakaemilklasson
andcommitted
First
Co-authored-by: Emil Klasson <[email protected]>
0 parents  commit d9ae011

File tree

6 files changed

+618
-0
lines changed

6 files changed

+618
-0
lines changed

.gitignore

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Compiled code
2+
src/*/bin
3+
4+
# Temp files created by the compiler
5+
src/*/obj
6+
7+
# Release folder
8+
out
9+
10+
# IDEs
11+
.vs
12+
.vscode
13+
.idea
14+
.ionide
15+
.fake
16+
17+
# Mac
18+
.DS_Store

Insurello.RabbitMqClient.sln

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.26124.0
5+
MinimumVisualStudioVersion = 15.0.26124.0
6+
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "src", "src", "{AFC7EECF-08C6-4611-A873-3D6B47292E42}"
7+
EndProject
8+
Project("{F2A71F9B-5D33-465A-A702-920D77279786}") = "Insurello.RabbitMqClient", "src\Insurello.RabbitMqClient\Insurello.RabbitMqClient.fsproj", "{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}"
9+
EndProject
10+
Global
11+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
12+
Debug|Any CPU = Debug|Any CPU
13+
Debug|x64 = Debug|x64
14+
Debug|x86 = Debug|x86
15+
Release|Any CPU = Release|Any CPU
16+
Release|x64 = Release|x64
17+
Release|x86 = Release|x86
18+
EndGlobalSection
19+
GlobalSection(SolutionProperties) = preSolution
20+
HideSolutionNode = FALSE
21+
EndGlobalSection
22+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
23+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
24+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|Any CPU.Build.0 = Debug|Any CPU
25+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|x64.ActiveCfg = Debug|Any CPU
26+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|x64.Build.0 = Debug|Any CPU
27+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|x86.ActiveCfg = Debug|Any CPU
28+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Debug|x86.Build.0 = Debug|Any CPU
29+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|Any CPU.ActiveCfg = Release|Any CPU
30+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|Any CPU.Build.0 = Release|Any CPU
31+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|x64.ActiveCfg = Release|Any CPU
32+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|x64.Build.0 = Release|Any CPU
33+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|x86.ActiveCfg = Release|Any CPU
34+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA}.Release|x86.Build.0 = Release|Any CPU
35+
EndGlobalSection
36+
GlobalSection(NestedProjects) = preSolution
37+
{43707A59-B2D2-4E24-A419-EE4F90AAF0CA} = {AFC7EECF-08C6-4611-A873-3D6B47292E42}
38+
EndGlobalSection
39+
EndGlobal

Makefile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
PROJECT_NAME=Insurello.RabbitMqClient
2+
TEST_PROJECT_NAME=$(PROJECT_NAME).Tests
3+
PROJECT_DIR=src/$(PROJECT_NAME)
4+
TEST_DIR=src/$(TEST_PROJECT_NAME)
5+
MAIN_PROJ=$(MAIN_DIR)/$(PROJECT_NAME).fsproj
6+
TEST_PROJ=$(TEST_DIR)/$(TEST_PROJECT_NAME).fsproj
7+
8+
9+
.PHONY : all build test
10+
11+
all: build test
12+
13+
test:
14+
dotnet test $(TEST_PROJ)
15+
16+
test-watch:
17+
dotnet watch --project $(TEST_DIR) run
18+
19+
clean:
20+
rm -r $(PROJECT_DIR)/bin $(PROJECT_DIR)/obj $(TEST_DIR)/bin $(TEST_DIR)/obj

README.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Insurello.RabbitMqClient
2+
3+
### Why does it exist?
4+
5+
### Inspiration
6+
7+
### Types
8+
9+
### Example
10+
11+
```fsharp
12+
13+
```
14+
15+
[![Insurello](https://gitcdn.xyz/repo/insurello/elm-swedish-bank-account-number/master/insurello.svg)](https://jobb.insurello.se/departments/product-tech)
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<TargetFramework>netcoreapp3.1</TargetFramework>
5+
</PropertyGroup>
6+
7+
<ItemGroup>
8+
<Compile Include="MqClient.fs" />
9+
</ItemGroup>
10+
11+
<ItemGroup>
12+
<PackageReference Include="FSharp.AsyncExtra" Version="2.1.0" />
13+
<PackageReference Include="RabbitMq.Client" Version="5.1.2" />
14+
</ItemGroup>
15+
16+
17+
</Project>

0 commit comments

Comments
 (0)