Skip to content

Commit f84bc49

Browse files
author
Manuel Rauber
committed
Renamed almost all vNext to aspnetcore
1 parent 14d223a commit f84bc49

22 files changed

+13
-13
lines changed

Diff for: README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ Both Node.js and ASP.NET Core 1.0 APIs are split into two projects:
2525
* Database name: `CustomerSampleNodejs`
2626
* Username: `CustomerSample`
2727
* Password: `CustomerSample`
28-
* Can be configured in [server/index.js](https://github.com/thinktecture/nodejs-vnext-webapi/blob/master/src/nodejs/WebAPI/server/index.js#L69)
28+
* Can be configured in [server/index.js](https://github.com/thinktecture/nodejs-aspnetcore-webapi/blob/master/src/nodejs/WebAPI/server/index.js#L69)
2929
* ASP.NET Core 1.0:
30-
* Switch the comments within `ConfigureDI` [here](https://github.com/thinktecture/nodejs-vnext-webapi/blob/master/src/vnext/WebAPI/Startup.cs#L108)
30+
* Switch the comments within `ConfigureDI` [here](https://github.com/thinktecture/nodejs-aspnetcore-webapi/blob/master/src/aspNetCore/WebAPI/Startup.cs#L108)
3131
* Default PostgreSQL settings:
3232
* Host: `localhost`
3333
* Database name: `CustomerSampleVNext`
3434
* Username: `CustomerSample`
3535
* Password: `CUstomerSample`
36-
* Can be configured in [Startup.cs](src/vnext/WebAPI/Startup.cs#L103)
36+
* Can be configured in [Startup.cs](src/aspNetCore/WebAPI/Startup.cs#L103)
3737

3838
You can either start both projects as Node.js or as ASP.NET Core 1.0. They won't work together, so you can not use Node.js STS and ASP.NET Core 1.0 Web API.
3939

@@ -60,7 +60,7 @@ To install PostgreSQL on Windows you can use a graphical installer which can be
6060
### ASP.NET Core 1.0
6161

6262
* [ASP.NET 5](https://docs.asp.net/en/latest/index.html).
63-
* After installing ASP.NET 5 you need to execute `dnu restore` in `src/vnext/STS` and `src/vnext/WebAPI`.
63+
* After installing ASP.NET 5 you need to execute `dnu restore` in `src/aspNetCore/STS` and `src/aspNetCore/WebAPI`.
6464

6565
## Starting
6666

@@ -71,8 +71,8 @@ To install PostgreSQL on Windows you can use a graphical installer which can be
7171

7272
### ASP.NET Core 1.0
7373

74-
* STS: To start STS execute `dnx web` in `src/vnext/STS`. It will then be accessible via `http://localhost:5001`.
75-
* Web API: To start Web API execute `dnx web` in `src/vnext/WebAPI`. It will then be accessible via `http://localhost:5000`.
74+
* STS: To start STS execute `dnx web` in `src/aspNetCore/STS`. It will then be accessible via `http://localhost:5001`.
75+
* Web API: To start Web API execute `dnx web` in `src/aspNetCore/WebAPI`. It will then be accessible via `http://localhost:5000`.
7676

7777
### Angular 2 Client
7878

Diff for: package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,22 @@
11
{
2-
"name": "nodejs-vnext-webapi",
2+
"name": "nodejs-aspnetcore-webapi",
33
"version": "1.0.0",
44
"description": "Sample for creating Node.js based Web APIs compared to ASP.NET Core 1.0",
55
"repository": {
66
"type": "git",
7-
"url": "git+https://github.com:thinktecture/nodejs-vnext-webapi.git"
7+
"url": "git+https://github.com:thinktecture/nodejs-aspnetcore-webapi.git"
88
},
99
"keywords": [],
1010
"author": "Thinktecture AG <[email protected]> (http://thinktecture.com)",
1111
"license": "ISC",
1212
"bugs": {
13-
"url": "https://github.com/thinktecture/nodejs-vnext-webapi/issues"
13+
"url": "https://github.com/thinktecture/nodejs-aspnetcore-webapi/issues"
1414
},
1515
"scripts": {
1616
"watch": "gulp watch",
1717
"typings": "typings"
1818
},
19-
"homepage": "https://github.com/thinktecture/nodejs-vnext-webapi#readme",
19+
"homepage": "https://github.com/thinktecture/nodejs-aspnetcore-webapi#readme",
2020
"dependencies": {
2121
"angular2": "2.0.0-beta.6",
2222
"body-parser": "1.15.0",

Diff for: presentation/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,7 @@ <h1>Live Demo</h1>
343343
<h1>Thank you!</h1>
344344
<div style="height: 50px"></div>
345345
<p>
346-
GitHub repository<br/><a href="https://github.com/thinktecture/nodejs-vnext-webapi">https://github.com/thinktecture/nodejs-vnext-webapi</a>
346+
GitHub repository<br/><a href="https://github.com/thinktecture/nodejs-aspnetcore-webapi">https://github.com/thinktecture/nodejs-aspnetcore-webapi</a>
347347
</p>
348348
<div style="height: 100px"></div>
349349
<p><img src="images/ttLogo.png" style="width: 15%" class="tt-logo"/><br/>
@@ -354,7 +354,7 @@ <h1>Thank you!</h1>
354354
<h1>Resources</h1>
355355
<small>
356356
<ul>
357-
<li>GitHub repository: <a href="https://github.com/thinktecture/nodejs-vnext-webapi">https://github.com/thinktecture/nodejs-vnext-webapi</a>
357+
<li>GitHub repository: <a href="https://github.com/thinktecture/nodejs-aspnetcore-webapi">https://github.com/thinktecture/nodejs-aspnetcore-webapi</a>
358358
</li>
359359
<li>Node.js: <a href="https://nodejs.org/en/">https://nodejs.org/</a></li>
360360
<li>Node.js at Paypal: <a href="https://www.paypal-engineering.com/?s=node">https://www.paypal-engineering.com/?s=node</a></li>
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

Diff for: tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"exclude": [
1313
"node_modules",
1414
"src/nodejs",
15-
"src/vnext",
15+
"src/aspNetCore",
1616
"typings/main",
1717
"typings/main.d.ts"
1818
]

0 commit comments

Comments
 (0)