Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想使用 Visual Studio 在 dll 项目中插入一个外部 INI 文件。有可能这样做吗?
您可以将任何类型的文件添加到您的项目中,但这可能无法解决您的问题。当 dll 尝试读取文件时,它可能找不到它。 您可以将数据嵌入到您的 dll 代码中,但这违背了拥有 ini 文件的目的。如果您想更改配置,则需要重新构建文件。 您可以编写一个构建后步骤以始终将 ini 文件复制到该$(OutDir)文件夹,然后如果您尝试在调试器下运行它,它将存在,但最终您需要在发布此文件时将 ini 文件包含在 dll 中。
$(OutDir)