Skip to content

Commit 96f05ec

Browse files
authored
Merge pull request #25 from dolittle/6.0.0-rc
Release 6.0.0
2 parents 3e714d0 + 17cdc7b commit 96f05ec

691 files changed

Lines changed: 15752 additions & 11142 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/dotnet-library.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup .Net
2424
uses: actions/setup-dotnet@v1
2525
with:
26-
dotnet-version: '3.1.x'
26+
dotnet-version: '3.1.301'
2727
- name: Build
2828
run: dotnet build --configuration Release
2929
- name: Test and report coverage

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ _site
3131

3232
*.fsx_*
3333

34-
artifacts
34+
Artifacts
3535
!Source/Artifacts
3636
!Specifications/Artifacts
3737
!Source/Tooling/Plugin/Boilerplates/Artifacts

Build/.vscode/launch.json

Lines changed: 16 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,26 @@
22
"version": "0.2.0",
33
"configurations": [
44
{
5-
"name": ".NET Core Launch (console)",
5+
"name": "Launch Basic Sample",
66
"type": "coreclr",
77
"request": "launch",
8-
"preLaunchTask": "build",
9-
"program": "${workspaceRoot}/Samples/SimpleWeb/bin/Debug/netcoreapp1.1/SimpleWeb.dll",
8+
"preLaunchTask": "build-dotnet",
9+
"program": "${workspaceFolder}/Samples/Basic/bin/Debug/netcoreapp3.1/Basic.dll",
1010
"args": [],
11-
"cwd": "${workspaceRoot}/Samples/SimpleWeb",
12-
"externalConsole": false,
11+
"cwd": "${workspaceFolder}",
1312
"stopAtEntry": false,
14-
"internalConsoleOptions": "openOnSessionStart"
13+
"console": "internalConsole"
14+
},
15+
{
16+
"name": "Launch EventHorizonSample",
17+
"type": "coreclr",
18+
"request": "launch",
19+
"preLaunchTask": "build-dotnet",
20+
"program": "${workspaceFolder}/Samples/EventHorizon/bin/Debug/netcoreapp3.1/EventHorizon.dll",
21+
"args": [],
22+
"cwd": "${workspaceFolder}",
23+
"stopAtEntry": false,
24+
"console": "internalConsole"
1525
},
1626
{
1727
"name": ".NET Core Attach",

Build/.vscode/tasks.json

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,15 @@
2525
"fileLocation": ["absolute"]
2626
}
2727
},
28-
28+
{
29+
"label": "build-dotnet",
30+
"command": "dotnet",
31+
"type": "process",
32+
"args": [
33+
"build"
34+
],
35+
"problemMatcher": "$tsc"
36+
},
2937
{
3038
"label": "build",
3139
"command": "node",
@@ -236,4 +244,4 @@
236244
}
237245

238246
]
239-
}
247+
}

CHANGELOG.md

Lines changed: 0 additions & 370 deletions
This file was deleted.

DotNET.SDK.sln

Lines changed: 357 additions & 277 deletions
Large diffs are not rendered by default.

Media/Logo/Logo.png

-29.8 KB
Binary file not shown.

Media/Standup/Poster.pxm

-313 KB
Binary file not shown.

Samples/Basic/Basic.csproj

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<Project Sdk="Microsoft.NET.Sdk">
2+
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>netcoreapp3.1</TargetFramework>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<ProjectReference Include="../../Source/SDK/SDK.csproj" />
10+
</ItemGroup>
11+
12+
</Project>

Samples/Basic/MyEvent.cs

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
// Copyright (c) Dolittle. All rights reserved.
2+
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
3+
4+
using Dolittle.SDK.Events;
5+
6+
namespace Basic
7+
{
8+
[EventType("f42529b3-d980-4b55-8fbe-65101a6141a3")]
9+
class MyEvent
10+
{
11+
public MyEvent(string aString, int anInteger)
12+
{
13+
AString = aString;
14+
AnInteger = anInteger;
15+
}
16+
public string AString { get; }
17+
public int AnInteger { get; }
18+
}
19+
}

0 commit comments

Comments
 (0)