Fix root namespaces.

This commit is contained in:
H. Utku Maden 2024-12-24 22:30:19 +03:00
parent 3dff7438b3
commit cf7cf9a77a
2 changed files with 3 additions and 2 deletions

@ -4,6 +4,7 @@
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<RootNamespace>Dashboard</RootNamespace>
</PropertyGroup>
</Project>

@ -1,7 +1,7 @@
using System.Collections;
using System.Collections.Generic;
namespace Dashboard.Drawing
namespace Dashboard
{
public class HashList<T> : IReadOnlyList<T>
where T : notnull
@ -35,4 +35,4 @@ namespace Dashboard.Drawing
public IEnumerator<T> GetEnumerator() => _list.GetEnumerator();
IEnumerator IEnumerable.GetEnumerator() => _list.GetEnumerator();
}
}
}