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 (2019) 上制作了一个程序,想在没有打开 Visual Studio 的情况下在不使用调试模式的情况下运行它。
调试 > 不调试就开始。
快捷键是 Ctrl-F5。
编辑:构建后,您可以简单地在构建输出文件夹中启动可执行代码。例如,对于一个可执行的 C# .NET 项目,这将类似于您的项目名称/MyProject/bin/Debug/MyProject.exe 在哪里MyProject,而 Debug 将是配置名称(例如 Debug、Release、x86 等)。
/MyProject/bin/Debug/MyProject.exe
MyProject