├── .gitignore ├── LICENSE ├── PortabilityAnalyzer.sln ├── PortabilityAnalyzer ├── App.config ├── MainForm.Designer.cs ├── MainForm.cs ├── MainForm.resx ├── PortabilityAnalyzer.csproj ├── Program.cs └── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── README.md └── SECURITY.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/LICENSE -------------------------------------------------------------------------------- /PortabilityAnalyzer.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer.sln -------------------------------------------------------------------------------- /PortabilityAnalyzer/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/App.config -------------------------------------------------------------------------------- /PortabilityAnalyzer/MainForm.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/MainForm.Designer.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/MainForm.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/MainForm.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/MainForm.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/MainForm.resx -------------------------------------------------------------------------------- /PortabilityAnalyzer/PortabilityAnalyzer.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/PortabilityAnalyzer.csproj -------------------------------------------------------------------------------- /PortabilityAnalyzer/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Program.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Properties/Resources.resx -------------------------------------------------------------------------------- /PortabilityAnalyzer/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /PortabilityAnalyzer/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/PortabilityAnalyzer/Properties/Settings.settings -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/dotnet-apiport-ui/HEAD/SECURITY.md --------------------------------------------------------------------------------