-
Notifications
You must be signed in to change notification settings - Fork 63
C# example doesn't compile #216
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
Comments
|
Hey @MendyBerger this isn't still the case right? I believe I fixed this on the last go-through ( namespace AdderWorld;
public class AdderWorldImpl : IAdderWorld
{
public static uint Add(uint x, uint y)
{
return x + y;
}
} |
Thanks @vados-cosmonic! That issue seems fixed. Okay, now I'm running into a different error when following the docs.
So looks like it wants .NET 10 which is not fully released yet, and I gave up on installing it after 30 minutes of trying... When changing to
|
Ah, so I'm definitely not the C# expert but I think C# support is actually not available for anything other than the version cited -- c3db27e I'm not sure this has changed... You're going to have to get .NET 10 installed... I wonder if it could be containerized to make it easier |
Maybe the .net gurus can help me here. |
Ah note that I was able to get it installed on daily driver arch setup (I think I last touched the C# docs and set it up)! What part of the instructions did you have problems with? What error did you see? |
🤦 I was using https://learn.microsoft.com/en-us/dotnet/core/tools/dotnet-install-script instead of https://dotnet.microsoft.com/en-us/download/dotnet/thank-you/sdk-10.0.100-preview.3-linux-x64-binaries (still needed to uninstall .net9 first, but then it installed correctly) Ran into one issue Thanks for the help! |
The C# example uses
IOperations
, butIOperations
isn't defined or imported anywhere.The text was updated successfully, but these errors were encountered: