Commit f2a95316 authored by u15767's avatar u15767
Browse files

initial commit

parents
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+4 −0
Original line number Diff line number Diff line
node_modules

*~
 No newline at end of file

openapitools.json

0 → 100644
+7 −0
Original line number Diff line number Diff line
{
  "$schema": "node_modules/@openapitools/openapi-generator-cli/config.schema.json",
  "spaces": 2,
  "generator-cli": {
    "version": "5.3.1"
  }
}

package-lock.json

0 → 100644
+0 −0

File added.

Preview size limit exceeded, changes collapsed.

package.json

0 → 100644
+17 −0
Original line number Diff line number Diff line
{
  "name": "ISG ARF World Storage C# Client",
  "version": "0.0.1",
  "description": "ISG ARF World Storage C# Client",
  "scripts": {
    "clean": "rm -rf generated_client",
    "generate": "npx @openapitools/openapi-generator-cli generate -i ../ISG-ARF-005-API/API/OpenAPI.yml -g csharp-netcore -o generated_client",
    "build": "dotnet build generated_client"
  },
  "devDependencies": {
    "@openapitools/openapi-generator-cli": "^2.4.23",
    "dotnet-sdk-3.1": "^3.1.1007"
  },
  "dependencies": {
    "dotnet-3.1": "*"
  }
}