- Go to options
- Search for "nuget"
- Click on "package sources"
- Click on the top right "+" button
- Fill the fields with Name: nuget, Source: https://api.nuget.org/v3/index.json
- Click update
- Click ok
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Online citation | |
@online{, | |
title="", | |
url="" | |
} | |
# Unordered list | |
\begin{itemize} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// add imports | |
import { RouterModule, Routes } from '@angular/router'; | |
// declare here all your routes | |
const routes: Routes = [ | |
{ path: 'page', component: PageComponent }, | |
// other route paths | |
]; | |
// add this to @NgModule imports: |