[背景]
新项目需要跨平台,原来积累的.NET类库需要改造为.NET Core。
[直播]
- 新增加的项目不支持排除文件
- 不支持定义条件编译常量,虽然在项目中能使用#if语法,但无地方定义DefineConstants
- 使用nuget时,不能区分哪些可以引用,只有强制引用时会报出异常 error: Package xxx is not compatible with netstandard1.6
- 不支持序列化和xml操作
- (需要:Install-Package System.Xml.XmlDocument , Install-Package System.Runtime.Serialization.Formatters -Pre, Install-Package System.Xml.XmlSerializer)
- XmlDocument
- XmlIgnore
- Serializable
- XmlNode
- BinaryFormatter
- SoapFormatter
- InflaterInputStream
- DataContractSerializer (Install-Package System.Runtime.Serialization.Xml)
- DataContractJsonSerializer(Install-Package System.Runtime.Serialization.Json)
- 部分反射需要改造
- 比如Type.GetProperties()要改为Type.GetTypeInfo().GetProperties()
- 不支持Assembly.GetExecutingAssembly() https://forums.asp.net/t/2001385.aspx
- 不支持部分对象:
- ArrayList
- Hashtable
- HybridDictionary
- BindingList
- Thread(Install-Package System.Threading.Thread)
- Process(Install-Package System.Diagnostics.Process)
- HttpContext
- AppDomain
- DataSet / DataTable / DBNull
- 注册表无法访问
- RegistryKey
- 不支持nHibernate,nHibernate尚未升级支持Core
- 不支持log4net
- 不支持相关配置对象:
- ConfigurationManager
- WebConfigurationManager
- ConfigurationSection
- 不支持绘图
- System.Drawing
- System.Drawing.Size
- 无法使用相关Web对象
- System.Web.HttpUtility.HtmlDecode
- 很多Stream没有了Close()方法,直接替换为Dispose()
- DateTime.Now.ToShortDateString() 替换为 DateTime.Now.ToString("yyyy-MM-dd")
- 不支持部分Attribute
- DescriptionAttribute
- WebResponse/WebRequest对象有变化
- 不支持:httpWebResponse.ContentEncoding,无法识别是否响应加了GZip,也或许能自动识别
- 不支持:httpWebRequest.Referer / .UserAgent 无法设置请求浏览器和来源地址
[感受]
- Core的改造工作不是那么容易。要是有转换工具就好了。
- 或是原有的工程不用改造,在Linux中使用Docker技术来模拟.net需要的环境就好了;
- 原有的项目的特性未保留下来,比如:排除部分文件,添加链接文件;