You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[Microsoft DI Extensions](https://github.com/AutoMapper/AutoMapper.Extensions.Microsoft.DependencyInjection)
26
-
27
-
## Other discussions
28
-
https://gitter.im/AutoMapper/AutoMapper
26
+
* [Microsoft DI Extensions](https://github.com/AutoMapper/AutoMapper.Extensions.Microsoft.DependencyInjection) -->
29
27
30
28
## Filing issues
31
29
The best way to get your bug fixed is to be as detailed as you can be about the problem.
32
30
Providing a minimal project with steps to reproduce the problem is ideal.
33
31
Here are questions you can answer before you file a bug to make sure you're not missing any important information.
34
32
35
-
1. Did you read the [documentation](https://automapper.readthedocs.io/en/latest/)?
33
+
1. Did you read the [documentation](https://automapper.readthedocs.io/en/latest/)?*For now, use AutoMapper docs, but I will give other resource soon*
36
34
2. Did you include the snippet of broken code in the issue?
37
35
3. What are the *EXACT* steps to reproduce this problem (including source/destination types, mapping configuration and execution)?
38
36
39
-
GitHub supports [markdown](https://github.github.com/github-flavored-markdown/), so when filing bugs make sure you check the formatting before clicking submit.
40
-
41
37
## Contributing code and content
42
38
You will need to sign a [Contributor License Agreement](https://cla.dotnetfoundation.org/) before submitting your pull request.
43
39
44
40
Make sure you can build the code. Familiarize yourself with the project workflow and our coding conventions. If you don't know what a pull request is read this article: https://help.github.com/articles/using-pull-requests.
45
41
46
-
**We only accept PRs to the master branch.**
42
+
**We only accept PRs to the main branch.**
47
43
48
44
Before submitting a feature or substantial code contribution please discuss it with the team and ensure it follows the product roadmap. Here's a list of blog posts that are worth reading before doing a pull request:
AutoMapper 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?
11
+
FastMapper is binary compatible fork with v14.0
12
12
13
-
This is the main repository for AutoMapper, but there's more:
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?
14
+
15
+
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:
@@ -20,7 +22,7 @@ This is the main repository for AutoMapper, but there's more:
20
22
21
23
### How do I get started?
22
24
23
-
First, configure AutoMapper to know what types you want to map, in the startup of your application:
25
+
First, configure FastMapper to know what types you want to map, in the startup of your application:
24
26
25
27
```csharp
26
28
varconfiguration=newMapperConfiguration(cfg=>
@@ -42,18 +44,18 @@ var fooDto = mapper.Map<FooDto>(foo);
42
44
varbarDto=mapper.Map<BarDto>(bar);
43
45
```
44
46
45
-
Check out the [getting started guide](https://automapper.readthedocs.io/en/latest/Getting-started.html). When you're done there, the [wiki](https://automapper.readthedocs.io/en/latest/) goes in to the nitty-gritty details. If you have questions, you can post them to [Stack Overflow](https://stackoverflow.com/questions/tagged/automapper)or in our [Gitter](https://gitter.im/AutoMapper/AutoMapper).
47
+
Check out the [getting started guide](https://automapper.readthedocs.io/en/latest/Getting-started.html). When you're done there, the [wiki](https://automapper.readthedocs.io/en/latest/) goes in to the nitty-gritty details. If you have questions, you can post them to [Stack Overflow](https://stackoverflow.com/questions/tagged/automapper)
46
48
47
49
### Where can I get it?
48
50
49
-
First, [install NuGet](http://docs.nuget.org/docs/start-here/installing-nuget). Then, install [AutoMapper](https://www.nuget.org/packages/AutoMapper/) 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/FastMapper/) from the package manager console:
50
52
51
53
```
52
-
PM> Install-Package AutoMapper
54
+
PM> Install-Package FastMapper
53
55
```
54
56
Or from the .NET CLI as:
55
57
```
56
-
dotnet add package AutoMapper
58
+
dotnet add package FastMapper
57
59
```
58
60
59
61
### Do you have an issue?
@@ -71,6 +73,6 @@ For more information see the [.NET Foundation Code of Conduct](https://dotnetfou
0 commit comments