Skip to content
This repository has been archived by the owner on May 16, 2022. It is now read-only.

Commit

Permalink
prepare 1.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
neuecc committed Feb 27, 2017
1 parent cca2c5b commit 5b4e477
Show file tree
Hide file tree
Showing 28 changed files with 99 additions and 90 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -473,8 +473,11 @@ zfc arguments help:
-m, --disallowinmetadata [optional, default=false]Don't generate in metadata type
-g, --gencomparekeyonly [optional, default=false]Don't generate in EnumEqualityComparer except dictionary key
-n, --namespace=VALUE [optional, default=ZeroFormatter]Set namespace root name
-f, --forcedefaultresolver [optional, default=false]Force use DefaultResolver
```

> Note: Some options is important for reduce code generation size and startup speed on IL2CPP, especially `-f` is recommend if you use only DefaultResolver.
```
// Simple Case:
zfc.exe -i "..\src\Sandbox.Shared.csproj" -o "ZeroFormatterGenerated.cs"
Expand Down
4 changes: 2 additions & 2 deletions nuget/ZeroFormatter.Interfaces.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ZeroFormatter.Interfaces</id>
<version>1.6.2</version>
<version>1.6.3</version>
<title>ZeroFormatter.Interfaces</title>
<authors>neuecc</authors>
<owners>y.neuecc</owners>
<projectUrl>https://github.com/neuecc/ZeroFormatter/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Plain interfaces and KeyTuple of ZeroFormatter, it is used for define serializable targets.</description>
<releaseNotes>fixed serialize issue when mutate under non-tracked collection.</releaseNotes>
<releaseNotes>modify resolver priority for extend types. add -u option for zfc.exe.</releaseNotes>
<tags>ZeroFormatter, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework3.5" />
Expand Down
6 changes: 3 additions & 3 deletions nuget/ZeroFormatter.Unity.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,22 +2,22 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ZeroFormatter.Unity</id>
<version>1.6.2</version>
<version>1.6.3</version>
<title>ZeroFormatter.Unity</title>
<authors>neuecc</authors>
<owners>y.neuecc</owners>
<projectUrl>https://github.com/neuecc/ZeroFormatter/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Infinitely fast serializer for .NET, .NET Core and Unity.</description>
<releaseNotes>fixed serialize issue when mutate under non-tracked collection.</releaseNotes>
<releaseNotes>modify resolver priority for extend types. add -u option for zfc.exe.</releaseNotes>
<tags>ZeroFormatter, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework="Unity Full v3.5" />
<frameworkAssembly assemblyName="System.Core" targetFramework="Unity Full v3.5" />
</frameworkAssemblies>
<dependencies>
<group targetFramework="Unity Full v3.5">
<dependency id="ZeroFormatter.Interfaces" version="1.6.2" />
<dependency id="ZeroFormatter.Interfaces" version="1.6.3" />
</group>
</dependencies>
</metadata>
Expand Down
8 changes: 4 additions & 4 deletions nuget/ZeroFormatter.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,25 +2,25 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ZeroFormatter</id>
<version>1.6.2</version>
<version>1.6.3</version>
<title>ZeroFormatter</title>
<authors>neuecc</authors>
<owners>y.neuecc</owners>
<projectUrl>https://github.com/neuecc/ZeroFormatter/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Infinitely fast serializer for .NET, .NET Core and Unity.</description>
<releaseNotes>fixed serialize issue when mutate under non-tracked collection.</releaseNotes>
<releaseNotes>modify resolver priority for extend types. add -u option for zfc.exe.</releaseNotes>
<tags>ZeroFormatter, Serialization, Formatter, Serializer</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System" targetFramework=".NETFramework4.5" />
<frameworkAssembly assemblyName="System.Core" targetFramework=".NETFramework4.5" />
</frameworkAssemblies>
<dependencies>
<group targetFramework=".NETFramework4.5">
<dependency id="ZeroFormatter.Interfaces" version="1.6.2" />
<dependency id="ZeroFormatter.Interfaces" version="1.6.3" />
</group>
<group targetFramework=".NETStandard1.6">
<dependency id="ZeroFormatter.Interfaces" version="1.6.2" />
<dependency id="ZeroFormatter.Interfaces" version="1.6.3" />
<dependency id="System.Reflection.Emit" version="4.0.1" />
<dependency id="System.Runtime" version="4.1.0" />
<dependency id="System.Runtime.Extensions" version="4.1.0" />
Expand Down
6 changes: 3 additions & 3 deletions nuget/push.bat
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
REM nuget push ZeroFormatter.Analyzer.1.1.1.0.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.1.6.2.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.Interfaces.1.6.2.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.Unity.1.6.2.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.1.6.3.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.Interfaces.1.6.3.nupkg -Source https://www.nuget.org/api/v2/package
nuget push ZeroFormatter.Unity.1.6.3.nupkg -Source https://www.nuget.org/api/v2/package
6 changes: 5 additions & 1 deletion sandbox/PerformanceComparison/App.config
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,11 @@
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="4.4.0.0" />
<bindingRedirect oldVersion="0.0.0.0-4.4.1.0" newVersion="4.4.1.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="Newtonsoft.Json" publicKeyToken="30ad4fe6b2a6aeed" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-10.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
Expand Down
37 changes: 22 additions & 15 deletions sandbox/PerformanceComparison/PerformanceComparison.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@
<Prefer32Bit>false</Prefer32Bit>
</PropertyGroup>
<ItemGroup>
<Reference Include="FSharp.Core, Version=4.4.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\FSharp.Core.4.0.1.7-alpha\lib\net40\FSharp.Core.dll</HintPath>
<Reference Include="FSharp.Core, Version=4.4.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
<HintPath>..\..\packages\FSharp.Core.4.1.0\lib\net40\FSharp.Core.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="FsPickler, Version=3.2.0.0, Culture=neutral, processorArchitecture=MSIL">
Expand All @@ -52,50 +52,58 @@
<HintPath>..\..\packages\FsPickler.Json.3.2.0\lib\net45\FsPickler.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Google.Protobuf, Version=3.1.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
<HintPath>..\..\packages\Google.Protobuf.3.1.0\lib\net45\Google.Protobuf.dll</HintPath>
<Reference Include="Google.Protobuf, Version=3.2.0.0, Culture=neutral, PublicKeyToken=a7d26565bac4d604, processorArchitecture=MSIL">
<HintPath>..\..\packages\Google.Protobuf.3.2.0\lib\net45\Google.Protobuf.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Jil, Version=2.14.5.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Jil.2.14.5\lib\net45\Jil.dll</HintPath>
<Reference Include="Jil, Version=2.15.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Jil.2.15.0\lib\net45\Jil.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="MessagePack, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>MessagePackCSharp_Alpha\MessagePack.dll</HintPath>
<HintPath>..\..\packages\MessagePack.0.1.0-beta\lib\net45\MessagePack.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="MsgPack, Version=0.9.0.0, Culture=neutral, PublicKeyToken=a2625990d5dc0167, processorArchitecture=MSIL">
<HintPath>..\..\packages\MsgPack.Cli.0.9.0-beta1\lib\net46\MsgPack.dll</HintPath>
<HintPath>..\..\packages\MsgPack.Cli.0.9.0-beta2\lib\net46\MsgPack.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="NetSerializer, Version=4.1.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\NetSerializer.4.1.0\lib\net45\NetSerializer.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Newtonsoft.Json, Version=9.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\packages\Newtonsoft.Json.9.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Reference Include="Newtonsoft.Json, Version=10.0.0.0, Culture=neutral, PublicKeyToken=30ad4fe6b2a6aeed, processorArchitecture=MSIL">
<HintPath>..\..\packages\Newtonsoft.Json.10.0.1-beta1\lib\net45\Newtonsoft.Json.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="protobuf-net, Version=2.1.0.0, Culture=neutral, PublicKeyToken=257b51d87d2e4d67, processorArchitecture=MSIL">
<HintPath>..\..\packages\protobuf-net.2.1.0\lib\net451\protobuf-net.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="Sigil, Version=4.6.1.0, Culture=neutral, PublicKeyToken=2d06c3494341c8ab, processorArchitecture=MSIL">
<HintPath>..\..\packages\Sigil.4.6.1\lib\net45\Sigil.dll</HintPath>
<Reference Include="Sigil, Version=4.7.0.0, Culture=neutral, PublicKeyToken=2d06c3494341c8ab, processorArchitecture=MSIL">
<HintPath>..\..\packages\Sigil.4.7.0\lib\net45\Sigil.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
<Reference Include="System.Core" />
<Reference Include="System.Runtime.Serialization" />
<Reference Include="System.Runtime.Serialization.Primitives" />
<Reference Include="System.Threading.Tasks.Extensions, Version=4.1.0.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.Threading.Tasks.Extensions.4.3.0\lib\portable-net45+win8+wp8+wpa81\System.Threading.Tasks.Extensions.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.ValueTuple, Version=4.0.1.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
<HintPath>..\..\packages\System.ValueTuple.4.3.0\lib\netstandard1.0\System.ValueTuple.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System.Xml.Linq" />
<Reference Include="System.Data.DataSetExtensions" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Data" />
<Reference Include="System.Net.Http" />
<Reference Include="System.Xml" />
<Reference Include="Wire, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">
<HintPath>..\..\packages\Wire.0.8.1\lib\net45\Wire.dll</HintPath>
<HintPath>..\..\packages\Wire.0.8.2\lib\net45\Wire.dll</HintPath>
<Private>True</Private>
</Reference>
</ItemGroup>
Expand Down Expand Up @@ -136,7 +144,6 @@
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="FlatBuffers\flatc.exe" />
<Content Include="MessagePackCSharp_Alpha\MessagePack.dll" />
<Content Include="Protobuf3\protoc.exe" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
12 changes: 2 additions & 10 deletions sandbox/PerformanceComparison/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,27 +428,19 @@ static T SerializeMsgPack<T>(T original)
T copy = default(T);
byte[] bytes = null;

