BankProject/Bank.sln
GabrielTofvesson 100f5a32be Major changes
Refactorings:
  * BinaryCollector -> BitWriter
  * BinaryDistributor -> BitReader

Additions:
  * Output class for making serverside output pretty and more readable
  * Better RSA keys (private keys withheld)

Changes:
  * Minor changes to all views and their rendering
  * Added corrective resizing to resize listener to prevent errant window sizes
  * Removed "default" language in favour of a purely priority-based system
  * NetContext now attempts to verify server identity before continuing to next context
  * Simplified common operations in Context
  * Minor updates to some layouts
  * Completed translations for english and swedish
  * Promise system now supports internal processing before notifying original caller
  * Bank interactor methods are now async
  * Added support for multiple accounts per user (separate repositories for money)
  * Removed test code from client program
  * Updated Database to support multiple accounts
  * Reimplemented RSA on the server side purely as an identity verification system on top of the networking layer (rather than part of the layer)
  * Added Account management endpoints
  * Added full support for System-sourced transactions
  * Added Account availability endpoint
  * Added verbose error responses
2018-04-26 00:24:58 +02:00

41 lines
2.1 KiB
Plaintext

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.27130.2020
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Server", "Server\Server.csproj", "{B458552A-5884-4B27-BA6B-826BC5590106}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Client", "Client\Client.csproj", "{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Common", "Common\Common.csproj", "{23EB87D4-E310-48C4-A931-0961C83892D7}"
EndProject
Global
GlobalSection(Performance) = preSolution
HasPerformanceSessions = true
EndGlobalSection
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{B458552A-5884-4B27-BA6B-826BC5590106}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B458552A-5884-4B27-BA6B-826BC5590106}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B458552A-5884-4B27-BA6B-826BC5590106}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B458552A-5884-4B27-BA6B-826BC5590106}.Release|Any CPU.Build.0 = Release|Any CPU
{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}.Debug|Any CPU.Build.0 = Debug|Any CPU
{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}.Release|Any CPU.ActiveCfg = Release|Any CPU
{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}.Release|Any CPU.Build.0 = Release|Any CPU
{23EB87D4-E310-48C4-A931-0961C83892D7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{23EB87D4-E310-48C4-A931-0961C83892D7}.Debug|Any CPU.Build.0 = Debug|Any CPU
{23EB87D4-E310-48C4-A931-0961C83892D7}.Release|Any CPU.ActiveCfg = Release|Any CPU
{23EB87D4-E310-48C4-A931-0961C83892D7}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {E0FD1BD7-4DD9-46C6-A710-6E5371F96DE7}
EndGlobalSection
EndGlobal