Advertisement

配置C#环境在VSCode中

阅读量:

lauch.json:

复制代码
 {

    
  
    
   "version": "0.2.0",
    
  
    
   "configurations": [
    
  
    
        {
    
  
    
            "name": "MyLauncher",
    
  
    
            "type":"clr",
    
  
    
            "request": "launch",
    
  
    
            "preLaunchTask": "mybuild",
    
  
    
            "program": "${workspaceFolder}/bin/Debug/test.exe",
    
  
    
            "args":[],
    
  
    
            "console": "internalConsole",
    
  
    
            "stopAtEntry": false,
    
  
    
            "internalConsoleOptions": "openOnSessionStart"
    
  

全部评论 (0)

还没有任何评论哟~