Skip to content

Commit

Permalink
Merge pull request #4 from viklover/fix-namespace-issue
Browse files Browse the repository at this point in the history
Fix namespace issues
  • Loading branch information
viklover authored Jan 6, 2025
2 parents 45bf0d5 + ec5806e commit de431ac
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Newtonsoft.Json.Linq;

namespace JsonHelper.Net.Test;
namespace NewtonsoftJsonHelper.Test;
/// <summary>
/// Unit tests to <see cref="JsonHelper"/>
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
</ItemGroup>

<ItemGroup>
<ProjectReference Include="..\JsonHelper.Net\JsonHelper.Net.csproj" />
<ProjectReference Include="..\Newtonsoft.JsonHelper\Newtonsoft.JsonHelper.csproj" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions JsonHelper.Net.sln → Newtonsoft.JsonHelper.sln
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 17
VisualStudioVersion = 17.0.31903.59
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonHelper.Net", "JsonHelper.Net\JsonHelper.Net.csproj", "{FD1E72B6-DB02-4B07-AB16-BB6BC13D1203}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Newtonsoft.JsonHelper", "Newtonsoft.JsonHelper\Newtonsoft.JsonHelper.csproj", "{FD1E72B6-DB02-4B07-AB16-BB6BC13D1203}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "JsonHelper.Net.Test", "JsonHelper.Net.Test\JsonHelper.Net.Test.csproj", "{AF1FF2D7-7481-4973-9936-9593DB549DA2}"
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Newtonsoft.JsonHelper.Test", "Newtonsoft.JsonHelper.Test\Newtonsoft.JsonHelper.Test.csproj", "{AF1FF2D7-7481-4973-9936-9593DB549DA2}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
using Newtonsoft.Json.Linq;

namespace JsonHelper.Net;
namespace NewtonsoftJsonHelper;
/// <summary>
/// Newtonsoft.Json helper
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
namespace JsonHelper.Net;
namespace NewtonsoftJsonHelper;
/// <summary>
/// Json helper exception
/// </summary>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<PackageId>JsonHelper.Net</PackageId>
<Version>1.0.1</Version>
<Version>1.0.3</Version>
<Authors>Mihail Vorobyev</Authors>
<Description>Newtonsoft.Json helper we needed</Description>
<PackageLicenseExpression>MIT</PackageLicenseExpression>
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ var list = JsonHelper.SelectListOrThrow<float>(json, "$.list");

## Installation
```bash
dotnet add package JsonHelper.Net --version 1.0.1
dotnet add package JsonHelper.Net --version 1.0.3
```
Nuget page is [here](https://www.nuget.org/packages/JsonHelper.Net)

Expand Down

0 comments on commit de431ac

Please sign in to comment.