All Projects → aws → porting-assistant-dotnet-datastore

aws / porting-assistant-dotnet-datastore

Licence: Apache-2.0 license
The 'Porting Assistant for .NET' is a standalone compatibility analyzer that helps customers to port their .NET Framework (“.NET”) applications to .NET Core on Linux.

Programming Languages

C#
18002 projects
python
139335 projects - #7 most used programming language
Visual Basic .NET
514 projects
Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to porting-assistant-dotnet-datastore

csharp
📚 Recursos para aprender C#
Stars: ✭ 37 (-27.45%)
Mutual labels:  csharp-core
AutoInterface
C# interface-to-member source generator
Stars: ✭ 47 (-7.84%)
Mutual labels:  csharp-core
Loadlibrary
Porting Windows Dynamic Link Libraries to Linux
Stars: ✭ 3,717 (+7188.24%)
Mutual labels:  porting
git-explode
Explode linear sequence of git commits into topic branches
Stars: ✭ 43 (-15.69%)
Mutual labels:  porting
Serious-Sam-Android
Porting of Serious Sam: The Second Encounter for android
Stars: ✭ 49 (-3.92%)
Mutual labels:  porting
nc
Porting Netcat in Node.js. CLI util. 💻
Stars: ✭ 17 (-66.67%)
Mutual labels:  porting
porting
Helper scripts and notes that were used while porting various nlp models
Stars: ✭ 27 (-47.06%)
Mutual labels:  porting
Terminal
All-in-one solution for the management and security of your Telegram group. This is the third version and is written in C#
Stars: ✭ 12 (-76.47%)
Mutual labels:  csharp-core

Porting Assistant for .NET

Porting Assistant for .NET is an analysis tool that scans .NET Framework applications and generates a .NET Core compatibility assessment, helping customers port their applications to Linux faster.

Porting Assistant for .NET quickly scans .NET Framework applications to identify incompatibilities with .NET Core, finds known replacements, and generates detailed compatibility assessment reports. This reduces the manual effort involved in modernizing the applications to Linux.

Porting Assistant Dotnet DataStore

This repository contains the location of data store in S3. The data store contains data files that show package and API compatibility with .NET Core and .NET Standard.

  • Porting assistant uses these data files for finding the compatibility of packages and their APIs.
  • For each NuGet package in nuget.org, a separate Json file is defined. Each file captures compatibility information of all its packaged versions.
  • It shows compatibility information for all the NuGet packages available in nuget.org - 211k unique packages, 2.5 millions packaged versions (The numbers could change over time).

Format of the data file (Json format)

Package Details

Attribute Name Description
Name Name of the package.
Example: "Name": "AWSSDK.EC2"
Format Version of the Json document.
Example: "Format": "1.0"
Versions List of packaged versions of this package.
Example: "Versions": [ "4.0","4.4"]
Targets Targets: Compatible targets based on packaged versions.
Example: { "netcoreapp3.1" => [ "4.0", "4.1"] }, { "netcoreapp5.0 => ["4.0"] }.
"netcoreapp3.1" is supported for package versions - 4.0 and 4.1.
API details List of APIs. Refer API Details.
License details License details. Refer License Details

API Details

Attribute Name Description
Name Name of the Api.
Example: "Name": ".ctor"
Signature Signature of the Api.
Example: "Signature": "AutoMapper.AutoMapperConfigurationException.AutoMapperConfigurationException(string)"
Namespace Namespace.
Example: "NameSpace": "AutoMapper"
ClassName Class name.
Example: "ClassName": "AutoMapper.AutoMapperConfigurationException"
Parameters Parameters.
Example: "Parameters": [ "string" ]
ReturnType Return type.
Example: "ReturnType": "Void"
Targets Targets: Compatible targets based on packaged versions.
Example: { "netcoreapp3.1" => [ "4.0", "4.1"] }, { "netcoreapp5.0 => ["4.0"] }.
"netcoreapp3.1" is supported for package versions - 4.0 and 4.1.

License Details

Attribute Name Description
License License type.
Example: "License": { "MIT": [ "4.0.0" ], "Apache": [ "4.4.0" ] }
Title Title of the package.
Example: "Title": { "This package is used to analyse C# code": [ "4.0.0", "4.4.0" ] }
Url Url of the license.
Example: "Url": { "https://licenses.nuget.org/MIT": [ "4.0.0", "4.4.0" ] }
Description Description of the package.
Example: `"Details": { "This package is used to analyse C# code": [ "4.0.0", "4.4.0" ] }

Contributing

Security

Thank you

  • Portability Analyzer - Portability Analyzer analyzes assembly files to access API compatibility with various versions of .NET. Porting Assistant for .NET makes use of recommendations and data provided by Portability Analyzer.
  • THIRD-PARTY - This project would not be possible without additional dependencies listed in THIRD-PARTY.

License

This project is licensed under the Apache-2.0 License.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].