rename from Core namespace

master
Evan Hemsley 2020-02-20 15:29:57 -08:00
parent b9f1e1ce57
commit a90c3a70ee
5 changed files with 17 additions and 17 deletions

View File

@ -26,7 +26,7 @@ jobs:
- checkout - checkout
- attach_workspace: - attach_workspace:
at: . at: .
- run: dotnet nuget push ./Easing/bin/Release/MoonTools.Core.Easing.*.nupkg -k $API_KEY -s https://api.nuget.org/v3/index.json - run: dotnet nuget push ./Easing/bin/Release/MoonTools.Easing.*.nupkg -k $API_KEY -s https://api.nuget.org/v3/index.json
workflows: workflows:
version: 2 version: 2

View File

@ -1,6 +1,6 @@
using System; using System;
namespace MoonTools.Core namespace MoonTools
{ {
public static class Easing public static class Easing
{ {

View File

@ -3,17 +3,17 @@
<PropertyGroup> <PropertyGroup>
<Version>1.1.0</Version> <Version>1.1.0</Version>
<TargetFramework>netstandard2.0</TargetFramework> <TargetFramework>netstandard2.0</TargetFramework>
<Description>.NET Core Easing Functions</Description> <Description>.NET Standard Easing Functions</Description>
<PackageId>MoonTools.Core.Easing</PackageId> <PackageId>MoonTools.Easing</PackageId>
<RootNamespace>MoonTools.Core.Easing</RootNamespace> <RootNamespace>MoonTools.Easing</RootNamespace>
<Company>Moonside Games</Company> <Company>Moonside Games</Company>
<Authors>Evan Hemsley</Authors> <Authors>Evan Hemsley</Authors>
<Copyright>Evan Hemsley 2019</Copyright> <Copyright>Evan Hemsley 2020</Copyright>
<Product>MoonTools.Core.Easing</Product> <Product>MoonTools.Easing</Product>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild> <GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<AssemblyName>MoonTools.Core.Easing</AssemblyName> <AssemblyName>MoonTools.Easing</AssemblyName>
<PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression> <PackageLicenseExpression>LGPL-3.0-only</PackageLicenseExpression>
<PackageProjectUrl>https://github.com/MoonsideGames/MoonTools.Core.Easing</PackageProjectUrl> <PackageProjectUrl>https://gitea.moonside.games/MoonsideGames/MoonTools.Easing</PackageProjectUrl>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>

View File

@ -1,9 +1,9 @@
# MoonTools.Core.Easing # MoonTools.Easing
[![NuGet Badge](https://buildstats.info/nuget/MoonTools.Core.Easing)](https://www.nuget.org/packages/MoonTools.Core.Easing/) [![NuGet Badge](https://buildstats.info/nuget/MoonTools.Easing)](https://www.nuget.org/packages/MoonTools.Easing/)
[![CircleCI](https://circleci.com/gh/MoonsideGames/MoonTools.Core.Easing.svg?style=svg)](https://circleci.com/gh/MoonsideGames/MoonTools.Core.Easing) [![CircleCI](https://circleci.com/gh/MoonsideGames/MoonTools.Easing.svg?style=svg)](https://circleci.com/gh/MoonsideGames/MoonTools.Easing)
Easing functions for .NET Core Easing functions for .NET Standard
## Reference ## Reference
@ -14,7 +14,7 @@ https://easings.net
Use easing functions to transform time values and get fancy animations along paths. Use easing functions to transform time values and get fancy animations along paths.
```cs ```cs
using MoonTools.Core.Easing; using MoonTools.Easing;
// Transform a normalized time value. // Transform a normalized time value.
Easing.InQuad(0.75f); // => 0.5625f Easing.InQuad(0.75f); // => 0.5625f
@ -29,4 +29,4 @@ Easing.OutQuart(2, 10, 100, 4); // => 103.75
## Additional Info ## Additional Info
Use this library with [MoonTools.Core.Curve](https://github.com/MoonsideGames/MoonTools.Core.Curve) for some nicely animated Bezier curves! Use this library with [MoonTools.Core.Curve](https://github.com/MoonsideGames/MoonTools.Core.Curve) for some nicely animated Bezier curves!

View File

@ -1,7 +1,7 @@
using NUnit.Framework; using NUnit.Framework;
using FluentAssertions; using FluentAssertions;
using MoonTools.Core; using MoonTools;
using System; using System;
namespace Test namespace Test
@ -1204,4 +1204,4 @@ namespace Test
} }
} }
} }
} }