26 lines
418 B
C#
26 lines
418 B
C#
using System;
|
|
using System.Configuration;
|
|
using CYQ.Data.SQL;
|
|
using CYQ.Data.Tool;
|
|
using System.Web;
|
|
|
|
namespace CYQ.Data
|
|
{
|
|
|
|
public static partial class AppConfig
|
|
{
|
|
/// <summary>
|
|
/// 当前是否.NET Core环境。
|
|
/// </summary>
|
|
public static bool IsNetCore
|
|
{
|
|
get
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|