Skip to content

Commit

Permalink
First release of Quantities.Serialization.Newtonsoft (#40)
Browse files Browse the repository at this point in the history
  • Loading branch information
atmoos committed Nov 26, 2023
2 parents 7a0233d + 02ba1c1 commit 712464e
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
dotnet-version: ${{ env.DotNetVersion }}
- uses: tedd/publish-nuget-neo@v1
with:
NUGET_KEY: ${{secrets.CREATENEWNUGETPACKAGE}}
NUGET_KEY: ${{secrets.PUSH_NEW_QUANTITY_VERSION}}
PROJECT_FILE_PATH: ${{env.Project}}
TAG_COMMIT: true
TAG_FORMAT: ${{env.Prefix}}/v*
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,11 @@
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Quantities\Quantities.csproj" />
<ProjectReference Include="..\Newtonsoft\Quantities.Serialization.Newtonsoft.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Atmoos.Quantities.Units" Version="1.0.0" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,15 @@
<Import Project="../Serialization.Pack.targets"/>

<PropertyGroup>
<Version>0.1.0-alpha</Version>
<Version>1.0.0</Version>
<RootNamespace>Quantities.Serialization.Newtonsoft</RootNamespace>
<PackageTags>$(PackageTags), json, newtonsoft, newtonsoft.json, newtonsoft-json</PackageTags>
<Description>Serialization of Atmoos.Quantities types with Newtonsoft.Json.</Description>
</PropertyGroup>

<ItemGroup>
<ProjectReference Include="..\..\Quantities\Quantities.csproj" />
<ProjectReference Include="..\..\Quantities.Units\Quantities.Units.csproj" />
</ItemGroup>

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.3" />
<PackageReference Include="Atmoos.Quantities" Version="1.0.0" />
</ItemGroup>

</Project>
2 changes: 1 addition & 1 deletion source/Quantities.Serialization/Newtonsoft/readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Serialization of Quantities using Newtonsoft.Json

Enables serialisation of `Atmoos.Quantities` using `Newtonsoft.Json`.
Enables serialisation of [Atmoos.Quantities](https://www.nuget.org/packages/Atmoos.Quantities/) using `Newtonsoft.Json`.

## Usage

Expand Down

0 comments on commit 712464e

Please sign in to comment.