├── .gitignore ├── DemoUWP_CS ├── App.xaml ├── App.xaml.cs ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── DemoUWP_CS.csproj ├── DemoUWP_CS.sln ├── MainPage.xaml ├── MainPage.xaml.cs ├── Package.appxmanifest ├── Properties │ ├── AssemblyInfo.cs │ └── Default.rd.xml └── project.json ├── DemoUWP_VB ├── App.xaml ├── App.xaml.vb ├── Assets │ ├── LockScreenLogo.scale-200.png │ ├── SplashScreen.scale-200.png │ ├── Square150x150Logo.scale-200.png │ ├── Square44x44Logo.scale-200.png │ ├── Square44x44Logo.targetsize-24_altform-unplated.png │ ├── StoreLogo.png │ └── Wide310x150Logo.scale-200.png ├── DemoUWP_VB.sln ├── DemoUWP_VB.vbproj ├── MainPage.xaml ├── MainPage.xaml.vb ├── My Project │ ├── AssemblyInfo.vb │ └── Default.rd.xml ├── Package.appxmanifest └── project.json ├── LICENSE ├── PlatformSpecific ├── PlatformSpecific.vb └── PlatformSpecific.vbproj ├── PlatformSpecificAnalyzer.sln ├── PlatformSpecificAnalyzer ├── PlatformSpecificAnalyzer.vb ├── PlatformSpecificAnalyzer.vbproj ├── PlatformSpecificAnalyzerCS.vb ├── PlatformSpecificAnalyzerVB.vb ├── app.config ├── nupkg │ ├── PlatformSpecificAnalyzer.nuspec │ ├── PlatformSpecificAnalyzer.png │ ├── PlatformSpecificAnalyzer.targets │ ├── install.ps1 │ └── uninstall.ps1 └── packages.config ├── README.md ├── ReadMe.mp4 └── Screenshot.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /DemoUWP_CS/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/App.xaml -------------------------------------------------------------------------------- /DemoUWP_CS/App.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/App.xaml.cs -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/StoreLogo.png -------------------------------------------------------------------------------- /DemoUWP_CS/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_CS/DemoUWP_CS.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/DemoUWP_CS.csproj -------------------------------------------------------------------------------- /DemoUWP_CS/DemoUWP_CS.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/DemoUWP_CS.sln -------------------------------------------------------------------------------- /DemoUWP_CS/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/MainPage.xaml -------------------------------------------------------------------------------- /DemoUWP_CS/MainPage.xaml.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/MainPage.xaml.cs -------------------------------------------------------------------------------- /DemoUWP_CS/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Package.appxmanifest -------------------------------------------------------------------------------- /DemoUWP_CS/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DemoUWP_CS/Properties/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/Properties/Default.rd.xml -------------------------------------------------------------------------------- /DemoUWP_CS/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_CS/project.json -------------------------------------------------------------------------------- /DemoUWP_VB/App.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/App.xaml -------------------------------------------------------------------------------- /DemoUWP_VB/App.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/App.xaml.vb -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/LockScreenLogo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/LockScreenLogo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/SplashScreen.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/SplashScreen.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/Square150x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/Square150x150Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/Square44x44Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/Square44x44Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/Square44x44Logo.targetsize-24_altform-unplated.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/StoreLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/StoreLogo.png -------------------------------------------------------------------------------- /DemoUWP_VB/Assets/Wide310x150Logo.scale-200.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Assets/Wide310x150Logo.scale-200.png -------------------------------------------------------------------------------- /DemoUWP_VB/DemoUWP_VB.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/DemoUWP_VB.sln -------------------------------------------------------------------------------- /DemoUWP_VB/DemoUWP_VB.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/DemoUWP_VB.vbproj -------------------------------------------------------------------------------- /DemoUWP_VB/MainPage.xaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/MainPage.xaml -------------------------------------------------------------------------------- /DemoUWP_VB/MainPage.xaml.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/MainPage.xaml.vb -------------------------------------------------------------------------------- /DemoUWP_VB/My Project/AssemblyInfo.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/My Project/AssemblyInfo.vb -------------------------------------------------------------------------------- /DemoUWP_VB/My Project/Default.rd.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/My Project/Default.rd.xml -------------------------------------------------------------------------------- /DemoUWP_VB/Package.appxmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/Package.appxmanifest -------------------------------------------------------------------------------- /DemoUWP_VB/project.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/DemoUWP_VB/project.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /PlatformSpecific/PlatformSpecific.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecific/PlatformSpecific.vb -------------------------------------------------------------------------------- /PlatformSpecific/PlatformSpecific.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecific/PlatformSpecific.vbproj -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer.sln -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/PlatformSpecificAnalyzer.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/PlatformSpecificAnalyzer.vb -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/PlatformSpecificAnalyzer.vbproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/PlatformSpecificAnalyzer.vbproj -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/PlatformSpecificAnalyzerCS.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/PlatformSpecificAnalyzerCS.vb -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/PlatformSpecificAnalyzerVB.vb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/PlatformSpecificAnalyzerVB.vb -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/app.config -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.nuspec -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.png -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/nupkg/PlatformSpecificAnalyzer.targets -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/nupkg/install.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/nupkg/install.ps1 -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/nupkg/uninstall.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/nupkg/uninstall.ps1 -------------------------------------------------------------------------------- /PlatformSpecificAnalyzer/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/PlatformSpecificAnalyzer/packages.config -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /ReadMe.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/ReadMe.mp4 -------------------------------------------------------------------------------- /Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ljw1004/platform-specific-analyzer/HEAD/Screenshot.png --------------------------------------------------------------------------------