Skip to content

Commit

Permalink
Add FluentString class
Browse files Browse the repository at this point in the history
  • Loading branch information
SinoAHpx committed Oct 8, 2024
1 parent 083a1c6 commit 113f6e9
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 21 deletions.
8 changes: 8 additions & 0 deletions .idea/.idea.Technetium/.idea/indexLayout.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 6 additions & 6 deletions Technetium.Test/Technetium.Test.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="coverlet.collector" Version="6.0.0"/>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0"/>
<PackageReference Include="NUnit" Version="3.14.0"/>
<PackageReference Include="NUnit.Analyzers" Version="3.9.0"/>
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0"/>
<PackageReference Include="coverlet.collector" Version="6.0.0" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="17.8.0" />
<PackageReference Include="NUnit" Version="3.14.0" />
<PackageReference Include="NUnit.Analyzers" Version="3.9.0" />
<PackageReference Include="NUnit3TestAdapter" Version="4.5.0" />
</ItemGroup>

<ItemGroup>
<Using Include="NUnit.Framework"/>
<Using Include="NUnit.Framework" />
</ItemGroup>

</Project>
8 changes: 8 additions & 0 deletions Technetium.Test/Text/String/FluentStringTest.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using System;

namespace Technetium.Test.Text.String;

public class FluentStringTest
{

}
15 changes: 0 additions & 15 deletions Technetium.Test/UnitTest1.cs

This file was deleted.

8 changes: 8 additions & 0 deletions Technetium/Text/String/FluentString.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
using System;

namespace Technetium.Text.String;

public static class FluentString
{

}

0 comments on commit 113f6e9

Please sign in to comment.