Cleaning up naming

This commit is contained in:
Jordan Wages 2025-08-20 20:32:13 -05:00
commit 9b74c03a9d
22 changed files with 61 additions and 67 deletions

View file

@ -6,8 +6,8 @@
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<IsPackable>false</IsPackable>
<RootNamespace>CsMic.Tests</RootNamespace>
<AssemblyName>CsMic.Tests</AssemblyName>
<RootNamespace>CSMic.Tests</RootNamespace>
<AssemblyName>CSMic.Tests</AssemblyName>
</PropertyGroup>
<ItemGroup>
@ -19,8 +19,8 @@
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\Core\CsMic.Core.csproj" />
<ProjectReference Include="..\StandardLibrary\CsMic.StandardLibrary.csproj" />
<ProjectReference Include="..\Core\CSMic.Core.csproj" />
<ProjectReference Include="..\StandardLibrary\CSMic.StandardLibrary.csproj" />
</ItemGroup>
<ItemGroup>

View file

@ -1,7 +1,7 @@
using System.Globalization;
using CsMic;
using CSMic;
namespace CsMic.Tests;
namespace CSMic.Tests;
public class InputInterpreterTests
{

View file

@ -1,11 +1,11 @@
using CsMic;
using CsMic.StandardLibrary;
using CSMic;
using CSMic.StandardLibrary;
using NUnit.Framework;
using CsMic.StandardLibrary.Functions;
using CSMic.StandardLibrary.Functions;
using System.Globalization;
using System.Reflection.Metadata;
namespace CsMic.Tests;
namespace CSMic.Tests;
public class StdlibFunctionsTests
{