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

github.com/mono/monodevelop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'main/src/addins/CSharpBinding/MonoDevelop.CSharp.Formatting/policies/GNUCSharpPolicy.xml')
-rw-r--r--main/src/addins/CSharpBinding/MonoDevelop.CSharp.Formatting/policies/GNUCSharpPolicy.xml163
1 files changed, 0 insertions, 163 deletions
diff --git a/main/src/addins/CSharpBinding/MonoDevelop.CSharp.Formatting/policies/GNUCSharpPolicy.xml b/main/src/addins/CSharpBinding/MonoDevelop.CSharp.Formatting/policies/GNUCSharpPolicy.xml
deleted file mode 100644
index a40b19ac24..0000000000
--- a/main/src/addins/CSharpBinding/MonoDevelop.CSharp.Formatting/policies/GNUCSharpPolicy.xml
+++ /dev/null
@@ -1,163 +0,0 @@
-<!--
-
-GNUCSharpPolicy.xml
-
-Author:
- Mike Krüger <mkrueger@xamarin.com>
-
-Copyright (c) 2012 Xamarin Inc. (http://xamarin.com)
-
-Permission is hereby granted, free of charge, to any person obtaining a copy
-of this software and associated documentation files (the "Software"), to deal
-in the Software without restriction, including without limitation the rights
-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
-copies of the Software, and to permit persons to whom the Software is
-furnished to do so, subject to the following conditions:
-
-The above copyright notice and this permission notice shall be included in
-all copies or substantial portions of the Software.
-
-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
-THE SOFTWARE.
--->
-
-
-<CSharpFormattingPolicy scope="text/x-csharp" allowDiffSerialize="False">
- <IndentNamespaceBody>True</IndentNamespaceBody>
- <IndentClassBody>True</IndentClassBody>
- <IndentInterfaceBody>True</IndentInterfaceBody>
- <IndentStructBody>True</IndentStructBody>
- <IndentEnumBody>True</IndentEnumBody>
- <IndentMethodBody>True</IndentMethodBody>
- <IndentPropertyBody>True</IndentPropertyBody>
- <IndentEventBody>True</IndentEventBody>
- <IndentBlocks>True</IndentBlocks>
- <IndentSwitchBody>True</IndentSwitchBody>
- <IndentCaseBody>True</IndentCaseBody>
- <IndentBreakStatements>True</IndentBreakStatements>
- <AlignEmbeddedStatements>True</AlignEmbeddedStatements>
- <PropertyFormatting>AllowOneLine</PropertyFormatting>
- <NamespaceBraceStyle>NextLine</NamespaceBraceStyle>
- <ClassBraceStyle>NextLine</ClassBraceStyle>
- <InterfaceBraceStyle>NextLine</InterfaceBraceStyle>
- <StructBraceStyle>NextLine</StructBraceStyle>
- <EnumBraceStyle>NextLine</EnumBraceStyle>
- <MethodBraceStyle>NextLine</MethodBraceStyle>
- <AnonymousMethodBraceStyle>EndOfLine</AnonymousMethodBraceStyle>
- <ConstructorBraceStyle>NextLine</ConstructorBraceStyle>
- <DestructorBraceStyle>NextLine</DestructorBraceStyle>
- <PropertyBraceStyle>EndOfLine</PropertyBraceStyle>
- <PropertyGetBraceStyle>EndOfLine</PropertyGetBraceStyle>
- <PropertySetBraceStyle>EndOfLine</PropertySetBraceStyle>
- <SimpleGetBlockFormatting>AllowOneLine</SimpleGetBlockFormatting>
- <SimpleSetBlockFormatting>AllowOneLine</SimpleSetBlockFormatting>
- <EventBraceStyle>EndOfLine</EventBraceStyle>
- <EventAddBraceStyle>EndOfLine</EventAddBraceStyle>
- <EventRemoveBraceStyle>EndOfLine</EventRemoveBraceStyle>
- <AllowEventAddBlockInline>True</AllowEventAddBlockInline>
- <AllowEventRemoveBlockInline>True</AllowEventRemoveBlockInline>
- <StatementBraceStyle>NextLineShifted2</StatementBraceStyle>
- <AllowIfBlockInline>False</AllowIfBlockInline>
- <ElseNewLinePlacement>SameLine</ElseNewLinePlacement>
- <ElseIfNewLinePlacement>SameLine</ElseIfNewLinePlacement>
- <CatchNewLinePlacement>SameLine</CatchNewLinePlacement>
- <FinallyNewLinePlacement>SameLine</FinallyNewLinePlacement>
- <WhileNewLinePlacement>SameLine</WhileNewLinePlacement>
- <ArrayInitializerWrapping>WrapIfTooLong</ArrayInitializerWrapping>
- <ArrayInitializerBraceStyle>EndOfLine</ArrayInitializerBraceStyle>
- <KeepCommentsAtFirstColumn>True</KeepCommentsAtFirstColumn>
- <BeforeMethodDeclarationParentheses>False</BeforeMethodDeclarationParentheses>
- <BetweenEmptyMethodDeclarationParentheses>False</BetweenEmptyMethodDeclarationParentheses>
- <BeforeMethodDeclarationParameterComma>False</BeforeMethodDeclarationParameterComma>
- <AfterMethodDeclarationParameterComma>True</AfterMethodDeclarationParameterComma>
- <WithinMethodDeclarationParentheses>False</WithinMethodDeclarationParentheses>
- <BeforeMethodCallParentheses>False</BeforeMethodCallParentheses>
- <BetweenEmptyMethodCallParentheses>False</BetweenEmptyMethodCallParentheses>
- <BeforeMethodCallParameterComma>False</BeforeMethodCallParameterComma>
- <AfterMethodCallParameterComma>True</AfterMethodCallParameterComma>
- <WithinMethodCallParentheses>False</WithinMethodCallParentheses>
- <BeforeFieldDeclarationComma>False</BeforeFieldDeclarationComma>
- <AfterFieldDeclarationComma>True</AfterFieldDeclarationComma>
- <BeforeLocalVariableDeclarationComma>False</BeforeLocalVariableDeclarationComma>
- <AfterLocalVariableDeclarationComma>True</AfterLocalVariableDeclarationComma>
- <BeforeConstructorDeclarationParentheses>False</BeforeConstructorDeclarationParentheses>
- <BetweenEmptyConstructorDeclarationParentheses>False</BetweenEmptyConstructorDeclarationParentheses>
- <BeforeConstructorDeclarationParameterComma>False</BeforeConstructorDeclarationParameterComma>
- <AfterConstructorDeclarationParameterComma>True</AfterConstructorDeclarationParameterComma>
- <WithinConstructorDeclarationParentheses>False</WithinConstructorDeclarationParentheses>
- <NewLineBeforeConstructorInitializerColon>NewLine</NewLineBeforeConstructorInitializerColon>
- <NewLineAfterConstructorInitializerColon>SameLine</NewLineAfterConstructorInitializerColon>
- <BeforeIndexerDeclarationBracket>True</BeforeIndexerDeclarationBracket>
- <WithinIndexerDeclarationBracket>False</WithinIndexerDeclarationBracket>
- <BeforeIndexerDeclarationParameterComma>False</BeforeIndexerDeclarationParameterComma>
- <AfterIndexerDeclarationParameterComma>True</AfterIndexerDeclarationParameterComma>
- <BeforeDelegateDeclarationParentheses>False</BeforeDelegateDeclarationParentheses>
- <BetweenEmptyDelegateDeclarationParentheses>False</BetweenEmptyDelegateDeclarationParentheses>
- <BeforeDelegateDeclarationParameterComma>False</BeforeDelegateDeclarationParameterComma>
- <AfterDelegateDeclarationParameterComma>False</AfterDelegateDeclarationParameterComma>
- <WithinDelegateDeclarationParentheses>False</WithinDelegateDeclarationParentheses>
- <NewParentheses>False</NewParentheses>
- <IfParentheses>True</IfParentheses>
- <WhileParentheses>True</WhileParentheses>
- <ForParentheses>True</ForParentheses>
- <ForeachParentheses>True</ForeachParentheses>
- <CatchParentheses>True</CatchParentheses>
- <SwitchParentheses>True</SwitchParentheses>
- <LockParentheses>True</LockParentheses>
- <UsingParentheses>True</UsingParentheses>
- <AroundAssignmentParentheses>True</AroundAssignmentParentheses>
- <AroundLogicalOperatorParentheses>True</AroundLogicalOperatorParentheses>
- <AroundEqualityOperatorParentheses>True</AroundEqualityOperatorParentheses>
- <AroundRelationalOperatorParentheses>True</AroundRelationalOperatorParentheses>
- <AroundBitwiseOperatorParentheses>True</AroundBitwiseOperatorParentheses>
- <AroundAdditiveOperatorParentheses>True</AroundAdditiveOperatorParentheses>
- <AroundMultiplicativeOperatorParentheses>True</AroundMultiplicativeOperatorParentheses>
- <AroundShiftOperatorParentheses>True</AroundShiftOperatorParentheses>
- <AroundNullCoalescingOperator>True</AroundNullCoalescingOperator>
- <WithinParentheses>False</WithinParentheses>
- <WithinIfParentheses>False</WithinIfParentheses>
- <WithinWhileParentheses>False</WithinWhileParentheses>
- <WithinForParentheses>False</WithinForParentheses>
- <WithinForEachParentheses>False</WithinForEachParentheses>
- <WithinCatchParentheses>False</WithinCatchParentheses>
- <WithinSwitchParentheses>False</WithinSwitchParentheses>
- <WithinLockParentheses>False</WithinLockParentheses>
- <WithinUsingParentheses>False</WithinUsingParentheses>
- <WithinCastParentheses>False</WithinCastParentheses>
- <WithinSizeOfParentheses>False</WithinSizeOfParentheses>
- <BeforeSizeOfParentheses>False</BeforeSizeOfParentheses>
- <WithinTypeOfParentheses>False</WithinTypeOfParentheses>
- <WithinNewParentheses>False</WithinNewParentheses>
- <BetweenEmptyNewParentheses>False</BetweenEmptyNewParentheses>
- <BeforeNewParameterComma>False</BeforeNewParameterComma>
- <AfterNewParameterComma>True</AfterNewParameterComma>
- <BeforeTypeOfParentheses>False</BeforeTypeOfParentheses>
- <WithinCheckedExpressionParantheses>False</WithinCheckedExpressionParantheses>
- <ConditionalOperatorBeforeConditionSpace>True</ConditionalOperatorBeforeConditionSpace>
- <ConditionalOperatorAfterConditionSpace>True</ConditionalOperatorAfterConditionSpace>
- <ConditionalOperatorBeforeSeparatorSpace>True</ConditionalOperatorBeforeSeparatorSpace>
- <ConditionalOperatorAfterSeparatorSpace>True</ConditionalOperatorAfterSeparatorSpace>
- <SpacesWithinBrackets>False</SpacesWithinBrackets>
- <SpacesBeforeBrackets>False</SpacesBeforeBrackets>
- <BeforeBracketComma>False</BeforeBracketComma>
- <AfterBracketComma>True</AfterBracketComma>
- <SpacesBeforeForSemicolon>False</SpacesBeforeForSemicolon>
- <SpacesAfterForSemicolon>True</SpacesAfterForSemicolon>
- <SpacesAfterTypecast>False</SpacesAfterTypecast>
- <SpacesBeforeArrayDeclarationBrackets>False</SpacesBeforeArrayDeclarationBrackets>
- <BlankLinesBeforeUsings>0</BlankLinesBeforeUsings>
- <BlankLinesAfterUsings>1</BlankLinesAfterUsings>
- <BlankLinesBeforeFirstDeclaration>0</BlankLinesBeforeFirstDeclaration>
- <BlankLinesBetweenTypes>1</BlankLinesBetweenTypes>
- <BlankLinesBetweenFields>0</BlankLinesBetweenFields>
- <BlankLinesBetweenEventFields>0</BlankLinesBetweenEventFields>
- <BlankLinesBetweenMembers>1</BlankLinesBetweenMembers>
- <BlankLinesInsideRegion>1</BlankLinesInsideRegion>
- <BlankLinesAroundRegion>1</BlankLinesAroundRegion>
- <IndentBlocksInsideExpressions>False</IndentBlocksInsideExpressions>
-</CSharpFormattingPolicy> \ No newline at end of file