// Note:We should check MessagePackSerializer.Get<T>() on every iteration
// But currenly MsgPack-Cli has bug of get serializer
// https://github.com/msgpack/msgpack-cli/issues/191
// so, get serializer at first.
// and If enum serialization options to ByUnderlyingValue, gets more fast but we check default option only.

var serializer = MsgPack.Serialization.MessagePackSerializer.Get<T>();

using (new Measure("Serialize"))
{
for (int i = 0; i < Iteration; i++)
{
bytes = serializer.PackSingleObject(original);
bytes = MsgPack.Serialization.MessagePackSerializer.Get<T>().PackSingleObject(original);
}
}

using (new Measure("Deserialize"))
{
for (int i = 0; i < Iteration; i++)
{
copy = serializer.UnpackSingleObject(bytes);
copy = MsgPack.Serialization.MessagePackSerializer.Get<T>().UnpackSingleObject(bytes);
}
}

Expand Down
4 changes: 2 additions & 2 deletions sandbox/PerformanceComparison/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
18 changes: 11 additions & 7 deletions sandbox/PerformanceComparison/packages.config
Original file line number Diff line number Diff line change
@@ -1,15 +1,19 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="FSharp.Core" version="4.0.1.7-alpha" targetFramework="net461" />
<package id="FSharp.Core" version="4.1.0" targetFramework="net461" />
<package id="FsPickler" version="3.2.0" targetFramework="net461" />
<package id="FsPickler.CSharp" version="3.2.0" targetFramework="net461" />
<package id="FsPickler.Json" version="3.2.0" targetFramework="net461" />
<package id="Google.Protobuf" version="3.1.0" targetFramework="net461" />
<package id="Jil" version="2.14.5" targetFramework="net461" />
<package id="MsgPack.Cli" version="0.9.0-beta1" targetFramework="net461" />
<package id="Google.Protobuf" version="3.2.0" targetFramework="net461" />
<package id="Jil" version="2.15.0" targetFramework="net461" />
<package id="MessagePack" version="0.1.0-beta" targetFramework="net461" />
<package id="MsgPack.Cli" version="0.9.0-beta2" targetFramework="net461" />
<package id="NetSerializer" version="4.1.0" targetFramework="net461" />
<package id="Newtonsoft.Json" version="9.0.1" targetFramework="net461" />
<package id="Newtonsoft.Json" version="10.0.1-beta1" targetFramework="net461" />
<package id="protobuf-net" version="2.1.0" targetFramework="net461" />
<package id="Sigil" version="4.6.1" targetFramework="net461" />
<package id="Wire" version="0.8.1" targetFramework="net461" />
<package id="Sigil" version="4.7.0" targetFramework="net461" />
<package id="System.Reflection.Emit" version="4.3.0" targetFramework="net461" />
<package id="System.Threading.Tasks.Extensions" version="4.3.0" targetFramework="net461" />
<package id="System.ValueTuple" version="4.3.0" targetFramework="net461" />
<package id="Wire" version="0.8.2" targetFramework="net461" />
</packages>
6 changes: 3 additions & 3 deletions sandbox/Sandbox.NETCore/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2-*",
"version": "1.6.3-*",
"buildOptions": {
"emitEntryPoint": true
},
Expand All @@ -9,8 +9,8 @@
"type": "platform",
"version": "1.0.0"
},
"ZeroFormatter.Interfaces.NETCore": "1.6.2",
"ZeroFormatter.NETCore": "1.6.2"
"ZeroFormatter.Interfaces.NETCore": "1.6.3",
"ZeroFormatter.NETCore": "1.6.3"
},

