Open castroben opened 2 years ago
Hello @castroben,
Could you please share the output of the following two commands in your environment?
dotnet --version dotnet nuget list source (if there are private ones, replace with [deleted] so the order is still visible)
One potential workaround is to build with an additional argument as follows:
python ./build-restler.py --dest_dir c:\drop --dotnet_package_source https://api.nuget.org/v3/index.json
Thanks,
Marina
One potential workaround is to build with an additional argument as follows:
python ./build-restler.py --dest_dir c:\drop --dotnet_package_source https://api.nuget.org/v3/index.json
I had the same problem and this worked for me. Thanks.
According to the quickstart guide, the following command should be run to compile and test an api accoriding to the specification:
python restler-quick-start.py --api_spec_path <path to specification> --restler_drop_dir <path to RESTler drop>
I've tried running this command multiple times with different "drop" directories but I always get the following error:
When I run the commands:
mkdir restler_bin
python ./build-restler.py --dest_dir <full path to restler_bin above>
inside the "restler_bin" folder there is not subfolder named "restler" and there is no file named "Restler.dll".
Can someone please help me understand where to get this "Restler.dll" file and why its not being generated with the command
python ./build-restler.py --dest_dir <full path to restler_bin above>
?I get the following errors when I try to build the restler binaries:
Thank you