﻿
This directory contains source files of other (external) applications which
are "parked" in the current project for easier maintenance of their code.

In this way, these external appllications do not need their project in the 
source repository, but they can have a project (e.g. to enable users extend
the applications) in the deployed directory.

The current project acts as host project for such applications. Typically,
there is an option to run a whole application for the host project (e.g.
via special command-line options or via shell interpreter), which makes 
comfortable debugging possible.


LIST OF HOSTED EXTERNAL APPLICATIONS:

**** directory HashGui:
  GUI-based Application for calculation and verification of file hashes;
Files:
  ProgramHashGui.cs 
      - main program (just a class of the same name, Main() method and call to 
	  MainHashGui()), not included in host project. Class is partial.
  SharedProgramHashGui:
      - contains other part of the ProgramHashGui class containing the 
	  MainHashGui() method. Also contains some other classes for application.
	  More things are put to one file, such that hosted application (together
	  with its external project in the deploy directory) is easy to maintain.

**** directory HashShell:
  Shell (command-line) application for calculation and verification of file hashes;
Files:
  ProgramHashShell.cs 
      - main program (just a class of the same name, Main() method and call to 
	  MainHashShell()), not included in host project. Class is partial.
  SharedProgramHashShell:
      - contains other part of the ProgramHashShell class containing the 
	  MainHashShell() method. Also contains some other classes for application.
	  More things are put to one file, such that hosted application (together
	  with its external project in the deploy directory) is easy to maintain.

