diff --git a/src/NzbDrone.Windows/DotNetRuntimeProvider.cs b/src/NzbDrone.Windows/DotNetRuntimeProvider.cs new file mode 100644 index 000000000..40203278d --- /dev/null +++ b/src/NzbDrone.Windows/DotNetRuntimeProvider.cs @@ -0,0 +1,13 @@ +using System; +using NzbDrone.Common.Processes; + +namespace NzbDrone.Windows +{ + public class DotNetRuntimeProvider : IRuntimeProvider + { + public String GetVersion() + { + return Environment.Version.ToString(); + } + } +} diff --git a/src/NzbDrone.Windows/NzbDrone.Windows.csproj b/src/NzbDrone.Windows/NzbDrone.Windows.csproj index 607f09a4e..4c3d83721 100644 --- a/src/NzbDrone.Windows/NzbDrone.Windows.csproj +++ b/src/NzbDrone.Windows/NzbDrone.Windows.csproj @@ -63,6 +63,7 @@ +