From 12d59abb3182ae5f00d41296c50408af5dbe1d16 Mon Sep 17 00:00:00 2001 From: Eric Sink Date: Wed, 14 Sep 2022 12:42:54 -0500 Subject: [PATCH] #ifdef-out the recent/experimental code that was creating a .props file for the lib.e_sqlite3 package. this file wasn't being used anyway. --- gen_lib_nuspecs/Program.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/gen_lib_nuspecs/Program.cs b/gen_lib_nuspecs/Program.cs index 0cdf284b..c858b4c0 100644 --- a/gen_lib_nuspecs/Program.cs +++ b/gen_lib_nuspecs/Program.cs @@ -472,6 +472,7 @@ private static void gen_nuspec_lib_e_sqlite3(string dir_src) write_nuspec_file_entries_from_cb(WhichLib.E_SQLITE3, "v142", f); +#if not { var tname = string.Format("{0}.props", id); var path_props = Path.Combine(dir_proj, tname); @@ -483,6 +484,7 @@ private static void gen_nuspec_lib_e_sqlite3(string dir_src) f ); } +#endif { var tname = string.Format("{0}.targets", id); Directory.CreateDirectory(Path.Combine(dir_proj, "net461")); @@ -647,6 +649,7 @@ XmlWriter f f.WriteEndElement(); // Content } +#if not static void write_nuget_prop_item( string rid, WhichLib lib, @@ -696,6 +699,7 @@ private static void gen_nuget_props(string dest, WhichLib lib) f.WriteEndDocument(); } } +#endif private static void gen_nuget_targets(string dest, WhichLib lib) {