├── .gitignore
├── BlazorDemo
├── .gitignore
├── wwwroot
│ ├── get.png
│ ├── get2.png
│ ├── icon.png
│ ├── favicon.ico
│ ├── header_small.png
│ ├── background_small.png
│ ├── css
│ │ └── open-iconic
│ │ │ ├── font
│ │ │ └── fonts
│ │ │ │ ├── open-iconic.eot
│ │ │ │ ├── open-iconic.otf
│ │ │ │ ├── open-iconic.ttf
│ │ │ │ └── open-iconic.woff
│ │ │ ├── ICON-LICENSE
│ │ │ └── README.md
│ ├── monaco-editor
│ │ ├── min
│ │ │ └── vs
│ │ │ │ ├── base
│ │ │ │ └── browser
│ │ │ │ │ └── ui
│ │ │ │ │ └── codicons
│ │ │ │ │ └── codicon
│ │ │ │ │ └── codicon.ttf
│ │ │ │ └── basic-languages
│ │ │ │ ├── azcli
│ │ │ │ └── azcli.js
│ │ │ │ ├── ini
│ │ │ │ └── ini.js
│ │ │ │ ├── csp
│ │ │ │ └── csp.js
│ │ │ │ ├── xml
│ │ │ │ └── xml.js
│ │ │ │ ├── scheme
│ │ │ │ └── scheme.js
│ │ │ │ ├── sb
│ │ │ │ └── sb.js
│ │ │ │ ├── bat
│ │ │ │ └── bat.js
│ │ │ │ ├── dockerfile
│ │ │ │ └── dockerfile.js
│ │ │ │ ├── pascaligo
│ │ │ │ └── pascaligo.js
│ │ │ │ ├── cameligo
│ │ │ │ └── cameligo.js
│ │ │ │ ├── lua
│ │ │ │ └── lua.js
│ │ │ │ ├── graphql
│ │ │ │ └── graphql.js
│ │ │ │ ├── objective-c
│ │ │ │ └── objective-c.js
│ │ │ │ ├── lexon
│ │ │ │ └── lexon.js
│ │ │ │ ├── mips
│ │ │ │ └── mips.js
│ │ │ │ ├── go
│ │ │ │ └── go.js
│ │ │ │ ├── sophia
│ │ │ │ └── sophia.js
│ │ │ │ ├── r
│ │ │ │ └── r.js
│ │ │ │ ├── shell
│ │ │ │ └── shell.js
│ │ │ │ ├── java
│ │ │ │ └── java.js
│ │ │ │ ├── fsharp
│ │ │ │ └── fsharp.js
│ │ │ │ ├── pascal
│ │ │ │ └── pascal.js
│ │ │ │ ├── python
│ │ │ │ └── python.js
│ │ │ │ ├── powershell
│ │ │ │ └── powershell.js
│ │ │ │ ├── kotlin
│ │ │ │ └── kotlin.js
│ │ │ │ ├── yaml
│ │ │ │ └── yaml.js
│ │ │ │ ├── redis
│ │ │ │ └── redis.js
│ │ │ │ ├── tcl
│ │ │ │ └── tcl.js
│ │ │ │ ├── hcl
│ │ │ │ └── hcl.js
│ │ │ │ └── coffee
│ │ │ │ └── coffee.js
│ │ ├── LICENSE
│ │ └── package.json
│ └── sample-data
│ │ ├── SampleCode.txt
│ │ └── weather.json
├── 2do.txt
├── App.razor
├── _Imports.razor
├── Shared
│ ├── MainLayout.razor
│ ├── SurveyPrompt.razor
│ └── NavMenu.razor
├── BlazorDemo.csproj
├── Program.cs
└── Properties
│ └── launchSettings.json
├── RoslynWeb
├── .gitignore
├── Properties
│ └── PublishProfiles
│ │ └── FolderProfile.pubxml
└── RoslynWeb.csproj
├── BlazorDemoServer
├── .gitignore
├── wwwroot
│ ├── get.png
│ ├── get2.png
│ ├── icon.png
│ ├── favicon.ico
│ ├── header_small.png
│ ├── background_small.png
│ ├── css
│ │ └── open-iconic
│ │ │ ├── font
│ │ │ └── fonts
│ │ │ │ ├── open-iconic.eot
│ │ │ │ ├── open-iconic.otf
│ │ │ │ ├── open-iconic.ttf
│ │ │ │ └── open-iconic.woff
│ │ │ └── ICON-LICENSE
│ ├── monaco-editor
│ │ ├── min
│ │ │ └── vs
│ │ │ │ ├── base
│ │ │ │ └── browser
│ │ │ │ │ └── ui
│ │ │ │ │ └── codicons
│ │ │ │ │ └── codicon
│ │ │ │ │ └── codicon.ttf
│ │ │ │ └── basic-languages
│ │ │ │ ├── azcli
│ │ │ │ └── azcli.js
│ │ │ │ ├── ini
│ │ │ │ └── ini.js
│ │ │ │ ├── csp
│ │ │ │ └── csp.js
│ │ │ │ ├── xml
│ │ │ │ └── xml.js
│ │ │ │ ├── scheme
│ │ │ │ └── scheme.js
│ │ │ │ ├── sb
│ │ │ │ └── sb.js
│ │ │ │ ├── bat
│ │ │ │ └── bat.js
│ │ │ │ ├── dockerfile
│ │ │ │ └── dockerfile.js
│ │ │ │ ├── pascaligo
│ │ │ │ └── pascaligo.js
│ │ │ │ ├── cameligo
│ │ │ │ └── cameligo.js
│ │ │ │ ├── lua
│ │ │ │ └── lua.js
│ │ │ │ ├── graphql
│ │ │ │ └── graphql.js
│ │ │ │ ├── objective-c
│ │ │ │ └── objective-c.js
│ │ │ │ ├── lexon
│ │ │ │ └── lexon.js
│ │ │ │ ├── mips
│ │ │ │ └── mips.js
│ │ │ │ ├── go
│ │ │ │ └── go.js
│ │ │ │ ├── sophia
│ │ │ │ └── sophia.js
│ │ │ │ ├── r
│ │ │ │ └── r.js
│ │ │ │ ├── shell
│ │ │ │ └── shell.js
│ │ │ │ ├── java
│ │ │ │ └── java.js
│ │ │ │ ├── fsharp
│ │ │ │ └── fsharp.js
│ │ │ │ ├── pascal
│ │ │ │ └── pascal.js
│ │ │ │ ├── python
│ │ │ │ └── python.js
│ │ │ │ ├── powershell
│ │ │ │ └── powershell.js
│ │ │ │ ├── kotlin
│ │ │ │ └── kotlin.js
│ │ │ │ ├── yaml
│ │ │ │ └── yaml.js
│ │ │ │ ├── redis
│ │ │ │ └── redis.js
│ │ │ │ ├── tcl
│ │ │ │ └── tcl.js
│ │ │ │ ├── hcl
│ │ │ │ └── hcl.js
│ │ │ │ └── coffee
│ │ │ │ └── coffee.js
│ │ ├── LICENSE
│ │ └── package.json
│ └── sample-data
│ │ ├── SampleCode.txt
│ │ └── weather.json
├── appsettings.json
├── appsettings.Development.json
├── BlazorDemoServer.csproj
├── Data
│ ├── WeatherForecast.cs
│ └── WeatherForecastService.cs
├── App.razor
├── _Imports.razor
├── Shared
│ ├── MainLayout.razor
│ └── NavMenu.razor
├── Properties
│ └── launchSettings.json
├── Program.cs
├── Pages
│ ├── Error.cshtml.cs
│ └── Error.cshtml
└── Startup.cs
├── README.md
├── LICENSE
└── BlazorDemo.sln
/.gitignore:
--------------------------------------------------------------------------------
1 | /.vs/
2 | /packages/
3 |
--------------------------------------------------------------------------------
/BlazorDemo/.gitignore:
--------------------------------------------------------------------------------
1 | /bin/
2 | /obj/
3 |
--------------------------------------------------------------------------------
/RoslynWeb/.gitignore:
--------------------------------------------------------------------------------
1 | /bin/
2 | /obj/
3 |
--------------------------------------------------------------------------------
/BlazorDemoServer/.gitignore:
--------------------------------------------------------------------------------
1 | /bin/
2 | /obj/
3 |
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/get.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/get.png
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/get2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/get2.png
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/icon.png
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/get.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/get.png
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/header_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/header_small.png
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/get2.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/get2.png
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/icon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/icon.png
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/favicon.ico
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/background_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/background_small.png
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/header_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/header_small.png
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/background_small.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/background_small.png
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.eot
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.otf
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.ttf
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/css/open-iconic/font/fonts/open-iconic.woff
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemo/wwwroot/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf
--------------------------------------------------------------------------------
/BlazorDemo/2do.txt:
--------------------------------------------------------------------------------
1 | drag&drop
2 |
3 | tabs for multiple files
4 |
5 | query for debugline
6 |
7 | blazor loading bar (for init)
8 |
9 | custom context menu
10 |
11 | mobile test
12 |
13 | cookie for theme
14 |
15 | options
--------------------------------------------------------------------------------
/BlazorDemoServer/wwwroot/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/sapsari/website-blazor-demo/HEAD/BlazorDemoServer/wwwroot/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf
--------------------------------------------------------------------------------
/BlazorDemoServer/appsettings.json:
--------------------------------------------------------------------------------
1 | {
2 | "Logging": {
3 | "LogLevel": {
4 | "Default": "Information",
5 | "Microsoft": "Warning",
6 | "Microsoft.Hosting.Lifetime": "Information"
7 | }
8 | },
9 | "AllowedHosts": "*"
10 | }
11 |
--------------------------------------------------------------------------------
/BlazorDemoServer/appsettings.Development.json:
--------------------------------------------------------------------------------
1 | {
2 | "DetailedErrors": true,
3 | "Logging": {
4 | "LogLevel": {
5 | "Default": "Information",
6 | "Microsoft": "Warning",
7 | "Microsoft.Hosting.Lifetime": "Information"
8 | }
9 | }
10 | }
11 |
--------------------------------------------------------------------------------
/BlazorDemo/wwwroot/sample-data/SampleCode.txt:
--------------------------------------------------------------------------------
1 | using System;
2 |
3 | namespace ConsoleApplication1
4 | {
5 | class Program
6 | {
7 | static void Main(string[] args)
8 | {
9 | var self = new Program();
10 | Console.WriteLine("Hello World!");
11 | }
12 | }
13 | }
--------------------------------------------------------------------------------
/BlazorDemoServer/BlazorDemoServer.csproj:
--------------------------------------------------------------------------------
1 | Sorry, there's nothing at this address. Sorry, there's nothing at this address.
24 | Request ID: @Model.RequestId
25 |
30 | Swapping to the Development environment displays detailed information about the error that occurred. 31 |
32 |33 | The Development environment shouldn't be enabled for deployed applications. 34 | It can result in displaying sensitive information from exceptions to end users. 35 | For local debugging, enable the Development environment by setting the ASPNETCORE_ENVIRONMENT environment variable to Development 36 | and restarting the app. 37 |
38 |