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> <TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings> <ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable> <Nullable>enable</Nullable>
<RootNamespace>Dashboard</RootNamespace>
</PropertyGroup> </PropertyGroup>
</Project> </Project>

@ -1,7 +1,7 @@
using System.Collections; using System.Collections;
using System.Collections.Generic; using System.Collections.Generic;
namespace Dashboard.Drawing namespace Dashboard
{ {
public class HashList<T> : IReadOnlyList<T> public class HashList<T> : IReadOnlyList<T>
where T : notnull where T : notnull