-
Notifications
You must be signed in to change notification settings - Fork 10
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feat/basetypes #11
Feat/basetypes #11
Conversation
Updated |
@@ -23,6 +23,7 @@ | |||
</ItemGroup> | |||
|
|||
<ItemGroup> | |||
<ProjectReference Include="..\Monaco.Template.Common.Domain\Monaco.Template.Common.Domain.csproj" /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You don't need this reference because it already exists by transitivity because of Monaco.Template.Common.Infrastructure
.
<ProjectReference Include="..\Monaco.Template.Common.Domain\Monaco.Template.Common.Domain.csproj" /> |
src/Content/Monaco.Template.Common.Application/DTOs/Extensions/BaseTypeExtensions.cs
Outdated
Show resolved
Hide resolved
@@ -0,0 +1,30 @@ | |||
<Project Sdk="Microsoft.NET.Sdk"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file and its path have an extra space in Common. Application.Tests
.
Please fix the typo.
@@ -64,6 +64,8 @@ EndProject | |||
#if (filesSupport) | |||
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Monaco.Template.Common.BlobStorage", "Monaco.Template.Common.BlobStorage\Monaco.Template.Common.BlobStorage.csproj", "{42E51D47-B82F-4A92-B1E5-CD8BE44DE6F0}" | |||
EndProject | |||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monaco.Template.Common. Application.Tests", "Monaco.Template.Common. Application.Tests\Monaco.Template.Common. Application.Tests.csproj", "{93ECBA58-111C-401F-AA51-45626772E14A}" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please fix the typo once the path has been corrected at file system.
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monaco.Template.Common. Application.Tests", "Monaco.Template.Common. Application.Tests\Monaco.Template.Common. Application.Tests.csproj", "{93ECBA58-111C-401F-AA51-45626772E14A}" | |
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Monaco.Template.Common.Application.Tests", "Monaco.Template.Common.Application.Tests\Monaco.Template.Common.Application.Tests.csproj", "{93ECBA58-111C-401F-AA51-45626772E14A}" |
using Monaco.Template.Common.Application.DTOs.Extensions; | ||
using Monaco.Template.Common.Domain.Model; | ||
|
||
namespace Monaco.Template.Common._Application.Tests; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
namespace Monaco.Template.Common._Application.Tests; | |
namespace Monaco.Template.Common.Application.Tests; |
|
||
<PropertyGroup> | ||
<TargetFramework>net7.0</TargetFramework> | ||
<RootNamespace>Monaco.Template.Common._Application.Tests</RootNamespace> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<RootNamespace>Monaco.Template.Common._Application.Tests</RootNamespace> |
To work better with Enumeration types and DTOs I've added a class to better with and not repeat code.