瀏覽代碼

Cleaning up files for 3.0.0-beta

Sebastien Ros 8 年之前
父節點
當前提交
d7c0962d5e
共有 5 個文件被更改,包括 2 次插入69 次删除
  1. 0 6
      Jint.sln
  2. 0 45
      Jint/.vscode/launch.json
  3. 0 14
      Jint/.vscode/tasks.json
  4. 2 2
      Jint/project.json
  5. 0 2
      global.json

+ 0 - 6
Jint.sln

@@ -22,8 +22,6 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Jint.Tests.Ecma", "Jint.Tes
 EndProject
 EndProject
 Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Jint.Tests.CommonScripts", "Jint.Tests.CommonScripts\Jint.Tests.CommonScripts.xproj", "{B815F239-6409-4BA7-9461-18317AA2DBED}"
 Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Jint.Tests.CommonScripts", "Jint.Tests.CommonScripts\Jint.Tests.CommonScripts.xproj", "{B815F239-6409-4BA7-9461-18317AA2DBED}"
 EndProject
 EndProject
-Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Esprima", "..\Esprima.NET\src\Esprima\Esprima.xproj", "{C9C93BFD-D276-4537-8724-4268520BF3C6}"
-EndProject
 Global
 Global
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 	GlobalSection(SolutionConfigurationPlatforms) = preSolution
 		Debug|Any CPU = Debug|Any CPU
 		Debug|Any CPU = Debug|Any CPU
@@ -54,10 +52,6 @@ Global
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Debug|Any CPU.Build.0 = Debug|Any CPU
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Release|Any CPU.ActiveCfg = Release|Any CPU
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Release|Any CPU.Build.0 = Release|Any CPU
 		{B815F239-6409-4BA7-9461-18317AA2DBED}.Release|Any CPU.Build.0 = Release|Any CPU
-		{C9C93BFD-D276-4537-8724-4268520BF3C6}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
-		{C9C93BFD-D276-4537-8724-4268520BF3C6}.Debug|Any CPU.Build.0 = Debug|Any CPU
-		{C9C93BFD-D276-4537-8724-4268520BF3C6}.Release|Any CPU.ActiveCfg = Release|Any CPU
-		{C9C93BFD-D276-4537-8724-4268520BF3C6}.Release|Any CPU.Build.0 = Release|Any CPU
 	EndGlobalSection
 	EndGlobalSection
 	GlobalSection(SolutionProperties) = preSolution
 	GlobalSection(SolutionProperties) = preSolution
 		HideSolutionNode = FALSE
 		HideSolutionNode = FALSE

+ 0 - 45
Jint/.vscode/launch.json

@@ -1,45 +0,0 @@
-{
-    "version": "0.2.0",
-    "configurations": [
-        {
-            "name": ".NET Core Launch (console)",
-            "type": "coreclr",
-            "request": "launch",
-            "preLaunchTask": "build",
-            "program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
-            "args": [],
-            "cwd": "${workspaceRoot}",
-            "stopAtEntry": false
-        },
-        {
-            "name": ".NET Core Launch (web)",
-            "type": "coreclr",
-            "request": "launch",
-            "preLaunchTask": "build",
-            "program": "${workspaceRoot}/bin/Debug/<target-framework>/<project-name.dll>",
-            "args": [],
-            "cwd": "${workspaceRoot}",
-            "stopAtEntry": false,
-            "launchBrowser": {
-                "enabled": true,
-                "args": "${auto-detect-url}",
-                "windows": {
-                    "command": "cmd.exe",
-                    "args": "/C start ${auto-detect-url}"
-                },
-                "osx": {
-                    "command": "open"
-                },
-                "linux": {
-                    "command": "xdg-open"
-                }
-            }
-        },
-        {
-            "name": ".NET Core Attach",
-            "type": "coreclr",
-            "request": "attach",
-            "processName": "<example>"
-        }
-    ]
-}

+ 0 - 14
Jint/.vscode/tasks.json

@@ -1,14 +0,0 @@
-{
-    "version": "0.1.0",
-    "command": "dotnet",
-    "isShellCommand": true,
-    "args": [],
-    "tasks": [
-        {
-            "taskName": "build",
-            "args": [],
-            "isBuildCommand": true,
-            "problemMatcher": "$msCompile"
-        }
-    ]
-}

+ 2 - 2
Jint/project.json

@@ -1,5 +1,5 @@
 {
 {
-  "version": "2.10.2",
+  "version": "3.0.0-beta-001",
   "title": "Jint",
   "title": "Jint",
   "description": "Javascript interpreter for .NET which provides full ECMA 5.1 compliance.",
   "description": "Javascript interpreter for .NET which provides full ECMA 5.1 compliance.",
   "language": "en-US",
   "language": "en-US",
@@ -34,6 +34,6 @@
     }
     }
   },
   },
   "dependencies": {
   "dependencies": {
-    "Esprima": "1.0.0-alpha-*"
+    "Esprima": "1.0.0-beta-*"
   }
   }
 }
 }

+ 0 - 2
global.json

@@ -1,6 +1,4 @@
 {
 {
   "projects": [
   "projects": [
-    "../Esprima.NET/src/Esprima",
-    "../Esprima.NET/src"
   ]
   ]
 }
 }