Skip to content

Commit

Permalink
modernizing build system to support Akka.NET v1.4.0 (#115)
Browse files Browse the repository at this point in the history
* modernizing build system to support Akka.NET v1.4.0

* moved .SLN file to root directory so we can use it with standard build.fsx

* moved onto modernized build system

* added Docker.NET integration

* migrated to Docker.NET

* working on fixing DB login

* just use SA login

* added back support for Windows containers

* upgraded to XUnit 2.4.1

* increased time-delay

* had to add additional exposed port to make SQL Server on Windows happy

* removed reference to Microsoft.Extensions.Configuration

* Removed extensions.configuration calls

* disabled AppDomains on Mono

* disable Mono altogether
  • Loading branch information
Aaronontheweb authored Jun 21, 2019
1 parent 712ded1 commit c5dbf60
Show file tree
Hide file tree
Showing 26 changed files with 486 additions and 617 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.26430.16
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.Persistence.SqlServer.Tests", "Akka.Persistence.SqlServer.Tests\Akka.Persistence.SqlServer.Tests.csproj", "{5A3C24D7-0D1C-4974-BBB4-22AC792666DE}"
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "build", "build", "{D8BAD8E8-F881-4B23-8CCC-E5724CF9292B}"
ProjectSection(SolutionItems) = preProject
..\build.cmd = ..\build.cmd
Expand All @@ -17,30 +15,24 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
..\README.md = ..\README.md
EndProjectSection
EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{9926DCC4-8E2D-4F56-BC01-194A61B9F76E}"
ProjectSection(SolutionItems) = preProject
.nuget\NuGet.Config = .nuget\NuGet.Config
.nuget\NuGet.Dev.Config = .nuget\NuGet.Dev.Config
.nuget\NuGet.exe = .nuget\NuGet.exe
.nuget\NuGet.targets = .nuget\NuGet.targets
EndProjectSection
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.Persistence.SqlServer", "src\Akka.Persistence.SqlServer\Akka.Persistence.SqlServer.csproj", "{424D7800-6417-498D-A645-0E5EAF16C6D6}"
EndProject
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.Persistence.SqlServer", "Akka.Persistence.SqlServer\Akka.Persistence.SqlServer.csproj", "{1D9ECD21-DCCA-45C1-9A27-BF2C13C7412F}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Akka.Persistence.SqlServer.Tests", "src\Akka.Persistence.SqlServer.Tests\Akka.Persistence.SqlServer.Tests.csproj", "{DEAC600E-5B71-4124-BE4B-5BF26C21575E}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{5A3C24D7-0D1C-4974-BBB4-22AC792666DE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{5A3C24D7-0D1C-4974-BBB4-22AC792666DE}.Debug|Any CPU.Build.0 = Debug|Any CPU
{5A3C24D7-0D1C-4974-BBB4-22AC792666DE}.Release|Any CPU.ActiveCfg = Release|Any CPU
{5A3C24D7-0D1C-4974-BBB4-22AC792666DE}.Release|Any CPU.Build.0 = Release|Any CPU
{1D9ECD21-DCCA-45C1-9A27-BF2C13C7412F}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{1D9ECD21-DCCA-45C1-9A27-BF2C13C7412F}.Debug|Any CPU.Build.0 = Debug|Any CPU
{1D9ECD21-DCCA-45C1-9A27-BF2C13C7412F}.Release|Any CPU.ActiveCfg = Release|Any CPU
{1D9ECD21-DCCA-45C1-9A27-BF2C13C7412F}.Release|Any CPU.Build.0 = Release|Any CPU
{424D7800-6417-498D-A645-0E5EAF16C6D6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{424D7800-6417-498D-A645-0E5EAF16C6D6}.Debug|Any CPU.Build.0 = Debug|Any CPU
{424D7800-6417-498D-A645-0E5EAF16C6D6}.Release|Any CPU.ActiveCfg = Release|Any CPU
{424D7800-6417-498D-A645-0E5EAF16C6D6}.Release|Any CPU.Build.0 = Release|Any CPU
{DEAC600E-5B71-4124-BE4B-5BF26C21575E}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{DEAC600E-5B71-4124-BE4B-5BF26C21575E}.Debug|Any CPU.Build.0 = Debug|Any CPU
{DEAC600E-5B71-4124-BE4B-5BF26C21575E}.Release|Any CPU.ActiveCfg = Release|Any CPU
{DEAC600E-5B71-4124-BE4B-5BF26C21575E}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
File renamed without changes.
Loading

0 comments on commit c5dbf60

Please sign in to comment.