Hi @will , I spoke to @menno at the London Dev day about an issue I am having with Yak and he recommended I tag you.
I have come across an issue where Yak is not respecting the original folder layout of my project when using the Yak Command line tool to build a Yak package.
My project folder structure when built from Visual studio is the following
example/
└── bin/
└── Release/
└── net7.0-windows/
├── example.dll
└── example.rhp
When running the Yak build command I expect the net7.0-windows folder to be in the root of the Yak file when unzipped however it is missing and I have to add it myself.
Expected:
example.yak/
├── manifest.yaml
└── net7.0-windows/
├── example.dll
└── example.rhp
What the Yak Command line tool creates
example.yak/
├── manifest.yaml
├── example.dll
└── example.rhp
We need this folder structure so Yak recognises that for this version of our plugin we only support .net 7 as in the past we have supported other .net frameworks.
We suspect we are not using the right tags when running the Yak command line tool:
"C:\Program Files\Rhino 8\System\Yak.exe" build --platform win
Is there another option we should be using?
Thanks,
JNash