Skip to content

Commit cc64532

Browse files
committed
Update docs
1 parent 4474306 commit cc64532

File tree

6 files changed

+66
-2
lines changed

6 files changed

+66
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## v0.4.0 (30-05-2023)
4+
5+
- Added command to discover devices on the local network.
6+
- Updated npm component packages.
7+
- Improved UI.
8+
39
## v0.3.4 (17-05-2023)
410

511
- Bugs fixed.

CHANGELOG_ru.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Список изменений
22

3+
## v0.4.0 (30-05-2023)
4+
5+
- Добавлена команда обнаружения устройств в локальной сети.
6+
- Обновлены npm-пакеты компонентов.
7+
- Улучшен UI.
8+
39
## v0.3.4 (17-05-2023)
410

511
- Исправлены ошибки.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Devices supported: Raspberry Pi, Banana Pi, Orange Pi, Radxa, Tinkerboard, Odroi
2727
## System requirements
2828

2929
- **OS version.** Windows 10 (x64). A Linux version will come later;
30-
- **Visual Studio Code.** version not lower than [1.78.0](https://code.visualstudio.com/ "1.78.0");
30+
- **Visual Studio Code.** version [1.78.0](https://code.visualstudio.com/ "1.78.0") or higher;
3131
- **.NET.** Compiling a C# project requires [.NET SDK](https://dotnet.microsoft.com/en-us/download/visual-studio-sdks ".NET SDK") depending on the version of your project you are using (the extension itself is not required to work);
3232

3333
Additional extensions required for developing .NET applications:

README_ru.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
## Системные требования
2828

2929
- **Версия ОС.** Windows 10 (x64). Версия для Linux появится позже;
30-
- **Visual Studio Code.** Версия не ниже [1.78.0](https://code.visualstudio.com/ "1.78.0");
30+
- **Visual Studio Code.** Версия [1.78.0](https://code.visualstudio.com/ "1.78.0") или выше;
3131
- **.NET.** Для компиляции проекта на C# требуется [.NET SDK](https://dotnet.microsoft.com/en-us/download/visual-studio-sdks ".NET SDK") в зависимости от используемой версии вашего проекта (для работы самого расширения не требуется);
3232

3333
Дополнительные расширения необходимые для разработки .NET приложений:

docs/Troubleshooting.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,32 @@ If the problems persist, then you should delete/rename the extension folder wher
176176
- `C:\RemoteCode\`;
177177
- `%userprofile%\fastiot`, for example `C:\Users\Anton\fastiot`.
178178

179+
After running the extension, there should be the following folder structure along the path `%userprofile%\fastiot`:
180+
181+
```bash
182+
.
183+
└── fastiot
184+
├── settings
185+
│   └── keys
186+
├── templates
187+
│   ├── community
188+
│   ├── system
189+
│   │   ├── dotnet-console
190+
│   │   │   ├── storage
191+
│   │   │   ├── template
192+
│   │   │   │   ├── dotnetapp.csproj
193+
│   │   │   │   └── Program.cs
194+
│   │   │   ├── template.fastiot.png
195+
│   │   │   └── template.fastiot.yaml
196+
│   │   ├── dotnet-console-runtime-info
197+
│   │   │   └── ...
198+
│   │   └── dotnet-iot-blink-led
199+
│   │      └── ...
200+
│   ├── user
201+
│   └── webapi
202+
└── tmp
203+
```
204+
179205
If problems persist after restarting the extension, then the problems may be related to granting access rights to the above folders.
180206

181207
The executable extension files are located in the `%USERPROFILE%\.vscode\extensions` folder, for example `C:\Users\Anton\.vscode\extensions`. You can remove the extension from the specified folder and reinstall it.

docs/Troubleshooting_ru.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,32 @@ chmod +x vscode-dotnetfastiot.sh
176176
- `C:\RemoteCode\`;
177177
- `%userprofile%\fastiot`, например `C:\Users\Anton\fastiot`.
178178

179+
После запуска расширения, должна быть следующая структура папок по пути `%userprofile%\fastiot`:
180+
181+
```bash
182+
.
183+
└── fastiot
184+
├── settings
185+
│   └── keys
186+
├── templates
187+
│   ├── community
188+
│   ├── system
189+
│   │   ├── dotnet-console
190+
│   │   │   ├── storage
191+
│   │   │   ├── template
192+
│   │   │   │   ├── dotnetapp.csproj
193+
│   │   │   │   └── Program.cs
194+
│   │   │   ├── template.fastiot.png
195+
│   │   │   └── template.fastiot.yaml
196+
│   │   ├── dotnet-console-runtime-info
197+
│   │   │   └── ...
198+
│   │   └── dotnet-iot-blink-led
199+
│   │      └── ...
200+
│   ├── user
201+
│   └── webapi
202+
└── tmp
203+
```
204+
179205
Если после перезапуска расширения проблемы остались, то возможно проблемы связаны с предоставлением прав доступа к выше указанным папкам.
180206

181207
Исполняемые файлы расширения располагаются в папке `%USERPROFILE%\.vscode\extensions`, например `C:\Users\Anton\.vscode\extensions`. Вы можете удалить расширение из указанной папки и заново его установить.

0 commit comments

Comments
 (0)