Skip to content

Commit

Permalink
Renamed Solution
Browse files Browse the repository at this point in the history
  • Loading branch information
garywoodfine committed Aug 12, 2020
1 parent 4d9a4c7 commit 4c1582e
Show file tree
Hide file tree
Showing 6 changed files with 626 additions and 2 deletions.
560 changes: 560 additions & 0 deletions LICENSE

Large diffs are not rendered by default.

File renamed without changes.
18 changes: 17 additions & 1 deletion src/ICustomMap.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,22 @@
/* Copyright (c) threenine.co.uk . All rights reserved.
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;
using AutoMapper;

namespace Threenine.Map
{

Expand Down
15 changes: 15 additions & 0 deletions src/IMapFrom.cs
Original file line number Diff line number Diff line change
@@ -1,6 +1,21 @@

using System;
/* Copyright (c) threenine.co.uk . All rights reserved.
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
namespace Threenine.Map
{

Expand Down
17 changes: 17 additions & 0 deletions src/IMapTo.cs
Original file line number Diff line number Diff line change
@@ -1,3 +1,20 @@
/* Copyright (c) threenine.co.uk . All rights reserved.
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

using System;


Expand Down
18 changes: 17 additions & 1 deletion src/MapConfigurationFactory.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,20 @@
using System;
/* Copyright (c) threenine.co.uk . All rights reserved.
GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
using System;
using System.Collections.Generic;
using System.Linq;
using System.Reflection;
Expand Down

0 comments on commit 4c1582e

Please sign in to comment.