Caskia
Caskia
首先感谢你们对该项目的维护。 ##### 问题描述 创建控制台应用程序,引用WxOpen包,编译后查看runtimeconfig.json文件生成了错误的Runtime Framework。 造成该错误的原因是在 [xxx.netcore3.csproj](https://github.com/JeffreySu/WeiXinMPSDK/blob/master/src/Senparc.Weixin.WxOpen/src/Senparc.Weixin.WxOpen/Senparc.Weixin.WxOpen/Senparc.Weixin.WxOpen.netcore3.csproj) 文件中编译条件为netcoreapp3.0时,都默认带上了Framework Microsoft.AspNetCore.App ``` ``` ##### 该问题的影响 - 当为控制台程序的时候,必须要引入AspNetCore的Sdk,而非NetCore的Sdk造成包过大。 - 如果想实现一个后台应用程序,那么该程序也必须是作为网站应用来运行 - 具体区别可以参照该[文档](https://natemcmaster.com/blog/2018/08/29/netcore-primitives-2/) ##### 期待结果 ``` { "runtimeOptions": { "tfm": "netcoreapp3.0", "framework": { "name":...
- verison: 2.6.0 - attendee.cs ``` public class Attendee : FullAuditedEntity { #region Const Properties public const int BarcodeLength = 12; public const int CheckCodeLength = 6; public const string...