Adding StyleCop changes to allow style enforcement.

This commit is contained in:
Ima Mechanique 2013-07-15 20:58:55 +01:00
parent af230cbed7
commit afddb63ecc
2 changed files with 477 additions and 68 deletions

163
trunk/Settings.StyleCop Normal file
View file

@ -0,0 +1,163 @@
<StyleCopSettings Version="105">
<GlobalSettings>
<StringProperty Name="Culture">en-GB</StringProperty>
<StringProperty Name="MergeSettingsFiles">NoMerge</StringProperty>
</GlobalSettings>
<Analyzers>
<Analyzer AnalyzerId="StyleCop.CSharp.DocumentationRules">
<Rules>
<Rule Name="FileMustHaveHeader">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="FileHeaderMustShowCopyright">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="FileHeaderMustContainFileName">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="FileHeaderFileNameDocumentationMustMatchFileName">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="FileHeaderMustHaveValidCompanyText">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="DocumentationHeadersMustNotContainBlankLines">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="PropertyDocumentationMustHaveValue">
<RuleSettings>
<BooleanProperty Name="Enabled">True</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="PropertyDocumentationMustHaveValueText">
<RuleSettings>
<BooleanProperty Name="Enabled">True</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="ElementParameterDocumentationMustHaveText">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="DocumentationTextMustBeginWithACapitalLetter">
<RuleSettings>
<BooleanProperty Name="Enabled">True</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="DocumentationTextMustEndWithAPeriod">
<RuleSettings>
<BooleanProperty Name="Enabled">True</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="DocumentationTextMustMeetMinimumCharacterLength">
<RuleSettings>
<BooleanProperty Name="Enabled">True</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.OrderingRules">
<Rules>
<Rule Name="UsingDirectivesMustBePlacedWithinNamespace">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="ElementsMustAppearInTheCorrectOrder">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="ElementsMustBeOrderedByAccess">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="StaticElementsMustAppearBeforeInstanceElements">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.NamingRules">
<Rules>
<Rule Name="ElementMustBeginWithUpperCaseLetter">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="FieldNamesMustNotUseHungarianNotation">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.LayoutRules">
<Rules>
<Rule Name="CurlyBracketsForMultiLineStatementsMustNotShareLine">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="ClosingCurlyBracketMustBeFollowedByBlankLine">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.SpacingRules">
<Rules>
<Rule Name="TabsMustNotBeUsed">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
<Analyzer AnalyzerId="StyleCop.CSharp.ReadabilityRules">
<Rules>
<Rule Name="PrefixLocalCallsWithThis">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="CodeMustNotContainMultipleStatementsOnOneLine">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="UseStringEmptyForEmptyStrings">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
<Rule Name="UseBuiltInTypeAlias">
<RuleSettings>
<BooleanProperty Name="Enabled">False</BooleanProperty>
</RuleSettings>
</Rule>
</Rules>
<AnalyzerSettings />
</Analyzer>
</Analyzers>
</StyleCopSettings>

View file

