mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2026-04-20 22:14:34 -04:00
14 lines
258 B
C#
14 lines
258 B
C#
using System;
|
|
using NzbDrone.Common.Processes;
|
|
|
|
namespace NzbDrone.Windows
|
|
{
|
|
public class DotNetRuntimeProvider : IRuntimeProvider
|
|
{
|
|
public String GetVersion()
|
|
{
|
|
return Environment.Version.ToString();
|
|
}
|
|
}
|
|
}
|