-
Notifications
You must be signed in to change notification settings - Fork 499
CSharp quickstart does not compile #2647
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
I'm not able to reproduce this issue. The Can you share your |
Hello, I am also facing this issue following the quickstart. spacetime --version output: csproj file:
using VScode:
|
Thanks @ScherrerMichael! It's the same code that's causing an error? What build command are you using? |
No problem! I used |
@ScherrerMichael what does your |
This is my output for
|
Thank you! That all seems reasonable.. I guess we'll just update the quickstart and call it a day. |
On https://spacetimedb.com/docs/modules/c-sharp/quickstart
The below code does not compile:
I get the errors:
This is due to
.Find(...)
returning aModule.User?
(nullable) and bothuser.Name
andIdentity.Update(...)
expecting aModule.User
(not nullable)This is also the case for the following functions
ClientConnected
andClientDisconnected
🤔
The text was updated successfully, but these errors were encountered: