-
Notifications
You must be signed in to change notification settings - Fork 6.1k
Add missing using #20481
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 missing using #20481
Conversation
|
Hi 👋 @perlun <Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net5.0</TargetFramework>
<StartupObject>test.Program</StartupObject>
</PropertyGroup>
</Project>We have a build validation that requires a project to compile from. |
|
@IEvangelist No probs, sounds good so we can avoid compilation issues in these examples going forward. I added a |
|
This was bit of a can of worms actually, but I think I have most problems resolved now. After adding the ...the (Btw, https://dotnetcli.blob.core.windows.net is really slow where I am (400 KiB/s on a 100 Mbit connection), would be good to put this up behind a proper CDN like I presume the official downloads are. 😎) |
|
Good to know, I'd be good with you adding a |
The example was incomplete; `System.Threading.Thread` was being referenced without the namespace being properly imported.
You've got it, compiles fine locally now. 👍 |
IEvangelist
left a comment
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.
Looks good to me, we'll
- thank you 🙏
The example was incomplete;
System.Threading.Threadwas being referenced without the namespace being properly imported.