We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
assembly
using
Hi, since version 0.13.0, csharpier uses two newlines in the following code:
Original:
using Microsoft.Azure.Functions.Extensions.DependencyInjection; [assembly: FunctionsStartup(typeof(Test.Startup))] namespace Test { }
After formatting:
In my opinion the original is correctly formatted.
Interestingly enough, the following code doesn't have that issue:
[assembly: Microsoft.Azure.Functions.Extensions.DependencyInjection.FunctionsStartup( typeof(Test.Startup) )] namespace Test { }
The text was updated successfully, but these errors were encountered:
Another edge case I just ran into that is related, a double line is added before the #endif
using System; #if SIGN2048 using System.Reflection; [assembly: AssemblyDelaySign(true)] [assembly: AssemblyKeyFile(@"internalsvisibleto-2048.snk")] #endif namespace InternalsVisibleTo { }
Sorry, something went wrong.
More edgecases in compilation unit
b759a15
closes #551
More edgecases in compilation unit (#556)
90d6ef5
belav
Successfully merging a pull request may close this issue.
Hi, since version 0.13.0, csharpier uses two newlines in the following code:
Original:
After formatting:
In my opinion the original is correctly formatted.
Interestingly enough, the following code doesn't have that issue:
The text was updated successfully, but these errors were encountered: