This repository is meant to used for testing kiota with Dart, specifically it's features for Multipart requests.
You will need to have Dart & .NET installed on your machine.
First, clone this repository:
git clone https://github.com/ricardoboss/kiota-dart-multipart.git
Then, install the dependencies:
dart pub get
dotnet tool restore
Run kiota using the Makefile:
make gen
You can then run the Dart bin:
make run # or dart run
To debug kiota, you can run do the following:
Create a .env
file with the following content:
KIOTA_PATH=<path to your local kiota.csproj file>
Then, run:
make genproj
Or, if you want to run it in watch mode:
make watchproj