C#与Visual Studio:发布的应用程序无法在安装后运行

时间:2019-08-05 06:17:23

标签: c# visual-studio installation windows-10 publish

我用C#编写了一个简单的桌面提醒应用程序,并且可以毫无问题地发布和安装它。但是,当我尝试运行该应用程序时,该图标会在系统托盘中显示一会儿,然后消失,然后该应用程序将无法打开或在任何地方显示。我检查了事件查看器,它说“应用程序错误”和“ .NET运行时”存在错误

如果我从Visual Studio运行它,它可以完美运行。仅当我尝试安装应用程序然后运行它时,才会出现此问题。我尚未在其他计算机上进行测试。

我已经在Visual Studio的“应用程序”选项卡中检查了我的目标框架,它显示为.NET Framework 4.5.2。在设置先决条件时,我已经确保它匹配,但是并不能解决问题。

“应用程序错误”详细信息:

Faulting application name: Reminder.exe, version: 1.0.0.0, time stamp: 0x5d47ba36
Faulting module name: KERNELBASE.dll, version: 10.0.17134.885, time stamp: 0x59816e73
Exception code: 0xe0434352
Fault offset: 0x00112cf2
Faulting process id: 0x1b10
Faulting application start time: 0x01d54b590d580089
Faulting application path: C:\Users\charl\AppData\Local\Apps\2.0\5TG7Y9JQ.2CR\0BOH7HGZ.WVN\remi..tion_71aa56c27f5d79b6_0001.0000_31f9cf6345a508a8\Reminder.exe
Faulting module path: C:\WINDOWS\System32\KERNELBASE.dll
Report Id: d1a4e88f-6eb2-4655-a7fe-bbff68de9c4c
Faulting package full name: 
Faulting package-relative application ID: 

“。NET运行时”详细信息:

Application: Reminder.exe
Framework Version: v4.0.30319
Description: The process was terminated due to an unhandled exception.
Exception Info: System.IO.FileNotFoundException
   at Reminder_desktop_application.FileStreamer.GetData()
   at Reminder_desktop_application.TaskControler.LoadTasks()
   at Reminder_desktop_application.Reminder..ctor()
   at Reminder_desktop_application.Program.Main()

错误似乎来自: 获取数据:

    public string[] GetData()
    {
        try
        {
            data = System.IO.File.ReadAllLines(FILE_NAME);
            return data;
        }
        catch (FileNotFoundException e)
        {
            throw new FileNotFoundException(e.ToString());
        }
    }

和LoadTasks:

    public void LoadTasks()
    {
        string[] lines = dataStreamer.GetData();
        string[] words;
        foreach(string line in lines)
        {
            words = line.Split(',').ToArray<string>();
            this.Add(new Task(words[2], Convert.ToDateTime(words[0]), TimeSpan.Parse(words[1]), Convert.ToBoolean(words[3])));
        }
    }

1 个答案:

答案 0 :(得分:1)

您可以检查文件是否存在,它将返回文件内容,如果不存在,它将返回一个空数组,如下所示:

    public IEnumerable<string> GetData()
    {
        // if file not exist return empty list 
        return !File.Exists(FILE_NAME) ? Enumerable.Empty<string>() : File.ReadAllLines(FILE_NAME);
    }

现在您可以像这样调用您的方法

    dataStreamer.GetData().ToArray();