Skip to content

Commit

Permalink
Asp.Net Core 3.1/ Angular 9 Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Ebenezer Monney committed May 11, 2020
1 parent 5b71ac4 commit d3c481e
Show file tree
Hide file tree
Showing 120 changed files with 8,547 additions and 8,800 deletions.
6 changes: 3 additions & 3 deletions DAL/DAL.csproj
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFramework>netcoreapp3.0</TargetFramework>
<Version>3.1.0</Version>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>4.0.0</Version>
<Description>Data Access Layer for the Quick Application template</Description>
<Copyright>Copyright © 2019 www.ebenmonney.com</Copyright>
<PackageProjectUrl>https://www.ebenmonney.com/quickapp</PackageProjectUrl>
Expand All @@ -11,7 +11,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.0.0" />
<PackageReference Include="Microsoft.AspNetCore.Identity.EntityFrameworkCore" Version="3.1.3" />
</ItemGroup>

</Project>
3 changes: 3 additions & 0 deletions QuickApp/ClientApp/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[*.ts]
quote_type = single

[*.md]
max_line_length = off
trim_trailing_whitespace = false
4 changes: 2 additions & 2 deletions QuickApp/ClientApp/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Quickapp
# QuickApp

This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 8.3.19.
This project was generated with [Angular CLI](https://github.com/angular/angular-cli) version 9.1.4.

## Development server

Expand Down
7 changes: 3 additions & 4 deletions QuickApp/ClientApp/angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,13 @@
"build": {
"builder": "@angular-devkit/build-angular:browser",
"options": {
"aot": true,
"outputPath": "dist",
"index": "src/index.html",
"main": "src/main.ts",
"polyfills": "src/polyfills.ts",
"tsConfig": "tsconfig.app.json",
"progress": true,
"progress": false,
"extractCss": true,
"assets": [
"src/assets"
Expand All @@ -34,9 +35,7 @@
"node_modules/jquery/dist/jquery.slim.js",
"node_modules/popper.js/dist/umd/popper.js",
"node_modules/bootstrap/dist/js/bootstrap.js",
"node_modules/bootstrap-toggle/js/bootstrap-toggle.js",
"node_modules/bootstrap-select/dist/js/bootstrap-select.js",
"node_modules/bootstrap-datepicker/dist/js/bootstrap-datepicker.js"
"node_modules/bootstrap-toggle/js/bootstrap-toggle.js"
]
},
"configurations": {
Expand Down
3 changes: 1 addition & 2 deletions QuickApp/ClientApp/e2e/src/app.e2e-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,8 @@
// =============================

import { AppPage } from './app.po';
import { browser, logging } from 'protractor';

describe('workspace-project App', () => {
describe('QuickApp App', () => {
let page: AppPage;

beforeEach(() => {
Expand Down
6 changes: 3 additions & 3 deletions QuickApp/ClientApp/e2e/src/app.po.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@
import { browser, by, element } from 'protractor';

export class AppPage {
navigateTo() {
return browser.get(browser.baseUrl) as Promise<any>;
navigateTo(): Promise<unknown> {
return browser.get(browser.baseUrl) as Promise<unknown>;
}

getAppTitle() {
getAppTitle(): Promise<string> {
return element(by.css('app-root .appTitle')).getText() as Promise<string>;
}
}
Loading

0 comments on commit d3c481e

Please sign in to comment.