vb.net运行应用程序时出现IsFirstRun错误

时间:2014-11-03 22:12:34

标签: vb.net

我在vb.net中有这段代码

If My.Application.Deployment.IsFirstRun Then

End If

但是当我运行该程序时,它显示错误说:

application identity is not set

1 个答案:

答案 0 :(得分:0)

在使用Deployment属性之前,您可能需要使用ClickOnce检查应用程序是否已实际部署。

If My.Application.IsNetworkDeployed Then
    If My.Application.Deployment.IsFirstRun Then
        '...
    End If
End If