Browse Source

Fix build script

Brad Robinson 5 years ago
parent
commit
240fbabbc3
5 changed files with 10 additions and 10 deletions
  1. 4 4
      build.js
  2. 3 3
      version.cs
  3. 1 1
      version.h
  4. 1 1
      version.json
  5. 1 1
      version.props

+ 4 - 4
build.js

@@ -18,7 +18,7 @@ if (bt.options.official)
     bt.clock_version();
 
     // Run Tests
-    bt.dntest("Release", "JsonKit.Test");
+    bt.dntest("Release", "Topten.JsonKit.Test");
 
     // Force clean
     bt.options.clean = true;
@@ -32,11 +32,11 @@ bt.dnbuild("Release", "JsonKit");
 if (bt.options.official || bt.options.nuget)
 {
 	bt.signfile([
-        "Build\\Release\\JsonKit\\netcoreapp2.0\\JsonKit.dll",
-        "Build\\Release\\JsonKit\\net46\\JsonKit.dll",
+        "Build\\Release\\Topten.JsonKit\\netcoreapp2.0\\Topten.JsonKit.dll",
+        "Build\\Release\\Topten.JsonKit\\net46\\Topten.JsonKit.dll",
     ], "JsonKit JSON Serialization Library");
 
-    bt.nupack("JsonKit.nuspec", "./Build");
+    bt.nupack("Topten.JsonKit.nuspec", "./Build");
 }
 
 if (bt.options.official)

+ 3 - 3
version.cs

@@ -3,13 +3,13 @@
 using System;
 using System.Reflection;
 [assembly: AssemblyCopyright("Copyright © 2014-2019 Topten Software. All Rights Reserved")]
-[assembly: AssemblyVersion("1.1.114")]
-[assembly: AssemblyFileVersion("1.1.114")]
+[assembly: AssemblyVersion("1.1.115")]
+[assembly: AssemblyFileVersion("1.1.115")]
 [assembly: AssemblyCompany("Topten Software")]
 [assembly: AssemblyProduct("JsonKit")]
 
 static class BuildInfo
 {
-	public static DateTime Date = new DateTime(2019, 6, 20, 5, 20, 8, DateTimeKind.Utc);
+	public static DateTime Date = new DateTime(2019, 6, 20, 5, 40, 30, DateTimeKind.Utc);
 }
 	

+ 1 - 1
version.h

@@ -1,7 +1,7 @@
 
 #define VER_A		1
 #define VER_B		1
-#define VER_C		114
+#define VER_C		115
 #define VER_D		0
 #define COPYRIGHT_STRING "Copyright © 2014-2019 Topten Software. All Rights Reserved\0"
 	

+ 1 - 1
version.json

@@ -1,7 +1,7 @@
 {
     "major": 1,
     "minor": 1,
-    "build": 114,
+    "build": 115,
     "copyrightYear": 2014,
     "productName": "JsonKit"
 }

+ 1 - 1
version.props

@@ -2,7 +2,7 @@
 <!-- Generated by build tool, do not edit -->
 <Project>
   <PropertyGroup>
-  	<Version Condition="'$(Variable)' == ''">1.1.114</Version>
+  	<Version Condition="'$(Variable)' == ''">1.1.115</Version>
   </PropertyGroup>
 </Project>