@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8"?>
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0"> <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
<PropertyGroup> <PropertyGroup>
<ProjectType>Local</ProjectType> <ProjectType>Local</ProjectType>
@ -125,274 +125,471 @@
</Compile> </Compile>
<Compile Include="About.Designer.cs"> <Compile Include="About.Designer.cs">
<DependentUpon>About.cs</DependentUpon> <DependentUpon>About.cs</DependentUpon>
<ExcludeFromStyleCop>false</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="BugReport\BugReportForm.cs"> <Compile Include="BugReport\BugReportForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="BugReport\BugReportForm.Designer.cs"> <Compile Include="BugReport\BugReportForm.Designer.cs">
<DependentUpon>BugReportForm.cs</DependentUpon> <DependentUpon>BugReportForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BugReport\UploadBugReport.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BZip2Decompress\BZip2.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BZip2Decompress\BZip2Constants.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BZip2Decompress\BZip2InputStream.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Decompressor\ZipEntry.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="BugReport\UploadBugReport.cs" />
<Compile Include="BZip2Decompress\BZip2.cs" />
<Compile Include="BZip2Decompress\BZip2Constants.cs" />
<Compile Include="BZip2Decompress\BZip2InputStream.cs" />
<Compile Include="Decompressor\ZipEntry.cs" />
<Compile Include="Docking\AutoHideStripBase.cs"> <Compile Include="Docking\AutoHideStripBase.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockAreasEditor.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockAreasEditor.cs" />
<Compile Include="Docking\DockContent.cs"> <Compile Include="Docking\DockContent.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockContentCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockContentEventArgs.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockContentHandler.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockOutlineBase.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockContentCollection.cs" />
<Compile Include="Docking\DockContentEventArgs.cs" />
<Compile Include="Docking\DockContentHandler.cs" />
<Compile Include="Docking\DockOutlineBase.cs" />
<Compile Include="Docking\DockPane.cs"> <Compile Include="Docking\DockPane.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPane.SplitterControl.cs"> <Compile Include="Docking\DockPane.SplitterControl.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPaneCaptionBase.cs"> <Compile Include="Docking\DockPaneCaptionBase.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockPaneCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPaneCollection.cs" />
<Compile Include="Docking\DockPanel.AutoHideWindow.cs"> <Compile Include="Docking\DockPanel.AutoHideWindow.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.cs"> <Compile Include="Docking\DockPanel.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.DockDragHandler.cs"> <Compile Include="Docking\DockPanel.DockDragHandler.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.DragHandler.cs"> <Compile Include="Docking\DockPanel.DragHandler.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.FocusManager.cs"> <Compile Include="Docking\DockPanel.FocusManager.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.MdiClientController.cs"> <Compile Include="Docking\DockPanel.MdiClientController.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.Persistor.cs"> <Compile Include="Docking\DockPanel.Persistor.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanel.SplitterDragHandler.cs"> <Compile Include="Docking\DockPanel.SplitterDragHandler.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockPanelExtender.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockPanelSkin.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockPanelExtender.cs" />
<Compile Include="Docking\DockPanelSkin.cs" />
<Compile Include="Docking\DockPaneStripBase.cs"> <Compile Include="Docking\DockPaneStripBase.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockWindow.cs"> <Compile Include="Docking\DockWindow.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockWindow.SplitterControl.cs"> <Compile Include="Docking\DockWindow.SplitterControl.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\DockWindowCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DockWindowCollection.cs" />
<Compile Include="Docking\DragForm.cs"> <Compile Include="Docking\DragForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\DummyControl.cs"> <Compile Include="Docking\DummyControl.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Enums.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\Enums.cs" />
<Compile Include="Docking\FloatWindow.cs"> <Compile Include="Docking\FloatWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\FloatWindowCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Helpers\DockHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Helpers\DrawHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Helpers\ResourceHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Helpers\Win32Helper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\FloatWindowCollection.cs" />
<Compile Include="Docking\Helpers\DockHelper.cs" />
<Compile Include="Docking\Helpers\DrawHelper.cs" />
<Compile Include="Docking\Helpers\ResourceHelper.cs" />
<Compile Include="Docking\Helpers\Win32Helper.cs" />
<Compile Include="Docking\InertButtonBase.cs"> <Compile Include="Docking\InertButtonBase.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Interfaces.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Localization.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Measures.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\NestedDockingStatus.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\NestedPaneCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Resources.Designer.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\Interfaces.cs" />
<Compile Include="Docking\Localization.cs" />
<Compile Include="Docking\Measures.cs" />
<Compile Include="Docking\NestedDockingStatus.cs" />
<Compile Include="Docking\NestedPaneCollection.cs" />
<Compile Include="Docking\Resources.Designer.cs" />
<Compile Include="Docking\SplitterBase.cs"> <Compile Include="Docking\SplitterBase.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Strings.Designer.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\VisibleNestedPaneCollection.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\Strings.Designer.cs" />
<Compile Include="Docking\VisibleNestedPaneCollection.cs" />
<Compile Include="Docking\VS2005AutoHideStrip.cs"> <Compile Include="Docking\VS2005AutoHideStrip.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\VS2005DockPaneCaption.cs"> <Compile Include="Docking\VS2005DockPaneCaption.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\VS2005DockPaneStrip.cs"> <Compile Include="Docking\VS2005DockPaneStrip.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Win32\Enums.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Docking\Win32\NativeMethods.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Editor\KeyWords.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Docking\Win32\Enums.cs" />
<Compile Include="Docking\Win32\NativeMethods.cs" />
<Compile Include="Editor\KeyWords.cs" />
<None Include="Editor\RoundCorners.cs" /> <None Include="Editor\RoundCorners.cs" />
<Compile Include="Decompressor\Decompress.cs" /> <Compile Include="Decompressor\Decompress.cs">
<Compile Include="Editor\MsXsltContext.cs" /> <ExcludeFromStyleCop>true</ExcludeFromStyleCop>
<Compile Include="Helpers\HTTPRequest.cs" /> </Compile>
<Compile Include="Helpers\OutlineHelper.cs" /> <Compile Include="Editor\MsXsltContext.cs">
<Compile Include="Helpers\SendMyKeys.cs" /> <ExcludeFromStyleCop>true</ExcludeFromStyleCop>
<Compile Include="Helpers\TextFileEncodingDetector.cs" /> </Compile>
<Compile Include="BZip2Decompress\IChecksum.cs" /> <Compile Include="Helpers\HTTPRequest.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\OutlineHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\SendMyKeys.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\TextFileEncodingDetector.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BZip2Decompress\IChecksum.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="llTextBoxForm.cs"> <Compile Include="llTextBoxForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="llTextBoxForm.Designer.cs"> <Compile Include="llTextBoxForm.Designer.cs">
<DependentUpon>llTextBoxForm.cs</DependentUpon> <DependentUpon>llTextBoxForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Plugins\Generic.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Properties\AssemblyInfo.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\SecondLifeConstants.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\SecondLifeEvents.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\SecondLifeFunctions.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Plugins\Generic.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="SecondLife\SecondLifeConstants.cs" />
<Compile Include="SecondLife\SecondLifeEvents.cs" />
<Compile Include="SecondLife\SecondLifeFunctions.cs" />
<Compile Include="Solution\GuidProperty.cs"> <Compile Include="Solution\GuidProperty.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\GuidProperty.Designer.cs"> <Compile Include="Solution\GuidProperty.Designer.cs">
<DependentUpon>GuidProperty.cs</DependentUpon> <DependentUpon>GuidProperty.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\CodeCompletion.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\CompilerHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\FileAssociator.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\GetTemplate.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\Measure.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\PrinterHelper.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\TaskQueue.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\XMLRPC.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\OopsFormatter.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\CodeCompletion.cs" />
<Compile Include="Helpers\CompilerHelper.cs" />
<Compile Include="Helpers\FileAssociator.cs" />
<Compile Include="Helpers\GetTemplate.cs" />
<Compile Include="Helpers\Measure.cs" />
<Compile Include="Helpers\PrinterHelper.cs" />
<Compile Include="Helpers\TaskQueue.cs" />
<Compile Include="Helpers\XMLRPC.cs" />
<Compile Include="Helpers\OopsFormatter.cs" />
<Compile Include="Solution\NewProject.cs"> <Compile Include="Solution\NewProject.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\NewProject.Designer.cs"> <Compile Include="Solution\NewProject.Designer.cs">
<DependentUpon>NewProject.cs</DependentUpon> <DependentUpon>NewProject.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="PermissionsForm.cs"> <Compile Include="PermissionsForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="PermissionsForm.Designer.cs"> <Compile Include="PermissionsForm.Designer.cs">
<DependentUpon>PermissionsForm.cs</DependentUpon> <DependentUpon>PermissionsForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="GotoWindow.cs"> <Compile Include="GotoWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="GotoWindow.Designer.cs"> <Compile Include="GotoWindow.Designer.cs">
<DependentUpon>GotoWindow.cs</DependentUpon> <DependentUpon>GotoWindow.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\Numbered.cs"> <Compile Include="Editor\Numbered.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\Numbered.Designer.cs"> <Compile Include="Editor\Numbered.Designer.cs">
<DependentUpon>Numbered.cs</DependentUpon> <DependentUpon>Numbered.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\TooltipWindow.cs"> <Compile Include="Editor\TooltipWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\TooltipWindow.designer.cs"> <Compile Include="Editor\TooltipWindow.designer.cs">
<DependentUpon>TooltipWindow.cs</DependentUpon> <DependentUpon>TooltipWindow.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\GListBox.cs"> <Compile Include="Editor\GListBox.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\GListBox.designer.cs"> <Compile Include="Editor\GListBox.designer.cs">
<DependentUpon>GListBox.cs</DependentUpon> <DependentUpon>GListBox.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\GListBoxWindow.cs"> <Compile Include="Editor\GListBoxWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\GListBoxWindow.designer.cs"> <Compile Include="Editor\GListBoxWindow.designer.cs">
<DependentUpon>GListBoxWindow.cs</DependentUpon> <DependentUpon>GListBoxWindow.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\RichLabel.cs"> <Compile Include="Editor\RichLabel.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\RichLabel.Designer.cs"> <Compile Include="Editor\RichLabel.Designer.cs">
<DependentUpon>RichLabel.cs</DependentUpon> <DependentUpon>RichLabel.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="llDialogForm.cs"> <Compile Include="llDialogForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="llDialogForm.Designer.cs"> <Compile Include="llDialogForm.Designer.cs">
<DependentUpon>llDialogForm.cs</DependentUpon> <DependentUpon>llDialogForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Plugins\LSLint.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Plugins\Particles.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Plugins\LSLint.cs" />
<Compile Include="Plugins\Particles.cs" />
<Compile Include="Browser.cs"> <Compile Include="Browser.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Browser.Designer.cs"> <Compile Include="Browser.Designer.cs">
<DependentUpon>Browser.cs</DependentUpon> <DependentUpon>Browser.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\AutoFormatter.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\AutoFormatter.cs" />
<Compile Include="EditForm.cs"> <Compile Include="EditForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="EditForm.Designer.cs"> <Compile Include="EditForm.Designer.cs">
<DependentUpon>EditForm.cs</DependentUpon> <DependentUpon>EditForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="FindWindow.cs"> <Compile Include="FindWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="FindWindow.Designer.cs"> <Compile Include="FindWindow.Designer.cs">
<DependentUpon>FindWindow.cs</DependentUpon> <DependentUpon>FindWindow.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="LSLEditorForm.cs"> <Compile Include="LSLEditorForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="LSLEditorForm.Designer.cs"> <Compile Include="LSLEditorForm.Designer.cs">
<DependentUpon>LSLEditorForm.cs</DependentUpon> <DependentUpon>LSLEditorForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Properties\Resources.Designer.cs"> <Compile Include="Properties\Resources.Designer.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>
<DependentUpon>Resources.resx</DependentUpon> <DependentUpon>Resources.resx</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Properties\Settings.Designer.cs"> <Compile Include="Properties\Settings.Designer.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DesignTimeSharedInput>True</DesignTimeSharedInput> <DesignTimeSharedInput>True</DesignTimeSharedInput>
<DependentUpon>Settings.settings</DependentUpon> <DependentUpon>Settings.settings</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\Settings.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\Settings.cs" />
<Compile Include="Helpers\GroupboxEvent.cs"> <Compile Include="Helpers\GroupboxEvent.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Helpers\LSL2CSharp.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\LSL2CSharp.cs" />
<Compile Include="Editor\NumberedTextBoxUC.cs"> <Compile Include="Editor\NumberedTextBoxUC.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Editor\NumberedTextBoxUC.designer.cs"> <Compile Include="Editor\NumberedTextBoxUC.designer.cs">
<DependentUpon>NumberedTextBoxUC.cs</DependentUpon> <DependentUpon>NumberedTextBoxUC.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="RuntimeConsole.cs"> <Compile Include="RuntimeConsole.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="RuntimeConsole.Designer.cs"> <Compile Include="RuntimeConsole.Designer.cs">
<DependentUpon>RuntimeConsole.cs</DependentUpon> <DependentUpon>RuntimeConsole.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\SecondLifeHst.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="SecondLife\SecondLifeHst.cs" />
<Compile Include="Helpers\SmtpClient.cs"> <Compile Include="Helpers\SmtpClient.cs">
<SubType>Code</SubType> <SubType>Code</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\Float.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\String.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\list.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\rotation.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\key.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\integer.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="SecondLife\vector.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="SecondLife\Float.cs" />
<Compile Include="SecondLife\String.cs" />
<Compile Include="SecondLife\list.cs" />
<Compile Include="SecondLife\rotation.cs" />
<Compile Include="SecondLife\key.cs" />
<Compile Include="SecondLife\integer.cs" />
<Compile Include="SecondLife\vector.cs" />
<Compile Include="Editor\SyntaxRichTextBox.cs"> <Compile Include="Editor\SyntaxRichTextBox.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\WebRequestClass.cs"> <Compile Include="Helpers\WebRequestClass.cs">
<SubType>Code</SubType> <SubType>Code</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<EmbeddedResource Include="About.resx"> <EmbeddedResource Include="About.resx">
<SubType>Designer</SubType> <SubType>Designer</SubType>
@ -400,139 +597,187 @@
</EmbeddedResource> </EmbeddedResource>
<Compile Include="SecondLife\SecondLifeMain.cs"> <Compile Include="SecondLife\SecondLifeMain.cs">
<SubType>Code</SubType> <SubType>Code</SubType>
<ExcludeFromStyleCop>false</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\TabControlExtended.cs"> <Compile Include="Helpers\TabControlExtended.cs">
<SubType>Component</SubType> <SubType>Component</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Helpers\TabControlExtended.Designer.cs"> <Compile Include="Helpers\TabControlExtended.Designer.cs">
<DependentUpon>TabControlExtended.cs</DependentUpon> <DependentUpon>TabControlExtended.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="SimulatorConsole.cs"> <Compile Include="SimulatorConsole.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="SimulatorConsole.Designer.cs"> <Compile Include="SimulatorConsole.Designer.cs">
<DependentUpon>SimulatorConsole.cs</DependentUpon> <DependentUpon>SimulatorConsole.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\SolutionExplorer.cs"> <Compile Include="Solution\SolutionExplorer.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\SolutionExplorer.designer.cs"> <Compile Include="Solution\SolutionExplorer.designer.cs">
<DependentUpon>SolutionExplorer.cs</DependentUpon> <DependentUpon>SolutionExplorer.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\SvnAguments.cs"> <Compile Include="Solution\SvnAguments.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Solution\SvnAguments.Designer.cs"> <Compile Include="Solution\SvnAguments.Designer.cs">
<DependentUpon>SvnAguments.cs</DependentUpon> <DependentUpon>SvnAguments.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="Plugins\Svn.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile>
<Compile Include="BZip2Decompress\StrangeCrc.cs">
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Plugins\Svn.cs" />
<Compile Include="BZip2Decompress\StrangeCrc.cs" />
<Compile Include="SyntaxError.cs"> <Compile Include="SyntaxError.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="SyntaxError.Designer.cs"> <Compile Include="SyntaxError.Designer.cs">
<DependentUpon>SyntaxError.cs</DependentUpon> <DependentUpon>SyntaxError.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentPlugins.cs"> <Compile Include="Tools\EnvironmentPlugins.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentPlugins.Designer.cs"> <Compile Include="Tools\EnvironmentPlugins.Designer.cs">
<DependentUpon>EnvironmentPlugins.cs</DependentUpon> <DependentUpon>EnvironmentPlugins.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeGeneral.cs"> <Compile Include="Tools\RuntimeGeneral.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeGeneral.Designer.cs"> <Compile Include="Tools\RuntimeGeneral.Designer.cs">
<DependentUpon>RuntimeGeneral.cs</DependentUpon> <DependentUpon>RuntimeGeneral.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorCodeCompletion.cs"> <Compile Include="Tools\TextEditorCodeCompletion.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorCodeCompletion.Designer.cs"> <Compile Include="Tools\TextEditorCodeCompletion.Designer.cs">
<DependentUpon>TextEditorCodeCompletion.cs</DependentUpon> <DependentUpon>TextEditorCodeCompletion.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentBrowser.cs"> <Compile Include="Tools\EnvironmentBrowser.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentBrowser.Designer.cs"> <Compile Include="Tools\EnvironmentBrowser.Designer.cs">
<DependentUpon>EnvironmentBrowser.cs</DependentUpon> <DependentUpon>EnvironmentBrowser.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\ProjectSettings.cs"> <Compile Include="Tools\ProjectSettings.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\ProjectSettings.Designer.cs"> <Compile Include="Tools\ProjectSettings.Designer.cs">
<DependentUpon>ProjectSettings.cs</DependentUpon> <DependentUpon>ProjectSettings.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeInternal.cs"> <Compile Include="Tools\RuntimeInternal.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeInternal.Designer.cs"> <Compile Include="Tools\RuntimeInternal.Designer.cs">
<DependentUpon>RuntimeInternal.cs</DependentUpon> <DependentUpon>RuntimeInternal.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeSmtp.cs"> <Compile Include="Tools\RuntimeSmtp.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeSmtp.Designer.cs"> <Compile Include="Tools\RuntimeSmtp.Designer.cs">
<DependentUpon>RuntimeSmtp.cs</DependentUpon> <DependentUpon>RuntimeSmtp.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeExternal.cs"> <Compile Include="Tools\RuntimeExternal.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\RuntimeExternal.Designer.cs"> <Compile Include="Tools\RuntimeExternal.Designer.cs">
<DependentUpon>RuntimeExternal.cs</DependentUpon> <DependentUpon>RuntimeExternal.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentGeneral.cs"> <Compile Include="Tools\EnvironmentGeneral.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentGeneral.Designer.cs"> <Compile Include="Tools\EnvironmentGeneral.Designer.cs">
<DependentUpon>EnvironmentGeneral.cs</DependentUpon> <DependentUpon>EnvironmentGeneral.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorFontColors.cs"> <Compile Include="Tools\TextEditorFontColors.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorFontColors.Designer.cs"> <Compile Include="Tools\TextEditorFontColors.Designer.cs">
<DependentUpon>TextEditorFontColors.cs</DependentUpon> <DependentUpon>TextEditorFontColors.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentHelp.cs"> <Compile Include="Tools\EnvironmentHelp.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\EnvironmentHelp.Designer.cs"> <Compile Include="Tools\EnvironmentHelp.Designer.cs">
<DependentUpon>EnvironmentHelp.cs</DependentUpon> <DependentUpon>EnvironmentHelp.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorGeneral.cs"> <Compile Include="Tools\TextEditorGeneral.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\TextEditorGeneral.Designer.cs"> <Compile Include="Tools\TextEditorGeneral.Designer.cs">
<DependentUpon>TextEditorGeneral.cs</DependentUpon> <DependentUpon>TextEditorGeneral.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\ToolsOptions.cs"> <Compile Include="Tools\ToolsOptions.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\ToolsOptions.Designer.cs"> <Compile Include="Tools\ToolsOptions.Designer.cs">
<DependentUpon>ToolsOptions.cs</DependentUpon> <DependentUpon>ToolsOptions.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\VersionControlGeneral.cs"> <Compile Include="Tools\VersionControlGeneral.cs">
<SubType>UserControl</SubType> <SubType>UserControl</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Tools\VersionControlGeneral.Designer.cs"> <Compile Include="Tools\VersionControlGeneral.Designer.cs">
<DependentUpon>VersionControlGeneral.cs</DependentUpon> <DependentUpon>VersionControlGeneral.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="ToolWindow.cs"> <Compile Include="ToolWindow.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="ToolWindow.Designer.cs"> <Compile Include="ToolWindow.Designer.cs">
<DependentUpon>ToolWindow.cs</DependentUpon> <DependentUpon>ToolWindow.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="UpdateApplicationForm.cs"> <Compile Include="UpdateApplicationForm.cs">
<SubType>Form</SubType> <SubType>Form</SubType>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="UpdateApplicationForm.Designer.cs"> <Compile Include="UpdateApplicationForm.Designer.cs">
<DependentUpon>UpdateApplicationForm.cs</DependentUpon> <DependentUpon>UpdateApplicationForm.cs</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<Compile Include="Web References\org.lsleditor.www\Reference.cs"> <Compile Include="Web References\org.lsleditor.www\Reference.cs">
<AutoGen>True</AutoGen> <AutoGen>True</AutoGen>
<DesignTime>True</DesignTime> <DesignTime>True</DesignTime>
<DependentUpon>Reference.map</DependentUpon> <DependentUpon>Reference.map</DependentUpon>
<ExcludeFromStyleCop>true</ExcludeFromStyleCop>
</Compile> </Compile>
<EmbeddedResource Include="Browser.resx"> <EmbeddedResource Include="Browser.resx">
<SubType>Designer</SubType> <SubType>Designer</SubType>
@ -871,6 +1116,7 @@
</BootstrapperPackage> </BootstrapperPackage>
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<Import Project="$(ProgramFiles)\MSBuild\StyleCop\v4.7\StyleCop.targets" />
<PropertyGroup> <PropertyGroup>
<PreBuildEvent>"$(FrameworkSDKDir)Bin\rc.exe" /r "$(ProjectDir)$(TargetName).rc"</PreBuildEvent> <PreBuildEvent>"$(FrameworkSDKDir)Bin\rc.exe" /r "$(ProjectDir)$(TargetName).rc"</PreBuildEvent>
<PostBuildEvent>$(SolutionDir)\..\build\AssemblyRevisionIncrementer.exe /t="$(SolutionDir)\Properties\AssemblyInfo.cs"</PostBuildEvent> <PostBuildEvent>$(SolutionDir)\..\build\AssemblyRevisionIncrementer.exe /t="$(SolutionDir)\Properties\AssemblyInfo.cs"</PostBuildEvent>