Added implementation of IRuntimeProvider for Windows

This commit is contained in:
Mark McDowall
2014-07-24 23:40:55 -07:00
parent a4500606a9
commit 0d112075cb
2 changed files with 14 additions and 0 deletions
@@ -0,0 +1,13 @@
using System;
using NzbDrone.Common.Processes;
namespace NzbDrone.Windows
{
public class DotNetRuntimeProvider : IRuntimeProvider
{
public String GetVersion()
{
return Environment.Version.ToString();
}
}
}