Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuv4ik/Mutatio
Visual Studio for Mac add-in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically.
https://github.com/yuv4ik/Mutatio
dot-net dotnet-standard visual-studio-for-mac-extension xamarin xamarin-forms
Last synced: 3 months ago
JSON representation
Visual Studio for Mac add-in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically.
- Host: GitHub
- URL: https://github.com/yuv4ik/Mutatio
- Owner: yuv4ik
- License: mit
- Created: 2018-03-22T22:28:53.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-05-01T06:40:38.000Z (over 5 years ago)
- Last Synced: 2024-10-19T19:10:57.191Z (3 months ago)
- Topics: dot-net, dotnet-standard, visual-studio-for-mac-extension, xamarin, xamarin-forms
- Language: C#
- Homepage: https://smellyc0de.wordpress.com/2018/03/23/automatically-converting-pcl-to-net-standard-2-0-project/
- Size: 817 KB
- Stars: 27
- Watchers: 3
- Forks: 4
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- awesome-monodevelop - Mutatio - in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically. (Addins)
- awesome-xamarin-forms - Mutatio ★27 - in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically. (Tools)
- awesome-xamarin - Mutatio ★18 - Visual Studio for Mac add-in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically. (Tools)
README
# Mutatio
Visual Studio for Mac add-in/extension for converting old PCLs to .NET Standard 2.0 targeting projects automatically.
## Warning
```This extension is making it first steps, please make sure you have a back up of your code before using it!```
## Installation
### Automatic
You can download and install Mutatio using the Extension Manager of Visual Studio for Mac by searching the Gallery.
### Manual
Alternatively you can download and install it manually using the folowing steps:
1. Download the `.mpack` file from [here](https://github.com/yuv4ik/mutatio/tree/master/Versions)
2. Launch Visual Studio, open the Visual Studio menu and select `Extensions...`
3. In the bottom left of the Extensions Manager dialog, click `Install from file...`
4. Choose the `.mpack` file you downloaded in step 1
5. When prompted, select Install## Limitations
```Currently only C# projects supported.```
Due to behavior differences `F#` support is currently postponed, however, contributors are welcome!## Usage
`Mutatio` can convert newly created or existing projects. Please keep in mind that there might be `NuGet` packages that does not support .NET Standard 2.0, in this case you may see `NuGet` related exceptions.
In order to convert a project, right click on it and select `Convert to NET Standard 2.0`.
For more details please check my [blog](https://smellyc0de.wordpress.com/2018/03/23/automatically-converting-pcl-to-net-standard-2-0-project/).## Details
The technical conversion from old PCL to .NET Standard 2.0 is very simple and described [here](https://gist.github.com/yuv4ik/063a35fe3986e62d69aee2f0ed0607bf).
#### The conversion process is consist of:
* Creating a backup of `*.csproj`, `packages.config` & `/Properties` in `root/mutatio_backup`
* Generating new `*.csproj`
* All the packages from `packages.json` will be defined in new `*.csproj`
* Deleting of `*.csproj`, `packages.config` & `/Properties`
* Re-opening the solution## License
This project is licensed under the MIT License - see the [LICENSE.md](LICENSE.md) file for details