Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
- Add  Launch LivePreview Infp
  • Loading branch information
SilkyFowl committed Jun 16, 2022
1 parent 493960c commit dc88338
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 6 deletions.
37 changes: 34 additions & 3 deletions README.ja.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ framework: net6.0

```json
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
Expand Down Expand Up @@ -319,10 +316,44 @@ index 00ef90f..4d22a95 100644

```

### LivePreviewの起動

#### デバッガーを使う場合

デバッガーの設定を`FuncUI Launch(Live Preview)`変更して起動します。

[Enjoy-It!!]

#### デバッガーを使わない場合

環境変数を設定します。

bash

```bash
export FUNCUI_LIVEPREVIEW=1
```

cmd

```bat
set FUNCUI_LIVEPREVIEW=1
```

powershell

```powershell
$env:FUNCUI_LIVEPREVIEW = 1
```

> **Note**
> デバッガーを使わないと、コード変更に対するレスポンスが向上します。
```sh
dotnet build -c Release
dotnet ./bin/Release/net6.0/PreviewApp.dll
```

## 既知の不具合、制限

- [ ] 早く書く。
Expand Down
37 changes: 34 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,6 @@ framework: net6.0

```json
{
// IntelliSense を使用して利用可能な属性を学べます。
// 既存の属性の説明をホバーして表示します。
// 詳細情報は次を確認してください: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
Expand Down Expand Up @@ -319,10 +316,44 @@ index 00ef90f..4d22a95 100644

```

### Launch LivePreview

#### When using debugger

Change the debugger setting to `FuncUI Launch(Live Preview)` and start it.

[Enjoy-It!!]

#### When not using debugger

Set environment variables.

bash

```bash
export FUNCUI_LIVEPREVIEW=1
```

cmd

```bat
set FUNCUI_LIVEPREVIEW=1
```

powershell

```powershell
$env:FUNCUI_LIVEPREVIEW = 1
```

> **Note**
> Without the debugger, response to code changes is improved.
```sh
dotnet build -c Release
dotnet ./bin/Release/net6.0/PreviewApp.dll
```

## Known Issues, Limitations

- [ ] Write quickly.
Expand Down

0 comments on commit dc88338

Please sign in to comment.