18 lines
410 B
C#
18 lines
410 B
C#
using System;
|
|
using System.Runtime.Versioning;
|
|
|
|
namespace Microsoft.Net.Runtime
|
|
{
|
|
[AssemblyNeutral]
|
|
public interface IApplicationEnvironment
|
|
{
|
|
string ApplicationName { get; }
|
|
string Version { get; }
|
|
string ApplicationBasePath { get; }
|
|
FrameworkName TargetFramework { get; }
|
|
}
|
|
|
|
[AssemblyNeutral]
|
|
public class AssemblyNeutralAttribute : Attribute { }
|
|
}
|