Skip to content

Commit a243481

Browse files
committed
Update README.md to reflect server-side code upgrades to .NET 5,0 (from .NET Core 3.1)
1 parent b1d7126 commit a243481

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
# Full-Stack Testing (ASP.NET Core 3.1 & Vue.js)
2-
Prototype application with a Vue.js client that has significant unit testing coverage with Vue Test Utils (Jest as the test runner) and configured for e2e testing with Nightwatch. The web API is built using ASP.NET Core 3.1 and unit/integration testing is handled using xUnit.core. Has a basic, functional UI for executing requests to a back-end web api.
1+
# Full-Stack Testing (.NET 5.0 & Vue.js)
2+
Prototype application with a Vue.js client that has significant unit testing coverage with Vue Test Utils (Jest as the test runner) and configured for e2e testing with Nightwatch. The web API is built using .NET 5.0 and unit/integration testing is handled using xUnit.core. Has a basic, functional UI for executing requests to a back-end web api.
33

44
## Demo
55

@@ -14,12 +14,12 @@ Prototype application with a Vue.js client that has significant unit testing cov
1414
- [`vuex-module-decorators`](https://github.com/championswimmer/vuex-module-decorators) which enables you to write class based vuex store modules
1515
- [`vue-snotify`](https://github.com/artemsky/vue-snotify) snackbar notifications (based off the original library for Angular)
1616
- [`vue-js-modal`](https://github.com/euvl/vue-js-modal) for displaying compiled templates as modal components, or the option to create modals dynamically at runtime (my preferred modal plugin for Vue.js)
17-
- Back-end Web API using ```ASP.NET Core 3.1``` and a seperate ```xUnit.core``` test project (for integration testing of Web API). For both Development and xUnit tests I am using the ```InMemory``` database option with ```Entity Framework Core``` for convienence
17+
- Back-end Web API using ```.NET 5.0``` and a seperate ```xUnit.core``` test project (for integration testing of Web API). For both Development and xUnit tests I am using the ```InMemory``` database option with ```Entity Framework Core``` for convienence
1818

1919
## Setup
2020
1. Install the following (or confirm installed):
21-
- [`.NET Core 3.1 SDK`](https://dotnet.microsoft.com/download/dotnet-core/3.1)
22-
- [`Node.js >= v8`](https://nodejs.org/en/download/)
21+
- [`.NET 5.0 SDK`](https://dotnet.microsoft.com/download/dotnet/5.0)
22+
- [`Node.js >= v10`](https://nodejs.org/en/download/)
2323
2. After cloning the repo, run the command ```npm install``` in the ```ClientApp``` directory to restore all Node packages/dependencies from package.json
2424
3. Open the .sln solution in Visual Studio and make sure all dependencies and Nuget dependencies are installed/restored - won't hurt to rebuild the entire solution (both projects)
2525
4. Two potential ways to start the entire project:

0 commit comments

Comments
 (0)