Skip to content

Commit 6fa837e

Browse files
authored
Introduce Orleankka.Client package (#169)
* Introduce Orleankka.Client * Update Directory.Build.props reverted formatting * Amended Orleankka.Client description
1 parent a72aba7 commit 6fa837e

File tree

19 files changed

+49
-8
lines changed

19 files changed

+49
-8
lines changed

Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,16 @@
5454
<!-- Orleans packages -->
5555
<MicrosoftOrleansClientVersion>3.3.0</MicrosoftOrleansClientVersion>
5656
<MicrosoftOrleansServerVersion>3.3.0</MicrosoftOrleansServerVersion>
57+
<MicrosoftOrleansCoreVersion>3.3.0</MicrosoftOrleansCoreVersion>
58+
<MicrosoftOrleansCoreAbstractionsVersion>3.3.0</MicrosoftOrleansCoreAbstractionsVersion>
5759
<MicrosoftOrleansCodeGeneratorVersion>3.3.0</MicrosoftOrleansCodeGeneratorVersion>
5860
<MicrosoftOrleansRuntimeVersion>3.3.0</MicrosoftOrleansRuntimeVersion>
5961
<MicrosoftOrleansStreamingAzureStorageVersion>3.3.0</MicrosoftOrleansStreamingAzureStorageVersion>
6062

6163
<!-- Microsoft extensions -->
6264
<MicrosoftExtensionsLoggingVersion>3.0.0</MicrosoftExtensionsLoggingVersion>
6365
<MicrosoftExtensionsLoggingConsoleVersion>3.0.0</MicrosoftExtensionsLoggingConsoleVersion>
66+
<MicrosoftExtensionsDependencyInjectionAbstractionsVersion>3.1.9</MicrosoftExtensionsDependencyInjectionAbstractionsVersion>
6467

6568
<!-- Testing packages -->
6669
<NUnitVersion>3.9.0</NUnitVersion>

Orleankka.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Orleankka.Legacy.Runtime",
7272
EndProject
7373
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Legacy", "Legacy", "{A996FEF3-9B45-4C3C-9FF0-614A51F5175D}"
7474
EndProject
75+
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Orleankka.Client", "Source\Orleankka.Client\Orleankka.Client.csproj", "{E26F63B1-3747-4A63-80BB-B50951FBD52C}"
76+
EndProject
7577
Global
7678
GlobalSection(SolutionConfigurationPlatforms) = preSolution
7779
Debug|Any CPU = Debug|Any CPU
@@ -174,6 +176,10 @@ Global
174176
{4B6DC915-C701-402C-B3C6-E7EB0E54F670}.Debug|Any CPU.Build.0 = Debug|Any CPU
175177
{4B6DC915-C701-402C-B3C6-E7EB0E54F670}.Release|Any CPU.ActiveCfg = Release|Any CPU
176178
{4B6DC915-C701-402C-B3C6-E7EB0E54F670}.Release|Any CPU.Build.0 = Release|Any CPU
179+
{E26F63B1-3747-4A63-80BB-B50951FBD52C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
180+
{E26F63B1-3747-4A63-80BB-B50951FBD52C}.Debug|Any CPU.Build.0 = Debug|Any CPU
181+
{E26F63B1-3747-4A63-80BB-B50951FBD52C}.Release|Any CPU.ActiveCfg = Release|Any CPU
182+
{E26F63B1-3747-4A63-80BB-B50951FBD52C}.Release|Any CPU.Build.0 = Release|Any CPU
177183
EndGlobalSection
178184
GlobalSection(SolutionProperties) = preSolution
179185
HideSolutionNode = FALSE

Samples/CSharp/Demo/Demo.App.Tests/Demo.App.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
</ItemGroup>
1616

1717
<ItemGroup>
18+
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
1819
<ProjectReference Include="..\Demo.App\Demo.App.csproj" />
1920
<ProjectReference Include="..\..\..\..\Source\Orleankka.TestKit\Orleankka.TestKit.csproj" />
20-
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
2121
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2222
</ItemGroup>
2323

Samples/CSharp/Demo/Demo.App/Demo.App.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@
1818
</ItemGroup>
1919

2020
<ItemGroup>
21+
<ProjectReference Include="..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
2122
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
2223
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2324
</ItemGroup>

Samples/CSharp/EventSourcing/Idiomatic/Idiomatic.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24+
<ProjectReference Include="..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
2425
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
2526
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2627
</ItemGroup>

Samples/CSharp/EventSourcing/Persistence/GES/GES.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
</ItemGroup>
2323

2424
<ItemGroup>
25-
<ProjectReference Include="..\..\..\..\..\Source\Orleankka\Orleankka.csproj" />
25+
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
2626
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2727
</ItemGroup>
2828

Samples/CSharp/EventSourcing/Persistence/Streamstone/Streamstone.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
</ItemGroup>
2222

2323
<ItemGroup>
24-
<ProjectReference Include="..\..\..\..\..\Source\Orleankka\Orleankka.csproj" />
24+
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
2525
<ProjectReference Include="..\..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2626
</ItemGroup>
2727

Samples/CSharp/FSM/Lightbulb/Lightbulb.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
</ItemGroup>
2020

2121
<ItemGroup>
22+
<ProjectReference Include="..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
2223
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
2324
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
2425
</ItemGroup>

Samples/CSharp/FSM/ProcessManager/ProcessManager.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
<PackageReference Include="Microsoft.Orleans.Server" Version="$(MicrosoftOrleansServerVersion)" />
1010
</ItemGroup>
1111
<ItemGroup>
12+
<ProjectReference Include="..\..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
1213
<ProjectReference Include="..\..\..\..\Source\Orleankka\Orleankka.csproj" />
1314
<ProjectReference Include="..\..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
1415
</ItemGroup>

Samples/CSharp/HelloWorld/HelloWorld.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
</ItemGroup>
1515

1616
<ItemGroup>
17+
<ProjectReference Include="..\..\..\Source\Orleankka.Client\Orleankka.Client.csproj" />
1718
<ProjectReference Include="..\..\..\Source\Orleankka.Runtime\Orleankka.Runtime.csproj" />
1819
<ProjectReference Include="..\..\..\Source\Orleankka\Orleankka.csproj" />
1920
</ItemGroup>

0 commit comments

Comments
 (0)