xposure

Results 23 issues of xposure

Looking at the `SharpFont.Dependencies.props` file its still hard coded to `msvc10\\x86`. ~~I have to go in here and manually edit this file each time I want to build to a...

Beef has the concept of `SkipCall` which requires you to wrap it in `#if` which can muck up the code. Where .NET has the `Conditional` attribute that takes an argument...

https://docs.microsoft.com/en-us/dotnet/csharp/language-reference/keywords/using-statement ``` string manyLines=@"This is line one This is line two Here is line three The penultimate line is line four This is the final, fifth line."; using var reader...

Related: https://github.com/beefytech/Beef/issues/637 https://docs.microsoft.com/en-us/dotnet/csharp/whats-new/csharp-8#switch-expressions

If you open something like Event.bf in corlib (with the project locked) and then close the IDE and reopen it, the file will still be in the document pane and...

I've had this happen a few times randomly. ![image](https://user-images.githubusercontent.com/6292318/105371455-a2f29a00-5bd2-11eb-9971-c7db60a91915.png) ![image](https://user-images.githubusercontent.com/6292318/105371565-ba318780-5bd2-11eb-967d-8552ba74ad39.png)

The following code can't determine `TElem` when these methods are used inside. ``` public static bool All(this TCollection items, TPredicate predicate) where TCollection: concrete, IEnumerable where TPredicate: delegate bool(TElem) {...

d38f19a Failing to select the proper Aggregate extension.

``` public class Test1 { public static T Call() where T: new, Test2 { return new T(this); //should have squigglies on this due to using this in a static method?...

If you have a lot of ShouldFail tests, it can be hard to actually debug tests since they all will trigger and error that takes a few f5s to get...