Skip to content

Commit 3603999

Browse files
committed
Fix naming. Sorry guys
1 parent e605106 commit 3603999

File tree

4 files changed

+15
-15
lines changed

4 files changed

+15
-15
lines changed

Build.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,6 @@ $artifacts = ".\artifacts"
2626

2727
if(Test-Path $artifacts) { Remove-Item $artifacts -Force -Recurse }
2828

29-
exec { & dotnet test -c Release --results-directory $artifacts -l trx /bl:$artifacts\FastMapper.binlog }
29+
exec { & dotnet test -c Release --results-directory $artifacts -l trx /bl:$artifacts\MagicMapper.binlog }
3030

3131
exec { & dotnet pack .\src\AutoMapper\AutoMapper.csproj -c Release -o $artifacts --no-build }

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Then we can decide if and how a feature or a change could be implemented and if
66
Also read this first: [Being a good open source citizen](https://hackernoon.com/being-a-good-open-source-citizen-9060d0ab9732#.x3hocgw85)
77

88
## General feedback and discussions
9-
Please start a discussion on the [core repo issue tracker](https://github.com/kant2002/FastMapper/issues).
9+
Please start a discussion on the [core repo issue tracker](https://github.com/kant2002/MagicMapper/issues).
1010

1111
## Platform
1212
AutoMapper is built using the RTM tooling that ships with the latest Visual Studio. This is the only configuration accepted.
@@ -18,7 +18,7 @@ Run the PowerShell script `Build.ps1` from the command line. This builds and run
1818
## Bugs and feature requests?
1919
Please log a new issue in the appropriate GitHub repo:
2020

21-
* [Core](https://github.com/kant2002/FastMapper)
21+
* [Core](https://github.com/kant2002/MagicMapper)
2222
* Other projects not forked, let me know in issues.
2323
<!-- * [EF6 Extensions](https://github.com/AutoMapper/AutoMapper.EF6)
2424
* [IDataReader/Record Extensions](https://github.com/AutoMapper/AutoMapper.Data)

README.md

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
1-
![FastMapper](https://s3.amazonaws.com/automapper/logo.png)
1+
![MagicMapper](https://s3.amazonaws.com/automapper/logo.png)
22

3-
[![CI](https://github.com/kant2002/fasmapper/workflows/CI/badge.svg)](https://github.com/kant2002/FastMapper/actions?query=workflow%3ACI)
4-
[![NuGet](http://img.shields.io/nuget/vpre/FastMapper.svg?label=NuGet)](https://www.nuget.org/packages/FastMapper/)
5-
[![MyGet (dev)](https://img.shields.io/myget/fastmapperdev/vpre/AutoMapper.svg?label=MyGet)](https://myget.org/feed/automapperdev/package/nuget/FastMapper)
3+
[![CI](https://github.com/kant2002/fasmapper/workflows/CI/badge.svg)](https://github.com/kant2002/MagicMapper/actions?query=workflow%3ACI)
4+
[![NuGet](http://img.shields.io/nuget/vpre/MagicMapper.svg?label=NuGet)](https://www.nuget.org/packages/MagicMapper/)
5+
[![MyGet (dev)](https://img.shields.io/myget/fastmapperdev/vpre/AutoMapper.svg?label=MyGet)](https://myget.org/feed/automapperdev/package/nuget/MagicMapper)
66
[![Documentation Status](https://readthedocs.org/projects/automapper/badge/?version=stable)](https://docs.automapper.org/en/stable/?badge=stable)
77

88

9-
### What is FastMapper?
9+
### What is MagicMapper?
1010

11-
FastMapper is binary compatible fork with v14.0
11+
MagicMapper is binary compatible fork with v14.0
1212

13-
FastMapper is a simple little library built to solve a deceptively complex problem - getting rid of code that mapped one object to another. This type of code is rather dreary and boring to write, so why not invent a tool to do it for us?
13+
MagicMapper is a simple little library built to solve a deceptively complex problem - getting rid of code that mapped one object to another. This type of code is rather dreary and boring to write, so why not invent a tool to do it for us?
1414

1515
This is the fork of main repository for AutoMapper, but there's more, which I do not fork. Please let me know in the issues if you want that:
1616

@@ -22,7 +22,7 @@ This is the fork of main repository for AutoMapper, but there's more, which I do
2222

2323
### How do I get started?
2424

25-
First, configure FastMapper to know what types you want to map, in the startup of your application:
25+
First, configure MagicMapper to know what types you want to map, in the startup of your application:
2626

2727
```csharp
2828
var configuration = new MapperConfiguration(cfg =>
@@ -48,14 +48,14 @@ Check out the [getting started guide](https://automapper.readthedocs.io/en/lates
4848

4949
### Where can I get it?
5050

51-
First, [install NuGet](http://docs.nuget.org/docs/start-here/installing-nuget). Then, install [AutoMapper](https://www.nuget.org/packages/FastMapper/) from the package manager console:
51+
First, [install NuGet](http://docs.nuget.org/docs/start-here/installing-nuget). Then, install [AutoMapper](https://www.nuget.org/packages/MagicMapper/) from the package manager console:
5252

5353
```
54-
PM> Install-Package FastMapper
54+
PM> Install-Package MagicMapper
5555
```
5656
Or from the .NET CLI as:
5757
```
58-
dotnet add package FastMapper
58+
dotnet add package MagicMapper
5959
```
6060

6161
### Do you have an issue?

src/AutoMapper/AutoMapper.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<AssemblyOriginatorKeyFile>..\..\AutoMapper.snk</AssemblyOriginatorKeyFile>
1010
<SignAssembly>true</SignAssembly>
1111
<PublicSign Condition=" '$(OS)' != 'Windows_NT' ">true</PublicSign>
12-
<PackageId>FastMapper</PackageId>
12+
<PackageId>MagicMapper</PackageId>
1313
<PackageIcon>icon.png</PackageIcon>
1414
<PackageProjectUrl>https://automapper.org</PackageProjectUrl>
1515
<PackageReadmeFile>README.md</PackageReadmeFile>

0 commit comments

Comments
 (0)