Visual Studio 哪里可以设置发布和安装的解决方案可以访问资源文件夹? (不只是在调试模式下......)

Where can I set in Visual Studio, that the published and installed solution could acces the resource folder? (Not just in debug mode...)

我的项目有一个包含图片和 xml 文件的资源文件夹。程序 只能在调试模式 下访问文件。当我安装解决方案和 运行 程序时,它不起作用。 如何发布安装后可以访问资源文件夹的 Win Forms 解决方案? 这是我的 VB 代码,可以在 运行 时间内很好地访问文件: myPath = "myResources\" & fileName & ".xml"

正确的路径是:myXmlPath = Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "MyXmlFolder", myFileName & ".xml")文件的正确属性: -构建操作:内容 -复制到输出目录:如果较新则复制