Skip to content

Commit

Permalink
Create C# client for handling requests for existing Paratext data. (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
FoolRunning authored Feb 22, 2023
2 parents ad51145 + 87259aa commit 72b26a8
Show file tree
Hide file tree
Showing 17 changed files with 1,160 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,7 @@ insert_final_newline = true

[*.md]
trim_trailing_whitespace = false

[*.cs]
indent_size = 4

22 changes: 22 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,28 @@
{
"version": "0.2.0",
"configurations": [
{
"name": ".NET Core Launch",
"type": "coreclr",
"request": "launch",
"preLaunchTask": "build",
"program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/ParanextDataProvider",
"args": [],
"cwd": "${workspaceFolder}",
"stopAtEntry": false,
"windows": {
"program": "${workspaceFolder}/c-sharp/bin/Debug/net7.0/ParanextDataProvider.exe"
}
},
{
"name": ".NET Core Attach",
"type": "coreclr",
"request": "attach",
"processName": "ParanextDataProvider",
"windows": {
"processName": "ParanextDataProvider.exe"
}
},
{
"name": "Electron: Main",
"type": "node",
Expand Down
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,12 @@ cd paranext-core
npm install
```

Build the C# code:

```bash
npm run build:data
```

## Starting Development

Start the app in the `dev` environment:
Expand Down
Loading

0 comments on commit 72b26a8

Please sign in to comment.