• C# Sublime text3 环境配置(二)


    下载地址:http://www.sublimetext.com/3

    1、安装完之后,tools菜单下最下一个点一下,安装Package Control 插件
    2、Preferences菜单下,点Package Control 点 install Package
    3、安装插件 SublimeREPL 、 SublimeCodeIntel 、 AutoPep8 、ConvertToUTF8
    4、file--set file encoding to--utf-8

    环境变量设置

    5.0

    C:Program FilesMSBuild12.0Bin

    6.0

    C:WindowsMicrosoft.NETFramework64v4.0.30319;

    定制C#.sublime-build文件

    Tools--Build System--New Build System

    复制粘贴以下代码,保存文件名:C#.sublime-build

     1 {
     2     "shell_cmd": "csc /out:"${file_path}/${file_base_name}.exe" "${file}"",
     3     "file_regex": "^(..[^:]*):([0-9]+):?([0-9]+)?:? (.*)$",
     4     "working_dir": "${file_path}",
     5     "selector": "source.cs",
     6     "variants":
     7         [
     8             {
     9                 "name": "Build & Run",
    10                 "shell_cmd": "csc /out:"${file_path}/${file_base_name}.exe" "${file}" && start "${file_base_name}.exe" /d "${file_path}" "${file_base_name}.exe"",
    11                 "working_dir": "${file_path}"
    12             },
    13             {
    14                 "name": "Run",
    15                 "shell_cmd": "start "${file_base_name}.exe" /d "${file_path}" "${file_base_name}.exe"",
    16                 "working_dir": "${file_path}"
    17             },
    18             {
    19                 "name": "Build (Form)",
    20                 "shell_cmd": "csc /t:winexe /r:System.Windows.Forms.dll;System.Drawing.dll /out:"${file_path}/${file_base_name}.exe" "${file}"",
    21                 "working_dir": "${file_path}"
    22             },
    23             {
    24                 "name": "Build & Run (Form)",
    25                 "shell_cmd": "csc /t:winexe /r:System.Windows.Forms.dll;System.Drawing.dll /out:"${file_path}/${file_base_name}.exe" "${file}" && start "${file_base_name}.exe" /d "${file_path}" "${file_base_name}.exe"",
    26                 "working_dir": "${file_path}"
    27             },
    28             {
    29                 "name": "Run (Form)",
    30                 "shell_cmd": "start "${file_base_name}.exe" /d "${file_path}" "${file_base_name}.exe"",
    31                 "working_dir": "${file_path}"
    32             },
    33         ]
    34 }
    C#.sublime-build

    编译运行

    选择编译运行,Build Wtih ,Ctrl + Shift + B

    编译运行,Build,Ctrl + B 

    C#暂停命令行窗口

    Console.ReadLine();

  • 相关阅读:
    何为OOM
    mysql 获取连接id与线程id
    oracle 字符集
    leetcode 542 01 Matrix, 01矩阵 JavaScript解法
    免费的API
    KNN算法
    linux_CentOS7安装MariaDB
    Django_模板标签
    celery_异步任务队列
    Django_设置和读取cookie
  • 原文地址:https://www.cnblogs.com/GoldenEllipsis/p/10342003.html
Copyright © 2020-2023  润新知