-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #500 from Krypton-Suite/canary
* Version 90
- Loading branch information
Showing
2,471 changed files
with
64,970 additions
and
87,149 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,97 @@ | ||
[*.cs] | ||
dotnet_diagnostic.CS8618.severity = None | ||
dotnet_diagnostic.CS8618.severity = None | ||
csharp_indent_labels = one_less_than_current | ||
csharp_using_directive_placement = outside_namespace:silent | ||
csharp_prefer_simple_using_statement = true:suggestion | ||
csharp_prefer_braces = true:silent | ||
csharp_style_namespace_declarations = block_scoped:silent | ||
csharp_style_prefer_method_group_conversion = true:silent | ||
csharp_style_prefer_top_level_statements = true:silent | ||
csharp_style_prefer_primary_constructors = true:suggestion | ||
csharp_prefer_system_threading_lock = true:suggestion | ||
csharp_style_expression_bodied_methods = false:silent | ||
csharp_style_expression_bodied_constructors = false:silent | ||
csharp_style_expression_bodied_operators = false:silent | ||
csharp_style_expression_bodied_properties = true:silent | ||
csharp_style_expression_bodied_indexers = true:silent | ||
csharp_style_expression_bodied_accessors = true:silent | ||
csharp_style_expression_bodied_lambdas = true:silent | ||
csharp_style_expression_bodied_local_functions = false:silent | ||
csharp_style_allow_blank_lines_between_consecutive_braces_experimental = true:silent | ||
csharp_style_throw_expression = true:suggestion | ||
csharp_style_implicit_object_creation_when_type_is_apparent = true:suggestion | ||
csharp_style_prefer_tuple_swap = true:suggestion | ||
csharp_style_allow_embedded_statements_on_same_line_experimental = true:silent | ||
csharp_style_allow_blank_line_after_colon_in_constructor_initializer_experimental = true:silent | ||
csharp_style_allow_blank_line_after_token_in_conditional_expression_experimental = true:silent | ||
csharp_style_allow_blank_line_after_token_in_arrow_expression_clause_experimental = true:silent | ||
csharp_style_prefer_switch_expression = true:suggestion | ||
csharp_style_pattern_matching_over_is_with_cast_check = true:suggestion | ||
csharp_style_pattern_matching_over_as_with_null_check = true:suggestion | ||
dotnet_diagnostic.WFO1000.severity = warning | ||
[*.{cs,vb}] | ||
dotnet_style_operator_placement_when_wrapping = beginning_of_line | ||
tab_width = 4 | ||
indent_size = 4 | ||
end_of_line = crlf | ||
dotnet_style_coalesce_expression = true:suggestion | ||
dotnet_style_null_propagation = true:suggestion | ||
dotnet_style_prefer_is_null_check_over_reference_equality_method = true:suggestion | ||
dotnet_style_prefer_auto_properties = true:silent | ||
dotnet_style_object_initializer = true:suggestion | ||
[*.{cs,vb}] | ||
#### Naming styles #### | ||
|
||
# Naming rules | ||
|
||
dotnet_naming_rule.interface_should_be_begins_with_i.severity = suggestion | ||
dotnet_naming_rule.interface_should_be_begins_with_i.symbols = interface | ||
dotnet_naming_rule.interface_should_be_begins_with_i.style = begins_with_i | ||
|
||
dotnet_naming_rule.types_should_be_pascal_case.severity = suggestion | ||
dotnet_naming_rule.types_should_be_pascal_case.symbols = types | ||
dotnet_naming_rule.types_should_be_pascal_case.style = pascal_case | ||
|
||
dotnet_naming_rule.non_field_members_should_be_pascal_case.severity = suggestion | ||
dotnet_naming_rule.non_field_members_should_be_pascal_case.symbols = non_field_members | ||
dotnet_naming_rule.non_field_members_should_be_pascal_case.style = pascal_case | ||
|
||
# Symbol specifications | ||
|
||
dotnet_naming_symbols.interface.applicable_kinds = interface | ||
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected | ||
dotnet_naming_symbols.interface.required_modifiers = | ||
|
||
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum | ||
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected | ||
dotnet_naming_symbols.types.required_modifiers = | ||
|
||
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method | ||
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected | ||
dotnet_naming_symbols.non_field_members.required_modifiers = | ||
|
||
# Naming styles | ||
|
||
dotnet_naming_style.begins_with_i.required_prefix = I | ||
dotnet_naming_style.begins_with_i.required_suffix = | ||
dotnet_naming_style.begins_with_i.word_separator = | ||
dotnet_naming_style.begins_with_i.capitalization = pascal_case | ||
|
||
dotnet_naming_style.pascal_case.required_prefix = | ||
dotnet_naming_style.pascal_case.required_suffix = | ||
dotnet_naming_style.pascal_case.word_separator = | ||
dotnet_naming_style.pascal_case.capitalization = pascal_case | ||
|
||
dotnet_naming_style.pascal_case.required_prefix = | ||
dotnet_naming_style.pascal_case.required_suffix = | ||
dotnet_naming_style.pascal_case.word_separator = | ||
dotnet_naming_style.pascal_case.capitalization = pascal_case | ||
dotnet_style_prefer_conditional_expression_over_assignment = true:silent | ||
dotnet_style_prefer_conditional_expression_over_return = true:silent | ||
dotnet_style_predefined_type_for_locals_parameters_members = true:silent | ||
dotnet_style_predefined_type_for_member_access = true:silent | ||
dotnet_style_allow_multiple_blank_lines_experimental = true:silent | ||
dotnet_style_allow_statement_immediately_after_block_experimental = true:silent | ||
dotnet_style_qualification_for_field = false:silent | ||
dotnet_style_qualification_for_property = false:silent | ||
dotnet_style_qualification_for_method = false:silent |
33 changes: 33 additions & 0 deletions
33
...ocumentation/Extended Toolkit API Documentation/Content/VersionHistory/VersionHistory.aml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,33 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="57986f1c-914a-4206-8453-ab2eaa9432a0" revisionNumber="1"> | ||
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<introduction> | ||
<para>The topics in this section describe the various changes made to the [TODO: Project Title] over the | ||
life of the project.</para> | ||
</introduction> | ||
|
||
<section> | ||
<title>Version History</title> | ||
<content> | ||
<para>Select a version below to see a description of its changes.</para> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para><link xlink:href="eba01947-9b47-4ff7-ac81-1949745ee376" /></para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>[TODO: Add links to each specific version page]</para> | ||
</listItem> | ||
|
||
</list> | ||
|
||
</content> | ||
</section> | ||
|
||
<relatedTopics> | ||
<link xlink:href="c2f9997d-66ef-4c1d-b8cb-6a1534634454" /> | ||
</relatedTopics> | ||
|
||
</developerConceptualDocument> | ||
</topic> |
28 changes: 28 additions & 0 deletions
28
Source/Documentation/Extended Toolkit API Documentation/Content/VersionHistory/v1.0.0.0.aml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="eba01947-9b47-4ff7-ac81-1949745ee376" revisionNumber="1"> | ||
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<introduction> | ||
<para>Version [TODO: Version] was released on [TODO: Date]. | ||
</para> | ||
</introduction> | ||
|
||
<section> | ||
<title>Changes in This Release</title> | ||
<content> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para>[TODO: Add change items here]</para> | ||
</listItem> | ||
|
||
</list> | ||
|
||
</content> | ||
</section> | ||
|
||
<relatedTopics> | ||
<link xlink:href="57986f1c-914a-4206-8453-ab2eaa9432a0" /> | ||
</relatedTopics> | ||
|
||
</developerConceptualDocument> | ||
</topic> |
55 changes: 55 additions & 0 deletions
55
Source/Documentation/Extended Toolkit API Documentation/Content/Welcome.aml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<topic id="c2f9997d-66ef-4c1d-b8cb-6a1534634454" revisionNumber="1"> | ||
<developerConceptualDocument xmlns="http://ddue.schemas.microsoft.com/authoring/2003/5" xmlns:xlink="http://www.w3.org/1999/xlink"> | ||
<introduction> | ||
<para>This is a sample conceptual topic. You can use this as a starting point for adding more conceptual | ||
content to your help project.</para> | ||
</introduction> | ||
|
||
<section> | ||
<title>Getting Started</title> | ||
<content> | ||
<para>To get started, add a documentation source to the project (a Visual Studio solution, project, or | ||
assembly and XML comments file). See the <legacyBold>Getting Started</legacyBold> topics in the Sandcastle Help | ||
File Builder's help file for more information. The following default items are included in this project:</para> | ||
|
||
<list class="bullet"> | ||
<listItem> | ||
<para><localUri>ContentLayout.content</localUri> - Use the content layout file to manage the | ||
conceptual content in the project and define its layout in the table of contents.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>The <localUri>.\media</localUri> folder - Place images in this folder that you will reference | ||
from conceptual content using <codeInline>medialLink</codeInline> or <codeInline>mediaLinkInline</codeInline> | ||
elements. If you will not have any images in the file, you may remove this folder.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>The <localUri>.\icons</localUri> folder - This contains a default logo for the help file. You | ||
may replace it or remove it and the folder if not wanted. If removed or if you change the file name, update | ||
the <ui>Transform Args</ui> project properties page by removing or changing the filename in the | ||
<codeInline>logoFile</codeInline> transform argument. Note that unlike images referenced from conceptual topics, | ||
the logo file should have its <legacyBold>BuildAction</legacyBold> property set to <codeInline>Content</codeInline>.</para> | ||
</listItem> | ||
|
||
<listItem> | ||
<para>The <localUri>.\Content</localUri> folder - Use this to store your conceptual topics. You may | ||
name the files and organize them however you like. One suggestion is to lay the files out on disk as you have | ||
them in the content layout file as shown in this project but the choice is yours. Files can be added via the | ||
Solution Explorer or from within the content layout file editor. Files must appear in the content layout file | ||
in order to be compiled into the help file.</para> | ||
</listItem> | ||
</list> | ||
|
||
<para>See the <legacyBold>Conceptual Content</legacyBold> topics in the Sandcastle Help File Builder's | ||
help file for more information. See the <legacyBold> Sandcastle MAML Guide</legacyBold> for details on Microsoft | ||
Assistance Markup Language (MAML) which is used to create these topics.</para> | ||
</content> | ||
</section> | ||
|
||
<relatedTopics> | ||
<link xlink:href="57986f1c-914a-4206-8453-ab2eaa9432a0" /> | ||
</relatedTopics> | ||
</developerConceptualDocument> | ||
</topic> |
18 changes: 18 additions & 0 deletions
18
Source/Documentation/Extended Toolkit API Documentation/ContentLayout.content
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Topics> | ||
<Topic id="c2f9997d-66ef-4c1d-b8cb-6a1534634454" visible="True" isDefault="true" isSelected="true" title="Welcome to the [TODO: Add project name]"> | ||
<HelpKeywords> | ||
<HelpKeyword index="K" term="Welcome" /> | ||
</HelpKeywords> | ||
</Topic> | ||
<Topic id="57986f1c-914a-4206-8453-ab2eaa9432a0" visible="True" isExpanded="true" title="Version History"> | ||
<HelpKeywords> | ||
<HelpKeyword index="K" term="version, history" /> | ||
</HelpKeywords> | ||
<Topic id="eba01947-9b47-4ff7-ac81-1949745ee376" visible="True" title="Version 1.0.0.0"> | ||
<HelpKeywords> | ||
<HelpKeyword index="K" term="version, 1.0.0.0" /> | ||
</HelpKeywords> | ||
</Topic> | ||
</Topic> | ||
</Topics> |
Oops, something went wrong.