Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/dotnet/runtime.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeremy Koritzinsky <jekoritz@microsoft.com>2022-06-25 04:46:42 +0300
committerGitHub <noreply@github.com>2022-06-25 04:46:42 +0300
commitffa0fff0f31b7d869734e8032313188df523ecca (patch)
tree0c24e76e1ed80b1e1cf8d599bf34d7429f6bc529 /.editorconfig
parent12a1f413653cd1924970c01cb3bbb29e3cafbd10 (diff)
Custom marshallers v2 usage (#71238)
* Enable using the new generator attributes before the new API shapes are approved * Disable the diagnostic that verifies that a marshaller type has the v1 attribute. * Convert some custom type marshallers to the v2 design. Convert as many of the marshallers as possible to their correct representation with the currently implemented feature set. This PR does not convert marshallers that can be represented with the new design but need more features to be accurately represented.
Diffstat (limited to '.editorconfig')
-rw-r--r--.editorconfig3
1 files changed, 3 insertions, 0 deletions
diff --git a/.editorconfig b/.editorconfig
index 15658bab8d0..598d07adf41 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -154,6 +154,9 @@ csharp_space_between_square_brackets = false
# License header
file_header_template = Licensed to the .NET Foundation under one or more agreements.\nThe .NET Foundation licenses this file to you under the MIT license.
+# Marshaller type must have CustomTypeMarshallerAttribute attribute
+dotnet_diagnostic.SYSLIB1056.severity = silent
+
# C++ Files
[*.{cpp,h,in}]
curly_bracket_next_line = true