您好,我正在构建Windows 10应用程序,并且正在使用NodaTime 2.4.0处理某些时区方案。在调试模式下,它可以正常工作,但是这种和平的代码引发了“聚合异常”,但没有太多细节。
private void SetDateTime()
{
_currentTimeZone = DateTimeZoneProviders.Tzdb.GetSystemDefault();
}
哪个会产生异常:
+ [0] {System.IO.FileNotFoundException: The system cannot find the file specified. (Excep_FromHResult 0x80070002)} System.Exception {System.IO.FileNotFoundException}
我正在使用目标为10240的.net Native在Release上编译应用程序。为什么会发生任何想法?谢谢!