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
Issue created from fantomas-online
let internal UpdateStrongNaming (assembly : AssemblyDefinition) (key : StrongNameKeyPair option) = let assemblyName = assembly.Name #if NETCOREAPP2_0 do #else match key with | None -> #endif assembly.MainModule.Attributes <- assembly.MainModule.Attributes &&& (~~~ModuleAttributes.StrongNameSigned) assemblyName.HasPublicKey <- false assemblyName.PublicKey <- null assemblyName.PublicKeyToken <- null #if NETCOREAPP2_0 #else | Some key' -> assemblyName.HasPublicKey <- true assemblyName.PublicKey <- key'.PublicKey // sets token implicitly #endif
let internal UpdateStrongNaming (assembly: AssemblyDefinition) (key: StrongNameKeyPair option) = let assemblyName = assembly.Name #if NETCOREAPP2_0 #else match key with | None -> #endif do assembly.MainModule.Attributes <- assembly.MainModule.Attributes &&& (~~~ModuleAttributes.StrongNameSigned) assemblyName.HasPublicKey <- false assemblyName.PublicKey <- null assemblyName.PublicKeyToken <- null #if NETCOREAPP2_0 #else | Some key' -> assemblyName.HasPublicKey <- true assemblyName.PublicKey <- key'.PublicKey // sets token implicitly #endif
This was reported in #303 but when formatting the result code again, something goes wrong...
Fantomas Master at 09/04/2020 11:05:32 - d3828b0
Default Fantomas configuration
The text was updated successfully, but these errors were encountered:
This was fixed in #1240.
Sorry, something went wrong.
No branches or pull requests
Issue created from fantomas-online
Code
Result
Problem description
This was reported in #303 but when formatting the result code again, something goes wrong...
Extra information
Options
Fantomas Master at 09/04/2020 11:05:32 - d3828b0
Default Fantomas configuration
The text was updated successfully, but these errors were encountered: