Skip to content

Commit 67b9f33

Browse files
author
Oleg Abakumov
committed
rename projects to unnestable
1 parent 257f38a commit 67b9f33

24 files changed

Lines changed: 53 additions & 67 deletions

.idea/.idea.Dapper.Unnest.Generator/.idea/.gitignore

Lines changed: 0 additions & 15 deletions
This file was deleted.

.idea/.idea.Dapper.Unnest.Generator/.idea/encodings.xml

Lines changed: 0 additions & 4 deletions
This file was deleted.

.idea/.idea.Dapper.Unnest.Generator/.idea/indexLayout.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/.idea.Dapper.Unnest.Generator/.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

README.md

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,6 @@ Contributions are welcome! Please feel free to submit a Pull Request.
226226
2. Run tests: `dotnet test`
227227
3. Build the solution: `dotnet build`
228228

229-
### Running Tests
230-
231-
```bash
232-
dotnet test Dapper.Unnest.Generator.Tests/Dapper.Unnest.Generator.Tests.csproj
233-
```
234-
235229
## License
236230

237231
This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.

Dapper.Unnest.Generator.Tests/Dtos/ArraysDto.cs renamed to Unnestable.Tests/Dtos/ArraysDto.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Dapper.Unnest.Generator.Tests.Dtos;
1+
using Dapper.Unnest.Generator;
2+
3+
namespace Unnestable.Tests.Dtos;
24

35
[Unnestable]
46
public class ArraysDto

Dapper.Unnest.Generator.Tests/Dtos/ComplexDto.cs renamed to Unnestable.Tests/Dtos/ComplexDto.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Dapper.Unnest.Generator.Tests.Dtos;
1+
using Dapper.Unnest.Generator;
2+
3+
namespace Unnestable.Tests.Dtos;
24

35
[Unnestable]
46
public class ComplexDto

Dapper.Unnest.Generator.Tests/Dtos/MixedPropsRecord.cs renamed to Unnestable.Tests/Dtos/MixedPropsRecord.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Dapper.Unnest.Generator.Tests.Dtos;
1+
using Dapper.Unnest.Generator;
2+
3+
namespace Unnestable.Tests.Dtos;
24

35
[Unnestable]
46
public record MixedPropsRecord(int Id, string Name)

Dapper.Unnest.Generator.Tests/Dtos/NestedClass.cs renamed to Unnestable.Tests/Dtos/NestedClass.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
namespace Dapper.Unnest.Generator.Tests.Dtos;
1+
namespace Unnestable.Tests.Dtos;
22

33
public class NestedClass
44
{

Dapper.Unnest.Generator.Tests/Dtos/NullableDto.cs renamed to Unnestable.Tests/Dtos/NullableDto.cs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
namespace Dapper.Unnest.Generator.Tests.Dtos;
1+
using Dapper.Unnest.Generator;
2+
3+
namespace Unnestable.Tests.Dtos;
24

35
[Unnestable]
46
public class NullableDto

0 commit comments

Comments
 (0)