unidecompiler-plugin-dotnet-cli 0.1.0__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,21 @@
1
+ Metadata-Version: 2.4
2
+ Name: unidecompiler-plugin-dotnet-cli
3
+ Version: 0.1.0
4
+ Summary: .NET CLI assembly frontend plugin for unidecompiler
5
+ Requires-Python: >=3.11
6
+ Description-Content-Type: text/markdown
7
+ Requires-Dist: unidecompiler<0.2.0,>=0.1.0
8
+ Requires-Dist: dnfile<1,>=0.15
9
+
10
+ # unidecompiler-plugin-dotnet-cli
11
+
12
+ Frontend plugin for .NET CLI `.dll` and `.exe` assemblies. It uses `dnfile` to
13
+ read assembly metadata and IL, then submits neutral thin IR to `unidecompiler`.
14
+
15
+ Install with:
16
+
17
+ ```sh
18
+ python -m pip install unidecompiler-plugin-dotnet-cli
19
+ ```
20
+
21
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,12 @@
1
+ # unidecompiler-plugin-dotnet-cli
2
+
3
+ Frontend plugin for .NET CLI `.dll` and `.exe` assemblies. It uses `dnfile` to
4
+ read assembly metadata and IL, then submits neutral thin IR to `unidecompiler`.
5
+
6
+ Install with:
7
+
8
+ ```sh
9
+ python -m pip install unidecompiler-plugin-dotnet-cli
10
+ ```
11
+
12
+ The plugin is discovered automatically by compatible CLI and GUI hosts.
@@ -0,0 +1,17 @@
1
+ [build-system]
2
+ requires = ["setuptools>=68"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "unidecompiler-plugin-dotnet-cli"
7
+ version = "0.1.0"
8
+ description = ".NET CLI assembly frontend plugin for unidecompiler"
9
+ readme = "README.md"
10
+ requires-python = ">=3.11"
11
+ dependencies = ["unidecompiler>=0.1.0,<0.2.0", "dnfile>=0.15,<1"]
12
+
13
+ [project.entry-points."unidecompiler.frontends"]
14
+ dotnet-cli = "unidecompiler_plugin_dotnet_cli.plugin:DotNetFrontendPlugin"
15
+
16
+ [tool.setuptools.packages.find]
17
+ where = ["src"]
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1 @@
1
+ """Frontend adapter for .NET CLI assemblies."""