BankProject/Client/Client.csproj
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

115 lines
5.1 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{2236D5D4-7816-4630-8C86-0F0BDD46D7D8}</ProjectGuid>
<OutputType>Exe</OutputType>
<RootNamespace>Client</RootNamespace>
<AssemblyName>Client</AssemblyName>
<TargetFrameworkVersion>v4.6.1</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>DEBUG;TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Numerics" />
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
</ItemGroup>
<ItemGroup>
<Compile Include="ConsoleForms\CancellationPipe.cs" />
<Compile Include="ConsoleForms\ConsoleController.cs" />
<Compile Include="ConsoleForms\Context.cs" />
<Compile Include="ConsoleForms\ContextManager.cs" />
<Compile Include="ConsoleForms\Events\ISubmissionListener.cs" />
<Compile Include="ConsoleForms\Events\ITextInputEventListener.cs" />
<Compile Include="ConsoleForms\Graphics\ButtonView.cs" />
<Compile Include="ConsoleForms\Graphics\DialogView.cs" />
<Compile Include="ConsoleForms\Graphics\InputView.cs" />
<Compile Include="ConsoleForms\LangManager.cs" />
<Compile Include="ConsoleForms\LayoutMeta.cs" />
<Compile Include="ConsoleForms\Graphics\ListView.cs" />
<Compile Include="ConsoleForms\Graphics\TextView.cs" />
<Compile Include="ConsoleForms\Graphics\View.cs" />
<Compile Include="ConsoleForms\Gravity.cs" />
<Compile Include="ConsoleForms\Helpers.cs" />
<Compile Include="ConsoleForms\Padding\Padding.cs" />
<Compile Include="ConsoleForms\Padding\AbsolutePadding.cs" />
<Compile Include="ConsoleForms\Padding\RelativePadding.cs" />
<Compile Include="ConsoleForms\Rectangle.cs" />
<Compile Include="ConsoleForms\Region.cs" />
<Compile Include="ConsoleForms\Timer.cs" />
<Compile Include="ConsoleForms\ViewData.cs" />
<Compile Include="Context\NetContext.cs" />
<Compile Include="Networking.cs" />
<Compile Include="Program.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen>
<DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon>
</Compile>
<Compile Include="Context\SessionContext.cs" />
<Compile Include="Context\WelcomeContext.cs" />
</ItemGroup>
<ItemGroup>
<None Include="App.config" />
<None Include="Resources\0x100.e" />
<None Include="Resources\0x100.n" />
<None Include="Resources\0x200.e" />
<None Include="Resources\0x200.n" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Common\Common.csproj">
<Project>{23eb87d4-e310-48c4-a931-0961c83892d7}</Project>
<Name>Common</Name>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Resources\Layout\Common.xml" />
<Content Include="Resources\Layout\Session.xml" />
<Content Include="Resources\Layout\Setup.xml">
<SubType>Designer</SubType>
</Content>
<Content Include="Resources\Layout\Networking.xml">
<SubType>Designer</SubType>
</Content>
<Content Include="Resources\Strings\en_GB\strings.xml" />
<Content Include="Resources\Strings\en_US\strings.xml" />
<Content Include="Resources\Strings\Meta.xml" />
<Content Include="Resources\Strings\sv_SE\strings.xml" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="Properties\Resources.resx">
<Generator>ResXFileCodeGenerator</Generator>
<LastGenOutput>Resources.Designer.cs</LastGenOutput>
</EmbeddedResource>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
</Project>