-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move core logic into shared project and add UWP head (#36)
* Move to shared core logic * Update CI to handle new project for nuget release
- Loading branch information
Showing
109 changed files
with
251 additions
and
184 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
File renamed without changes.
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
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
47 changes: 47 additions & 0 deletions
47
src/VisualTreeAnalyzers.Shared/VisualTreeAnalyzers.Shared.projitems
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,47 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<MSBuildAllProjects Condition="'$(MSBuildVersion)' == '' Or '$(MSBuildVersion)' < '16.0'">$(MSBuildAllProjects);$(MSBuildThisFileFullPath)</MSBuildAllProjects> | ||
<HasSharedItems>true</HasSharedItems> | ||
<SharedGUID>1e1c64d1-8222-41a5-8aa9-4f028df5c6b8</SharedGUID> | ||
</PropertyGroup> | ||
<PropertyGroup Label="Configuration"> | ||
<Import_RootNamespace>VisualTreeAnalyzers</Import_RootNamespace> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\AccessibilityAnalyzer.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\AccessibilityRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\ControlNameNotIncludeTypeRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\ControlNonEmptyNameRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\ExpectKeyboardFocusableFalseRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\ExpectKeyboardFocusableTrueRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\LandmarkTypeMainOnceRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\ListItemNameNotEqualDataContextRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\LocalizedLandMarkTypeRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\NameReasonableLengthRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\OrientationNotNoneRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\PatternInterfaceImplementedRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\RequiredSelectionRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\SingleSelectionRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Accessibility\Rules\TypeButtonIsInvokeOrToggleRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\AnalyzerHelper.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\IElementAnalyzer.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\IRule.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\IVisualTreeWalker.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\IVisualTreeWalkerTimer.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\RuleScanner.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\VisualTreeWalker.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Core\VisualTreeWalkerTimer.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\ElementSnapshot.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\ElementSnapshotCreator.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\Exporter\IObjectToStringConverter.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\Exporter\JsonExporter.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\Exporter\JsonHelper.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\Exporter\StandardObjectToStringConverter.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\Exporter\XmlExporter.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\IElementSnapshot.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\IElementSnapshotCreator.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\NamespaceHelper.cs" /> | ||
<Compile Include="$(MSBuildThisFileDirectory)Snapshot\StandardOptions.cs" /> | ||
</ItemGroup> | ||
</Project> |
13 changes: 13 additions & 0 deletions
13
src/VisualTreeAnalyzers.Shared/VisualTreeAnalyzers.Shared.shproj
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,13 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup Label="Globals"> | ||
<ProjectGuid>1e1c64d1-8222-41a5-8aa9-4f028df5c6b8</ProjectGuid> | ||
<MinimumVisualStudioVersion>14.0</MinimumVisualStudioVersion> | ||
</PropertyGroup> | ||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.Default.props" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.Common.props" /> | ||
<PropertyGroup /> | ||
<Import Project="VisualTreeAnalyzers.Shared.projitems" Label="Shared" /> | ||
<Import Project="$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)\CodeSharing\Microsoft.CodeSharing.CSharp.targets" /> | ||
</Project> |
File renamed without changes.
File renamed without changes.
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
4 changes: 2 additions & 2 deletions
4
.../ExpectKeyboardFocusableFalseRuleTests.cs → .../ExpectKeyboardFocusableFalseRuleTests.cs
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
Oops, something went wrong.