-
Notifications
You must be signed in to change notification settings - Fork 57
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
Prototype of the cli utility for AOT/Trim applications #190
base: main
Are you sure you want to change the base?
Conversation
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.
|
||
dotnet_naming_rule.constant_fields_should_be_pascal_case.severity = error | ||
dotnet_naming_rule.constant_fields_should_be_pascal_case.symbols = constant_fields | ||
dotnet_naming_rule.constant_fields_should_be_pascal_case.style = pascal_case_style | ||
|
||
dotnet_naming_symbols.constant_fields.applicable_kinds = field | ||
dotnet_naming_symbols.constant_fields.required_modifiers = const | ||
dotnet_naming_style.pascal_case_style.capitalization = pascal_case | ||
|
||
dotnet_naming_rule.static_fields_should_have_prefix.severity = error | ||
dotnet_naming_rule.static_fields_should_have_prefix.symbols = static_fields | ||
dotnet_naming_rule.static_fields_should_have_prefix.style = static_prefix_style | ||
|
||
dotnet_naming_symbols.static_fields.applicable_kinds = field | ||
dotnet_naming_symbols.static_fields.required_modifiers = static | ||
dotnet_naming_symbols.static_fields.applicable_accessibilities = private, internal, private_protected | ||
|
||
dotnet_naming_style.static_prefix_style.required_prefix = s_ | ||
dotnet_naming_style.static_prefix_style.capitalization = camel_case | ||
|
||
dotnet_naming_rule.camel_case_for_private_internal_fields.severity = error | ||
dotnet_naming_rule.camel_case_for_private_internal_fields.symbols = private_internal_fields | ||
dotnet_naming_rule.camel_case_for_private_internal_fields.style = camel_case_underscore_style | ||
|
||
dotnet_naming_symbols.private_internal_fields.applicable_kinds = field | ||
dotnet_naming_symbols.private_internal_fields.applicable_accessibilities = private, internal | ||
|
||
dotnet_naming_style.camel_case_underscore_style.required_prefix = _ | ||
dotnet_naming_style.camel_case_underscore_style.capitalization = camel_case | ||
|
||
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async:warning | ||
|
||
dotnet_diagnostic.IDE0005.severity = warning | ||
dotnet_diagnostic.IDE0035.severity = warning | ||
dotnet_diagnostic.IDE0036.severity = warning | ||
dotnet_diagnostic.IDE0043.severity = warning | ||
dotnet_diagnostic.IDE0044.severity = suggestion | ||
dotnet_diagnostic.IDE0055.severity = warning | ||
dotnet_diagnostic.IDE0161.severity = warning | ||
dotnet_diagnostic.IDE0290.severity = error | ||
|
||
dotnet_diagnostic.HAA0101.severity = suggestion | ||
dotnet_diagnostic.HAA0301.severity = suggestion | ||
dotnet_diagnostic.HAA0303.severity = suggestion | ||
dotnet_diagnostic.HAA0401.severity = suggestion | ||
dotnet_diagnostic.HAA0601.severity = suggestion | ||
|
||
dotnet_diagnostic.CS8597.severity = error | ||
dotnet_diagnostic.CS8600.severity = error | ||
dotnet_diagnostic.CS8601.severity = error | ||
dotnet_diagnostic.CS8602.severity = error | ||
dotnet_diagnostic.CS8603.severity = error | ||
dotnet_diagnostic.CS8604.severity = error | ||
dotnet_diagnostic.CS8605.severity = error | ||
dotnet_diagnostic.CS8607.severity = error | ||
dotnet_diagnostic.CS8608.severity = error | ||
dotnet_diagnostic.CS8609.severity = error | ||
dotnet_diagnostic.CS8610.severity = error | ||
dotnet_diagnostic.CS8611.severity = error | ||
dotnet_diagnostic.CS8612.severity = error | ||
dotnet_diagnostic.CS8613.severity = error | ||
dotnet_diagnostic.CS8614.severity = error | ||
dotnet_diagnostic.CS8615.severity = error | ||
dotnet_diagnostic.CS8616.severity = error | ||
dotnet_diagnostic.CS8617.severity = error | ||
dotnet_diagnostic.CS8618.severity = error | ||
dotnet_diagnostic.CS8619.severity = error | ||
dotnet_diagnostic.CS8620.severity = error | ||
dotnet_diagnostic.CS8621.severity = error | ||
dotnet_diagnostic.CS8622.severity = error | ||
dotnet_diagnostic.CS8624.severity = error | ||
dotnet_diagnostic.CS8625.severity = error | ||
dotnet_diagnostic.CS8629.severity = error | ||
dotnet_diagnostic.CS8631.severity = error | ||
dotnet_diagnostic.CS8633.severity = error | ||
dotnet_diagnostic.CS8634.severity = error | ||
dotnet_diagnostic.CS8643.severity = error | ||
dotnet_diagnostic.CS8644.severity = error | ||
dotnet_diagnostic.CS8645.severity = error | ||
dotnet_diagnostic.CS8655.severity = error | ||
dotnet_diagnostic.CS8667.severity = error | ||
dotnet_diagnostic.CS8670.severity = error | ||
dotnet_diagnostic.CS8714.severity = error | ||
dotnet_diagnostic.CS8762.severity = error | ||
dotnet_diagnostic.CS8763.severity = error | ||
dotnet_diagnostic.CS8764.severity = error | ||
dotnet_diagnostic.CS8765.severity = error | ||
dotnet_diagnostic.CS8766.severity = error | ||
dotnet_diagnostic.CS8767.severity = error | ||
dotnet_diagnostic.CS8768.severity = error | ||
dotnet_diagnostic.CS8769.severity = error | ||
dotnet_diagnostic.CS8770.severity = error | ||
dotnet_diagnostic.CS8774.severity = error | ||
dotnet_diagnostic.CS8776.severity = error | ||
dotnet_diagnostic.CS8775.severity = error | ||
dotnet_diagnostic.CS8777.severity = error | ||
dotnet_diagnostic.CS8819.severity = error | ||
dotnet_diagnostic.CS8824.severity = error | ||
dotnet_diagnostic.CS8825.severity = error | ||
dotnet_diagnostic.CS8847.severity = error |
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.
Let's manage .editorconfig implementation via #203
{ | ||
"profiles": { | ||
"Saunter.IntegrationTests.ReverseProxy": { | ||
"commandName": "Project", | ||
"launchBrowser": true, | ||
"environmentVariables": { | ||
"ASPNETCORE_ENVIRONMENT": "Development" | ||
}, | ||
"applicationUrl": "https://localhost:65155;http://localhost:65158" | ||
} | ||
} | ||
} |
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.
Should this be added to the .gitignore?
[*.cs] | ||
#### ����� ���������� #### | ||
|
||
# ������� ���������� |
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.
????
Since this is a prototype, and it will not last in its current form, I did not pay attention to the purity of git. I'm sorry, I won't do this in the future. |
@yurvon-screamo how about I take a stab at #136 this weekend as that is a pre-requiste for a cli tool. If you could review #199 that would be helpful and ideally also #200 Note I am needing to generate a number of asyncapi files for a console application with a short deadline. |
Description
Hi, I have prepared a prototype for AOT support. If this concept suits everyone, then I will continue to develop in this direction.
Related issue(s)
Issue: #187