using System.Collections.Generic;
namespace Wayne.Lib
{
///
/// Provides a version for the application.
///
public class VersionProvider : IVersionProvider
{
///
/// Constructor
///
public VersionProvider()
{
ReleaseComponentVersion = new VersionNumber("0.0.0");
}
///
/// Main component version for the running process. Should be set in code as early as possible in the program.
///
public VersionNumber ReleaseComponentVersion { get; set; }
private readonly Dictionary