From a751252c4ee3b48977d5d24c36a4e4e5466f93db Mon Sep 17 00:00:00 2001 From: Drachenkaetzchen Date: Fri, 10 Jan 2020 01:27:56 +0100 Subject: Initial commit of the performance counters --- build/common.targets | 1 + build/prepare-install-package.targets | 7 ++++--- 2 files changed, 5 insertions(+), 3 deletions(-) (limited to 'build') diff --git a/build/common.targets b/build/common.targets index df2d4861..78b435d0 100644 --- a/build/common.targets +++ b/build/common.targets @@ -32,6 +32,7 @@ + diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 4297756d..96716ecb 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -1,9 +1,9 @@ @@ -24,7 +24,7 @@ - + @@ -41,6 +41,7 @@ + -- cgit From 22a0a32b6d959946bfd80bf0ca9796378f36e0cd Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sun, 26 Jan 2020 19:49:17 -0500 Subject: refactor performance counter code This commit performs some general refactoring, including... - avoid manually duplicating the event list; - rework the 'is important' event flag; - remove the new packages (Cyotek.Collections can be replaced with built-in types, and System.ValueTuple won't work in the Mono version used on Linux/Mac); - improve performance; - minor cleanup. --- build/common.targets | 1 - build/prepare-install-package.targets | 1 - 2 files changed, 2 deletions(-) (limited to 'build') diff --git a/build/common.targets b/build/common.targets index 78b435d0..df2d4861 100644 --- a/build/common.targets +++ b/build/common.targets @@ -32,7 +32,6 @@ - diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 96716ecb..61b12039 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -41,7 +41,6 @@ - -- cgit From 3f1d7b1d2238d775638b4e471fc626ca26a3849a Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Fri, 31 Jan 2020 22:27:12 -0500 Subject: rework build settings a bit --- build/lib/System.Numerics.dll | Bin 54272 -> 0 bytes build/lib/System.Runtime.Caching.dll | Bin 71168 -> 0 bytes build/prepare-install-package.targets | 88 ++++++++++++++++++---------------- 3 files changed, 46 insertions(+), 42 deletions(-) delete mode 100644 build/lib/System.Numerics.dll delete mode 100644 build/lib/System.Runtime.Caching.dll (limited to 'build') diff --git a/build/lib/System.Numerics.dll b/build/lib/System.Numerics.dll deleted file mode 100644 index fed0f92c..00000000 Binary files a/build/lib/System.Numerics.dll and /dev/null differ diff --git a/build/lib/System.Runtime.Caching.dll b/build/lib/System.Runtime.Caching.dll deleted file mode 100644 index a062391d..00000000 Binary files a/build/lib/System.Runtime.Caching.dll and /dev/null differ diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 61b12039..790b8bad 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -7,18 +7,22 @@ --> - $(SolutionDir)\.. - $(RootPath)\bin\$(Configuration) - $(CompiledRootPath)\SMAPI - $(CompiledRootPath)\SMAPI.Toolkit\net4.5 - $(CompiledRootPath)\Mods - $(SolutionDir)\..\bin\SMAPI installer - $(SolutionDir)\..\bin\SMAPI installer for developers windows unix + + $(SolutionDir) + $(SolutionDir)\..\bin + + $(BuildRootPath)\SMAPI\bin\$(Configuration) + $(BuildRootPath)\SMAPI.Toolkit\bin\$(Configuration)\net4.5 + $(BuildRootPath)\SMAPI.Mods.ConsoleCommands\bin\$(Configuration) + $(BuildRootPath)\SMAPI.Mods.SaveBackup\bin\$(Configuration) + + $(OutRootPath)\SMAPI installer + $(OutRootPath)\SMAPI installer for developers - + @@ -26,50 +30,50 @@ - - - - + + + + - + - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + - - - - + + + + - - - - - - + + + + + + - - + + - - + + -- cgit From c8191449a00e3db08214e3b1146e17f89f0245c5 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 1 Feb 2020 00:27:53 -0500 Subject: add support for *.tmx map files --- build/common.targets | 3 ++- build/prepare-install-package.targets | 1 + 2 files changed, 3 insertions(+), 1 deletion(-) (limited to 'build') diff --git a/build/common.targets b/build/common.targets index df2d4861..cfdcccca 100644 --- a/build/common.targets +++ b/build/common.targets @@ -31,8 +31,9 @@ - + + diff --git a/build/prepare-install-package.targets b/build/prepare-install-package.targets index 790b8bad..7b9d63f9 100644 --- a/build/prepare-install-package.targets +++ b/build/prepare-install-package.targets @@ -45,6 +45,7 @@ + -- cgit From aeb72586fdd94219cb9ae11cfd9f162765a5bc51 Mon Sep 17 00:00:00 2001 From: Jesse Plamondon-Willard Date: Sat, 1 Feb 2020 11:11:44 -0500 Subject: prepare for release --- build/common.targets | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'build') diff --git a/build/common.targets b/build/common.targets index cfdcccca..8b0d1301 100644 --- a/build/common.targets +++ b/build/common.targets @@ -4,7 +4,7 @@ - 3.1.0 + 3.2.0 SMAPI $(AssemblySearchPaths);{GAC} -- cgit