Follow these steps before trying to run any code.
- First, generate a Certificate Authority (CA).
openssl genrsa -out rootCA.key 2048
- Second, self-sign it.
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<!-- This file exposes the following parameters --> | |
<!-- TailwindVersion: The version of the Tailwind Standalone CLI to download. --> | |
<!-- TailwindDownloadPath: The path to where to download the Tailwind Standalone CLI. This property is optional, and defaults to %LOCALAPPDATA% on Windows, and $XDG_CACHE_HOME on Linux and MacOS. --> | |
<!-- TailwindInputStyleSheetPath: The path to the input stylesheet. --> | |
<!-- TailwindOutputStyleSheetPath: The path to the output stylesheet. --> | |
<!-- TailwindOptimizeOutputStyleSheet: Whether to optimize the output stylesheet. This property is optional, and defaults to false. --> | |
<!-- TailwindMinifyOutputStyleSheet: Whether to minify the output stylesheet. This property is optional, and defaults to false when Configuration is Debug, and true when Configuration is Release. --> | |
<!-- TailwindDownloadUrl: The URL to the Tailwind Standalone CLI. This property is optional, and defau |
import { HttpClientModule } from '@angular/common/http'; | |
import { NgModule } from '@angular/core'; | |
import { CommonHttpClient } from './http-client.service'; | |
@NgModule({ | |
imports: [ | |
HttpClientModule | |
], | |
providers: [ |
grammar AbstractClass; | |
prog : abstractclass; | |
abstractclass : visibility abstr clas CLASSNAME OPEN_BRACKET statement+ CLOSE_BRACKET; | |
visibility : ('public'|'protected'|'internal'|'private'); | |
abstr : 'abstract'; | |
clas : 'class'; |