-
Notifications
You must be signed in to change notification settings - Fork 53
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add C# language support documentation #156
add C# language support documentation #156
Conversation
Note that we're currently debugging an issue upstream for Linux support in Zulip. Once that's resolved, I think this should be safe to merge. CC @jsturtevant |
@bacongobbler thank you for putting this up! Is the c# tooling in a place where it can also create library components that target specific wit worlds? Could we add, whether in this PR or a follow up one, documentation on how to create a component that targets the |
It is we do this with https://github.com/bytecodealliance/componentize-dotnet/tree/main/samples/calculator/Adder |
Signed-off-by: Matthew Fisher <[email protected]>
08fb309
to
b94ceb7
Compare
Okay. I updated the documentation to show how to create a component that targets the As I was completing the document, I was looking for a way to execute these two components together and found this document on running components. However when I tried to run it, I saw that
|
I see that the composed example utilizes |
Doesn't seem like it at the moment 😭 |
@bacongobbler does |
yes you can use a dummy project or in the final project can compose them together.
this is only if you want to use .net as the host to execute components. As @kate-goldenring mentions Wac is the way forward to compose two components together As far as including |
Signed-off-by: Matthew Fisher <[email protected]>
Updated to use |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for making this so comprehensive @bacongobbler. My comments are mainly nits with the main suggestions being around command component terminology and renaming that component executable.
We should also add reference to this document to language-support.md
, introduction.md
and SUMMARY.md
but that can be done in a subsequent PR too
Signed-off-by: Matthew Fisher <[email protected]>
Signed-off-by: Matthew Fisher <[email protected]>
Signed-off-by: Matthew Fisher <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM! Thank you @bacongobbler for putting this together. This will expedite users' c# experience.
closes #148