Cleaning up naming
This commit is contained in:
parent
0a67e6e2cc
commit
9b74c03a9d
22 changed files with 61 additions and 67 deletions
|
|
@ -1,6 +1,6 @@
|
|||
using CsMic;
|
||||
using CSMic;
|
||||
|
||||
namespace CsMic.StandardLibrary
|
||||
namespace CSMic.StandardLibrary
|
||||
{
|
||||
public static class Constants
|
||||
{
|
||||
|
|
|
|||
|
|
@ -2,18 +2,20 @@
|
|||
|
||||
<PropertyGroup>
|
||||
<TargetFramework>net9.0</TargetFramework>
|
||||
<RootNamespace>CsMic.StandardLibrary</RootNamespace>
|
||||
<AssemblyName>CsMic.StandardLibrary</AssemblyName>
|
||||
<RootNamespace>CSMic.StandardLibrary</RootNamespace>
|
||||
<AssemblyName>CSMic.StandardLibrary</AssemblyName>
|
||||
<ImplicitUsings>enable</ImplicitUsings>
|
||||
<Nullable>enable</Nullable>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Core\CsMic.Core.csproj" />
|
||||
<Compile Remove="Functions\hyperbolic\**" />
|
||||
<EmbeddedResource Remove="Functions\hyperbolic\**" />
|
||||
<None Remove="Functions\hyperbolic\**" />
|
||||
</ItemGroup>
|
||||
|
||||
<ItemGroup>
|
||||
<Folder Include="functions\hyperbolic\" />
|
||||
<ProjectReference Include="..\Core\CSMic.Core.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
|
|
|||
|
|
@ -1,12 +1,12 @@
|
|||
using CsMic;
|
||||
using CsMic.StandardLibrary.Functions;
|
||||
using CSMic;
|
||||
using CSMic.StandardLibrary.Functions;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CsMic.StandardLibrary
|
||||
namespace CSMic.StandardLibrary
|
||||
{
|
||||
public static class Functions
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using CsMic;
|
||||
using FunctionValueType = CsMic.FunctionValueType;
|
||||
using CSMic;
|
||||
|
||||
namespace CsMic.StandardLibrary.Functions
|
||||
namespace CSMic.StandardLibrary.Functions
|
||||
{
|
||||
public class AbsoluteValue : FunctionBase, ICodedFunction
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,6 @@
|
|||
using CsMic;
|
||||
using FunctionValueType = CsMic.FunctionValueType;
|
||||
using CSMic;
|
||||
|
||||
namespace CsMic.StandardLibrary.Functions
|
||||
namespace CSMic.StandardLibrary.Functions
|
||||
{
|
||||
public abstract class FunctionBase
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
using CsMic;
|
||||
using CSMic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CsMic.StandardLibrary.Functions
|
||||
namespace CSMic.StandardLibrary.Functions
|
||||
{
|
||||
public class Max : FunctionBase, ICodedFunction
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,11 +1,11 @@
|
|||
using CsMic;
|
||||
using CSMic;
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace CsMic.StandardLibrary.Functions
|
||||
namespace CSMic.StandardLibrary.Functions
|
||||
{
|
||||
public class Min : FunctionBase, ICodedFunction
|
||||
{
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
using CsMic;
|
||||
using FunctionValueType = CsMic.FunctionValueType;
|
||||
using CSMic;
|
||||
|
||||
namespace CsMic.StandardLibrary.Functions
|
||||
|
||||
namespace CSMic.StandardLibrary.Functions
|
||||
{
|
||||
public class Sign : FunctionBase, ICodedFunction
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue