Aaron Sherber
Aaron Sherber
Passing! Just needed to get Travis to try again. @darrencauthon When I made the appropriate changes to the nuspec in 06594, Github couldn't figure out the conflicts. I put them...
I wouldn't call project.json obsolete – it is still fully supported for building .NET Standard assemblies in VS2015. In fact, it's the _only_ way to do it in VS2015. So...
@darrencauthon At this point we would need to merge in recent changes and also decide whether to keep the .NET Standard stuff in VS2015 format or move it to VS2017....
Are you saying you want it on the client _instead of_ the transmission, or _in addition to_ the transmission? I do disagree with putting this on the client. For one...
Okay, so how should the two flags interact? | Client | Transmission | Result | | ------ | ------ | ----- | | True | True | True | |...
I'll take a look at this, see what's going on. As someone who works with a number of codebases still on .NET Framework, I'm in favor of maintaining as much...
Can you use an anonymous type in your code? That avoids having to create a concrete class, and it's probably no more code than populating an expando.
@iadaz Inserts with dynamics appears to be broken at the moment. There is a pending PR which I think addresses this. @rizalmart In C# the code would look something like...
Yes, as I said, I think there's currently a bug. The code I gave above is for using anonymous types instead of Expandos. You can see that it's not much...
Similarly, a warning when trying to explicitly assign to a const variable in 5.4. ```lua local foo = 5 foo = 6 -- should generate warning ```