Add MustConfiguredAttribute and update project file

Added MustConfiguredAttribute for property usage in ReC.Domain.Attributes. Removed explicit "Attributes\" folder reference from ReC.Domain.csproj since the folder now contains code.
This commit is contained in:
2025-12-10 13:32:42 +01:00
parent a6111cdc66
commit 1419455b36
2 changed files with 6 additions and 4 deletions

View File

@@ -0,0 +1,6 @@
namespace ReC.Domain.Attributes;
[AttributeUsage(AttributeTargets.Property)]
public class MustConfiguredAttribute : Attribute
{
}

View File

@@ -6,8 +6,4 @@
<Nullable>enable</Nullable>
</PropertyGroup>
<ItemGroup>
<Folder Include="Attributes\" />
</ItemGroup>
</Project>