对于用 C# 编写的控制台应用程序,哪个 .exe 文件是正确的?你也可以解释一下 Build/Release
Which is the correct .exe file to use for a console application written in C#? Also can you please explain about Build/Release
我有一个用 C# 编写的简单控制台应用程序。我想从 SqlServer Agent jon(CmdExec) 运行 使用它的 .exe 文件。
我构建应用程序以获取 .exe 文件,现在我对 bin 和 obj 这两个文件夹感到困惑。这两个文件夹都包含 Debug 和 Release 文件夹,里面有 exe。
你能告诉我,我应该在生产中使用哪个 .exe 文件吗?
谢谢
您需要使用 bin 文件夹中的那个。读一读:
What are the obj and bin folders (created by Visual Studio) used for?
您应该使用 bin 文件夹中的那个。
obj文件夹用于存放编译时的中间文件
我有一个用 C# 编写的简单控制台应用程序。我想从 SqlServer Agent jon(CmdExec) 运行 使用它的 .exe 文件。
我构建应用程序以获取 .exe 文件,现在我对 bin 和 obj 这两个文件夹感到困惑。这两个文件夹都包含 Debug 和 Release 文件夹,里面有 exe。
你能告诉我,我应该在生产中使用哪个 .exe 文件吗?
谢谢
您需要使用 bin 文件夹中的那个。读一读:
What are the obj and bin folders (created by Visual Studio) used for?
您应该使用 bin 文件夹中的那个。
obj文件夹用于存放编译时的中间文件