Skip to content

Commit

Permalink
Update to Akka 1.4.21 and .Net 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
vladud committed Jul 14, 2021
1 parent 9ff7a69 commit 07944a9
Show file tree
Hide file tree
Showing 7 changed files with 29 additions and 397 deletions.
327 changes: 19 additions & 308 deletions AkkaStreamsAndSharding/AkkaStreamsAndSharding.csproj

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions AkkaStreamsAndSharding/appsettings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"NumberOfGraphs": 500,
"ShouldSendTicks": true,
"SleepInBetweenTicks": 10000,
"NumberOfGraphBuilderRoutees": 4
}
85 changes: 0 additions & 85 deletions AkkaStreamsAndSharding/packages.config

This file was deleted.

2 changes: 1 addition & 1 deletion SimulateNewNodeJoiningAndThenInputIsSentToSource.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$currentLocation = Get-Location
$configuration='Release'
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\AkkaStreamsAndSharding.exe"
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\net5.0\AkkaStreamsAndSharding.exe"
if (-not(Test-Path $pathToExe)) {
echo "Running msbuild..."
msbuild -p:RestorePackagesConfig=true -t:restore /m:4 /t:build /p:Configuration=$configuration /p:Optimize=True "AkkaStreamsAndSharding.sln"
Expand Down
2 changes: 1 addition & 1 deletion SimulateNewNodeJoiningWhenGivenEnoughTime.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$currentLocation = Get-Location
$configuration='Release'
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\AkkaStreamsAndSharding.exe"
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\net5.0\AkkaStreamsAndSharding.exe"
if (-not(Test-Path $pathToExe)) {
echo "Running msbuild..."
msbuild -p:RestorePackagesConfig=true -t:restore /m:4 /t:build /p:Configuration=$configuration /p:Optimize=True "AkkaStreamsAndSharding.sln"
Expand Down
2 changes: 1 addition & 1 deletion SimulateNewNodeJoiningWhenSmallerAmountOfGraphs.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$currentLocation = Get-Location
$configuration='Release'
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\AkkaStreamsAndSharding.exe"
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\net5.0\AkkaStreamsAndSharding.exe"
if (-not(Test-Path $pathToExe)) {
echo "Running msbuild..."
msbuild -p:RestorePackagesConfig=true -t:restore /m:4 /t:build /p:Configuration=$configuration /p:Optimize=True "AkkaStreamsAndSharding.sln"
Expand Down
2 changes: 1 addition & 1 deletion SimulateNewNodeNotJoining.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$currentLocation = Get-Location
$configuration='Release'
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\AkkaStreamsAndSharding.exe"
$pathToExe = "$currentLocation\AkkaStreamsAndSharding\bin\$configuration\net5.0\AkkaStreamsAndSharding.exe"
if (-not(Test-Path $pathToExe)) {
echo "Running msbuild..."
msbuild -p:RestorePackagesConfig=true -t:restore /m:4 /t:build /p:Configuration=$configuration /p:Optimize=True "AkkaStreamsAndSharding.sln"
Expand Down

0 comments on commit 07944a9

Please sign in to comment.