《CLR Via C#》Developer Command Prompt for VS2013

本文讲解"《CLR Via C#》Developer Command Prompt for VS2013",用于解决相关问题。



1、如何找到Developer Command Prompt for VS2013呢?


打开路径 C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2013, 我们会看到Visual Studio Tools文件夹快捷方式

《CLR Via C#》Developer Command Prompt for VS2013

双击Visual Studio Tools文件快捷方式,会跳转到C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts目录下。

《CLR Via C#》Developer Command Prompt for VS2013

在上面的目录当中,就可以看到Developer Command Prompt for VS2013。


2、如何将Developer Command Prompt for VS2013放到开始菜单呢?

请注意的是:这一步并不是必须要做的,只是为了方便而已;而且这里的步骤针对是Win8操作系统。别的系统,我也不太清楚对不对。下面的内容参照的是“Where is Developer Command Prompt for VS2013?”地址是http://stackoverflow.com/questions/21476588/where-is-developer-command-prompt-for-vs2013。


For some reason, it doesn't properly add an icon when running Windows 8+. Here's how I solved it.Using Windows Explorer, navigate to:

C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Visual Studio 2013

In that folder, you'll see a shortcut named Visual Studio Tools that maps to (assuming default installation):

C:\Program Files (x86)\Microsoft Visual Studio 12.0\Common7\Tools\Shortcuts

Double-click the shortcut (or go to the folder above).

From that folder, copy the shortcut named Developer Command Prompt for VS2013 (and any others you find useful) to the first directory (for the Start Menu). You'll likely be prompted for administrative access (do so).

Once you've done that, you'll now have an icon available for the 2013 command prompt.



3、关于命令行的一些切换目录的简单命令

如果想跳转到E盘,就在命令行中输入“E:”

如果跳转到子目录,就在命令行中输入“cd SubDirectoryName”

如果跳转到父级目录,就在命令行中输入“cd ..”

关于 "《CLR Via C#》Developer Command Prompt for VS2013" 就介绍到此。希望多多支持编程宝库

本文讲解"《CLR Via C#》 C# Compiler",用于解决相关问题。1、CSC.exe的存放位置如果想要使用C# Compiler,只要在命令提示符(command prompt ...