-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅ ENS.Infrastructure Project Upgrade.
- Loading branch information
Showing
4 changed files
with
9,584 additions
and
6,631 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
{ | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "localhost (Edge)", | ||
"type": "edge", | ||
"request": "launch", | ||
"url": "http://localhost:3000", | ||
"webRoot": "${workspaceFolder}/public" | ||
}, | ||
{ | ||
"name": "localhost (Chrome)", | ||
"type": "chrome", | ||
"request": "launch", | ||
"url": "http://localhost:3000", | ||
"webRoot": "${workspaceFolder}/public" | ||
}, | ||
{ | ||
"name": "Debug node process", | ||
"type": "node", | ||
"request": "launch", | ||
"cwd": "${workspaceFolder}", | ||
"program": "${workspaceFolder}/truffle-config.js", | ||
"skipFiles": [ | ||
"<node_internals/**" | ||
], | ||
"stopOnEntry": true, | ||
"console": "externalTerminal", | ||
"env": { | ||
"port": "3000" | ||
} | ||
} | ||
], | ||
"compounds": [ | ||
{ | ||
"name": "Launch Node and Browser", | ||
"configurations": [ | ||
"Debug node process", | ||
"localhost (Chrome)" | ||
] | ||
} | ||
] | ||
} |
8 changes: 8 additions & 0 deletions
8
Texnomic.ENS.Infrastructure/Texnomic.ENS.Infrastructure.esproj
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<Project Sdk="Microsoft.VisualStudio.JavaScript.Sdk/0.5.89-alpha"> | ||
<PropertyGroup> | ||
<!--Command to run on project build--> | ||
<BuildCommand> </BuildCommand> | ||
<!--Command to run on project clean--> | ||
<CleanCommand> </CleanCommand> | ||
</PropertyGroup> | ||
</Project> |
Oops, something went wrong.