Skip to content

Commit

Permalink
#ifdef-out the recent/experimental code that was creating a .props fi…
Browse files Browse the repository at this point in the history
…le for the lib.e_sqlite3 package. this file wasn't being used anyway.
  • Loading branch information
ericsink committed Sep 14, 2022
1 parent 874e9fd commit 12d59ab
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions gen_lib_nuspecs/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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"));
Expand Down Expand Up @@ -647,6 +649,7 @@ XmlWriter f
f.WriteEndElement(); // Content
}

#if not
static void write_nuget_prop_item(
string rid,
WhichLib lib,
Expand Down Expand Up @@ -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)
{
Expand Down

0 comments on commit 12d59ab

Please sign in to comment.