"frameworks": {
Expand Down
14 changes: 7 additions & 7 deletions sandbox/Sandbox.NETCore/project.lock.json
Original file line number Diff line number Diff line change
Expand Up @@ -1992,7 +1992,7 @@
"lib/netstandard1.3/_._": {}
}
},
"ZeroFormatter.Interfaces.NETCore/1.6.2": {
"ZeroFormatter.Interfaces.NETCore/1.6.3": {
"type": "project",
"framework": ".NETStandard,Version=v1.1",
"dependencies": {
Expand All @@ -2006,7 +2006,7 @@
"netstandard1.1/ZeroFormatter.Interfaces.NETCore.dll": {}
}
},
"ZeroFormatter.NETCore/1.6.2": {
"ZeroFormatter.NETCore/1.6.3": {
"type": "project",
"framework": ".NETStandard,Version=v1.6",
"dependencies": {
Expand All @@ -2024,7 +2024,7 @@
"System.Text.Encoding": "4.0.11",
"System.Text.Encoding.Extensions": "4.0.11",
"System.Threading": "4.0.11",
"ZeroFormatter.Interfaces.NETCore": "1.6.2"
"ZeroFormatter.Interfaces.NETCore": "1.6.3"
},
"compile": {
"netstandard1.6/ZeroFormatter.NETCore.dll": {}
Expand Down Expand Up @@ -6627,12 +6627,12 @@
"ref/xamarinwatchos10/_._"
]
},
"ZeroFormatter.Interfaces.NETCore/1.6.2": {
"ZeroFormatter.Interfaces.NETCore/1.6.3": {
"type": "project",
"path": "../../src/ZeroFormatter.Interfaces.NETCore/project.json",
"msbuildProject": "../../src/ZeroFormatter.Interfaces.NETCore/ZeroFormatter.Interfaces.NETCore.xproj"
},
"ZeroFormatter.NETCore/1.6.2": {
"ZeroFormatter.NETCore/1.6.3": {
"type": "project",
"path": "../../src/ZeroFormatter.NETCore/project.json",
"msbuildProject": "../../src/ZeroFormatter.NETCore/ZeroFormatter.NETCore.xproj"
Expand All @@ -6641,8 +6641,8 @@
"projectFileDependencyGroups": {
"": [
"Microsoft.NETCore.App >= 1.0.0",
"ZeroFormatter.Interfaces.NETCore >= 1.6.2",
"ZeroFormatter.NETCore >= 1.6.2"
"ZeroFormatter.Interfaces.NETCore >= 1.6.3",
"ZeroFormatter.NETCore >= 1.6.3"
],
".NETCoreApp,Version=v1.0": []
},
Expand Down
4 changes: 2 additions & 2 deletions sandbox/Sandbox.Shared/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
4 changes: 2 additions & 2 deletions sandbox/Sandbox/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="utf-8"?>
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
<Metadata>
<Identity Id="ZeroFormatterAnalyzer.343bae8e-c880-437c-9e30-748b9e0f9b6e" Version="1.6.2" Language="en-US" Publisher="neuecc"/>
<Identity Id="ZeroFormatterAnalyzer.343bae8e-c880-437c-9e30-748b9e0f9b6e" Version="1.6.3" Language="en-US" Publisher="neuecc"/>
<DisplayName>ZeroFormatterAnalyzer</DisplayName>
<Description xml:space="preserve">New Launcher of ZeroFormatter.Analyzer</Description>
</Metadata>
Expand Down
1 change: 0 additions & 1 deletion src/ZeroFormatter.CodeGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@ static void Main(string[] args)
var cmdArgs = new CommandlineArguments(args);
if (!cmdArgs.IsParsed)
{
new System.Threading.Tasks.Dataflow.ActionBlock<int>(x => Console.WriteLine(x));
return;
}

Expand Down
4 changes: 2 additions & 2 deletions src/ZeroFormatter.CodeGenerator/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]

[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
2 changes: 1 addition & 1 deletion src/ZeroFormatter.Interfaces.NETCore/project.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "1.6.2",
"version": "1.6.3",
"buildOptions": {
"outputName": "ZeroFormatter.Interfaces",
"compile": "../ZeroFormatter.Interfaces/*.cs"
Expand Down
4 changes: 2 additions & 2 deletions src/ZeroFormatter.Interfaces/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("1.6.2.0")]
[assembly: AssemblyFileVersion("1.6.2.0")]
[assembly: AssemblyVersion("1.6.3.0")]
[assembly: AssemblyFileVersion("1.6.3.0")]
Loading

0 comments on commit 5b4e477

Please sign in to comment.