Skip to content

Instantly share code, notes, and snippets.

@martinkunc
Created October 15, 2021 11:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save martinkunc/e3822c26d8e6ecfacd761b08d67af740 to your computer and use it in GitHub Desktop.
Save martinkunc/e3822c26d8e6ecfacd761b08d67af740 to your computer and use it in GitHub Desktop.
$ /c/Program\ Files/Git/bin/tree.exe -I 'bin|obj|node_modules'
.
├── Controllers
│   └── WeatherForecastController.cs
├── Models
│   └── WeatherForecast.cs
├── Pages
│   ├── Error.cshtml
│   ├── Error.cshtml.cs
│   ├── Index.cshtml
│   ├── Index.cshtml.cs
│   ├── Privacy.cshtml
│   ├── Privacy.cshtml.cs
│   ├── Shared
│   │   └── _Layout.cshtml
│   ├── _ViewImports.cshtml
│   └── _ViewStart.cshtml
├── Program.cs
├── Properties
│   └── launchSettings.json
├── Scripts
│   ├── Pages
│   │   ├── Index.js
│   │   ├── Index.js.map
│   │   ├── Index.ts
│   │   ├── Shared
│   │   │   ├── _Layout.js
│   │   │   ├── _Layout.js.map
│   │   │   ├── _Layout.ts
│   │   │   ├── custom.scss
│   │   │   └── style.scss
│   │   └── index.css
│   └── Services
│   └── weather
│   └── weather.ts
├── appsettings.Development.json
├── appsettings.json
├── package-lock.json
├── package.json
├── tsconfig.app.json
├── tsconfig.json
├── tsconfig.spec.json
├── web.csproj
├── web.csproj.user
├── webpack.config.js
└── wwwroot
├── css
│   └── scripts
│   └── Pages
│   ├── Index.css
│   └── Index.css.map
└── js
└── scripts
├── Pages
│   ├── Index.js
│   ├── Index.js.map
│   └── Shared
│   ├── _Layout.js
│   └── _Layout.js.map
└── Services
└── weather
├── weather.js
└── weather.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment