From c34a6bb7c88e74a926fd883808dffd6bd7c8d2d5 Mon Sep 17 00:00:00 2001 From: "Andres G. Aragoneses" Date: Tue, 23 Jan 2024 19:13:35 +0800 Subject: [PATCH] Rename projects and solutions --- FsharpExchangeDotNetCore.sln => FX.sln | 70 +++++++++---------- .../FX.Console.fsproj} | 32 ++++----- .../Program.fs | 0 .../BasicTypes.fs | 0 .../Exchange.fs | 0 .../FX.Core.fsproj} | 0 .../MemoryStorageLayer.fs | 0 .../OrderBook.fs | 0 .../RedisStorageLayer.fs | 0 .../BasicTests.cs | 0 .../FX.Tests.csproj} | 42 +++++------ .../LimitOrders.cs | 0 .../MakerOnlyOrders.cs | 0 .../MarketOrders.cs | 0 .../RedisIntegrationTests.cs | 0 src/WebSocketApp/WebSocketApp.fsproj | 68 +++++++++--------- 16 files changed, 106 insertions(+), 106 deletions(-) rename FsharpExchangeDotNetCore.sln => FX.sln (75%) rename src/{FsharpExchangeDotNetCoreApp/FsharpExchangeDotNetCoreApp.fsproj => FX.Console/FX.Console.fsproj} (73%) rename src/{FsharpExchangeDotNetCoreApp => FX.Console}/Program.fs (100%) rename src/{FsharpExchangeDotNetStandard => FX.Core}/BasicTypes.fs (100%) rename src/{FsharpExchangeDotNetStandard => FX.Core}/Exchange.fs (100%) rename src/{FsharpExchangeDotNetStandard/FsharpExchangeDotNetStandard.fsproj => FX.Core/FX.Core.fsproj} (100%) rename src/{FsharpExchangeDotNetStandard => FX.Core}/MemoryStorageLayer.fs (100%) rename src/{FsharpExchangeDotNetStandard => FX.Core}/OrderBook.fs (100%) rename src/{FsharpExchangeDotNetStandard => FX.Core}/RedisStorageLayer.fs (100%) rename src/{FsharpExchange.Tests => FX.Tests}/BasicTests.cs (100%) rename src/{FsharpExchange.Tests/FsharpExchange.Tests.csproj => FX.Tests/FX.Tests.csproj} (84%) rename src/{FsharpExchange.Tests => FX.Tests}/LimitOrders.cs (100%) rename src/{FsharpExchange.Tests => FX.Tests}/MakerOnlyOrders.cs (100%) rename src/{FsharpExchange.Tests => FX.Tests}/MarketOrders.cs (100%) rename src/{FsharpExchange.Tests => FX.Tests}/RedisIntegrationTests.cs (100%) diff --git a/FsharpExchangeDotNetCore.sln b/FX.sln similarity index 75% rename from FsharpExchangeDotNetCore.sln rename to FX.sln index ffa0671..f19bcee 100644 --- a/FsharpExchangeDotNetCore.sln +++ b/FX.sln @@ -1,35 +1,35 @@ - -Microsoft Visual Studio Solution File, Format Version 12.00 -# Visual Studio 2012 -Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FsharpExchange.Tests", "src\FsharpExchange.Tests\FsharpExchange.Tests.csproj", "{984CE32C-454B-4FF1-B388-203DFD2CEAD8}" -EndProject -Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "FsharpExchangeDotNetStandard", "src\FsharpExchangeDotNetStandard\FsharpExchangeDotNetStandard.fsproj", "{10A328B6-51E8-40DD-B6D8-361AFAEFABFA}" -EndProject -Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "FsharpExchangeDotNetCoreApp", "src\FsharpExchangeDotNetCoreApp\FsharpExchangeDotNetCoreApp.fsproj", "{E741A563-9A64-49B9-8506-DEEB03DB340C}" -EndProject -Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "WebSocketApp", "src\WebSocketApp\WebSocketApp.fsproj", "{E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}" -EndProject -Global - GlobalSection(SolutionConfigurationPlatforms) = preSolution - Debug|Any CPU = Debug|Any CPU - Release|Any CPU = Release|Any CPU - EndGlobalSection - GlobalSection(ProjectConfigurationPlatforms) = postSolution - {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Debug|Any CPU.Build.0 = Debug|Any CPU - {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Release|Any CPU.ActiveCfg = Release|Any CPU - {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Release|Any CPU.Build.0 = Release|Any CPU - {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Debug|Any CPU.Build.0 = Debug|Any CPU - {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Release|Any CPU.ActiveCfg = Release|Any CPU - {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Release|Any CPU.Build.0 = Release|Any CPU - {E741A563-9A64-49B9-8506-DEEB03DB340C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E741A563-9A64-49B9-8506-DEEB03DB340C}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E741A563-9A64-49B9-8506-DEEB03DB340C}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E741A563-9A64-49B9-8506-DEEB03DB340C}.Release|Any CPU.Build.0 = Release|Any CPU - {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU - {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Debug|Any CPU.Build.0 = Debug|Any CPU - {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Release|Any CPU.ActiveCfg = Release|Any CPU - {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Release|Any CPU.Build.0 = Release|Any CPU - EndGlobalSection -EndGlobal + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio 2012 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "FX.Tests", "src\FX.Tests\FX.Tests.csproj", "{984CE32C-454B-4FF1-B388-203DFD2CEAD8}" +EndProject +Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "FX.Core", "src\FX.Core\FX.Core.fsproj", "{10A328B6-51E8-40DD-B6D8-361AFAEFABFA}" +EndProject +Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "FX.Console", "src\FX.Console\FX.Console.fsproj", "{E741A563-9A64-49B9-8506-DEEB03DB340C}" +EndProject +Project("{f2a71f9b-5d33-465a-a702-920d77279786}") = "WebSocketApp", "src\WebSocketApp\WebSocketApp.fsproj", "{E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Debug|Any CPU.Build.0 = Debug|Any CPU + {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Release|Any CPU.ActiveCfg = Release|Any CPU + {984CE32C-454B-4FF1-B388-203DFD2CEAD8}.Release|Any CPU.Build.0 = Release|Any CPU + {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Debug|Any CPU.Build.0 = Debug|Any CPU + {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Release|Any CPU.ActiveCfg = Release|Any CPU + {10A328B6-51E8-40DD-B6D8-361AFAEFABFA}.Release|Any CPU.Build.0 = Release|Any CPU + {E741A563-9A64-49B9-8506-DEEB03DB340C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E741A563-9A64-49B9-8506-DEEB03DB340C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E741A563-9A64-49B9-8506-DEEB03DB340C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E741A563-9A64-49B9-8506-DEEB03DB340C}.Release|Any CPU.Build.0 = Release|Any CPU + {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Debug|Any CPU.Build.0 = Debug|Any CPU + {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Release|Any CPU.ActiveCfg = Release|Any CPU + {E41ECB40-3CD7-473B-9B73-6BDE00BD74B4}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection +EndGlobal diff --git a/src/FsharpExchangeDotNetCoreApp/FsharpExchangeDotNetCoreApp.fsproj b/src/FX.Console/FX.Console.fsproj similarity index 73% rename from src/FsharpExchangeDotNetCoreApp/FsharpExchangeDotNetCoreApp.fsproj rename to src/FX.Console/FX.Console.fsproj index a7e5155..3471e0c 100644 --- a/src/FsharpExchangeDotNetCoreApp/FsharpExchangeDotNetCoreApp.fsproj +++ b/src/FX.Console/FX.Console.fsproj @@ -1,16 +1,16 @@ - - - - Exe - netcoreapp2.0 - - - - - - - - - - - + + + + Exe + netcoreapp2.0 + + + + + + + + + + + diff --git a/src/FsharpExchangeDotNetCoreApp/Program.fs b/src/FX.Console/Program.fs similarity index 100% rename from src/FsharpExchangeDotNetCoreApp/Program.fs rename to src/FX.Console/Program.fs diff --git a/src/FsharpExchangeDotNetStandard/BasicTypes.fs b/src/FX.Core/BasicTypes.fs similarity index 100% rename from src/FsharpExchangeDotNetStandard/BasicTypes.fs rename to src/FX.Core/BasicTypes.fs diff --git a/src/FsharpExchangeDotNetStandard/Exchange.fs b/src/FX.Core/Exchange.fs similarity index 100% rename from src/FsharpExchangeDotNetStandard/Exchange.fs rename to src/FX.Core/Exchange.fs diff --git a/src/FsharpExchangeDotNetStandard/FsharpExchangeDotNetStandard.fsproj b/src/FX.Core/FX.Core.fsproj similarity index 100% rename from src/FsharpExchangeDotNetStandard/FsharpExchangeDotNetStandard.fsproj rename to src/FX.Core/FX.Core.fsproj diff --git a/src/FsharpExchangeDotNetStandard/MemoryStorageLayer.fs b/src/FX.Core/MemoryStorageLayer.fs similarity index 100% rename from src/FsharpExchangeDotNetStandard/MemoryStorageLayer.fs rename to src/FX.Core/MemoryStorageLayer.fs diff --git a/src/FsharpExchangeDotNetStandard/OrderBook.fs b/src/FX.Core/OrderBook.fs similarity index 100% rename from src/FsharpExchangeDotNetStandard/OrderBook.fs rename to src/FX.Core/OrderBook.fs diff --git a/src/FsharpExchangeDotNetStandard/RedisStorageLayer.fs b/src/FX.Core/RedisStorageLayer.fs similarity index 100% rename from src/FsharpExchangeDotNetStandard/RedisStorageLayer.fs rename to src/FX.Core/RedisStorageLayer.fs diff --git a/src/FsharpExchange.Tests/BasicTests.cs b/src/FX.Tests/BasicTests.cs similarity index 100% rename from src/FsharpExchange.Tests/BasicTests.cs rename to src/FX.Tests/BasicTests.cs diff --git a/src/FsharpExchange.Tests/FsharpExchange.Tests.csproj b/src/FX.Tests/FX.Tests.csproj similarity index 84% rename from src/FsharpExchange.Tests/FsharpExchange.Tests.csproj rename to src/FX.Tests/FX.Tests.csproj index 1f2af8e..b71a6da 100644 --- a/src/FsharpExchange.Tests/FsharpExchange.Tests.csproj +++ b/src/FX.Tests/FX.Tests.csproj @@ -1,21 +1,21 @@ - - - - net6.0 - - - - - - - - - - - - - - - - - + + + + net6.0 + + + + + + + + + + + + + + + + + diff --git a/src/FsharpExchange.Tests/LimitOrders.cs b/src/FX.Tests/LimitOrders.cs similarity index 100% rename from src/FsharpExchange.Tests/LimitOrders.cs rename to src/FX.Tests/LimitOrders.cs diff --git a/src/FsharpExchange.Tests/MakerOnlyOrders.cs b/src/FX.Tests/MakerOnlyOrders.cs similarity index 100% rename from src/FsharpExchange.Tests/MakerOnlyOrders.cs rename to src/FX.Tests/MakerOnlyOrders.cs diff --git a/src/FsharpExchange.Tests/MarketOrders.cs b/src/FX.Tests/MarketOrders.cs similarity index 100% rename from src/FsharpExchange.Tests/MarketOrders.cs rename to src/FX.Tests/MarketOrders.cs diff --git a/src/FsharpExchange.Tests/RedisIntegrationTests.cs b/src/FX.Tests/RedisIntegrationTests.cs similarity index 100% rename from src/FsharpExchange.Tests/RedisIntegrationTests.cs rename to src/FX.Tests/RedisIntegrationTests.cs diff --git a/src/WebSocketApp/WebSocketApp.fsproj b/src/WebSocketApp/WebSocketApp.fsproj index 4394d58..b4e536b 100644 --- a/src/WebSocketApp/WebSocketApp.fsproj +++ b/src/WebSocketApp/WebSocketApp.fsproj @@ -1,34 +1,34 @@ - - - - netcoreapp2.1 - portable - WebSocketApp - Exe - false - - - - - - - - - - - PreserveNewest - - - - - - - - - - - - - - - + + + + netcoreapp2.1 + portable + WebSocketApp + Exe + false + + + + + + + + + + + PreserveNewest + + + + + + + + + + + + + + +