pace-dotnet 0.1.14__tar.gz → 0.2.2__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.
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/LICENSE +21 -21
- {pace_dotnet-0.1.14/pace_dotnet.egg-info → pace_dotnet-0.2.2}/PKG-INFO +121 -121
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/README.md +130 -130
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/README_PYPI.md +88 -88
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/__init__.py +6 -6
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/cli.py +521 -449
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/__init__.py +11 -11
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/dotnet.py +410 -410
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/format.py +12 -12
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/git.py +265 -265
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/init.py +12 -12
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/test.py +12 -12
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/upload.py +165 -165
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/config.py +350 -271
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/console_helpers.py +14 -14
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/data/__init__.py +1 -1
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/data/pace.toml +8 -8
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/rich_demos/__init__.py +1 -1
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/rich_demos/columns.py +35 -35
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/rich_demos/progress_bar.py +37 -37
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2/pace_dotnet.egg-info}/PKG-INFO +121 -121
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pyproject.toml +63 -63
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/setup.cfg +4 -4
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/tests/test_cli.py +12 -12
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace/commands/clean.py +0 -0
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/SOURCES.txt +0 -0
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/dependency_links.txt +0 -0
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/entry_points.txt +0 -0
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/requires.txt +0 -0
- {pace_dotnet-0.1.14 → pace_dotnet-0.2.2}/pace_dotnet.egg-info/top_level.txt +0 -0
|
@@ -1,21 +1,21 @@
|
|
|
1
|
-
MIT License
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2026
|
|
4
|
-
|
|
5
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
-
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
-
in the Software without restriction, including without limitation the rights
|
|
8
|
-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
-
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
-
furnished to do so, subject to the following conditions:
|
|
11
|
-
|
|
12
|
-
The above copyright notice and this permission notice shall be included in all
|
|
13
|
-
copies or substantial portions of the Software.
|
|
14
|
-
|
|
15
|
-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
-
SOFTWARE.
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -1,121 +1,121 @@
|
|
|
1
|
-
Metadata-Version: 2.4
|
|
2
|
-
Name: pace-dotnet
|
|
3
|
-
Version: 0.
|
|
4
|
-
Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
|
|
5
|
-
Author: Noremac11800
|
|
6
|
-
License: MIT
|
|
7
|
-
Project-URL: Homepage, https://github.com/Noremac11800/PACE
|
|
8
|
-
Project-URL: Repository, https://github.com/Noremac11800/PACE
|
|
9
|
-
Project-URL: Issues, https://github.com/Noremac11800/PACE/issues
|
|
10
|
-
Keywords: dotnet,.net,cli,project-management,automation
|
|
11
|
-
Classifier: Development Status :: 3 - Alpha
|
|
12
|
-
Classifier: Intended Audience :: Developers
|
|
13
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
-
Classifier: Programming Language :: Python :: 3
|
|
15
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
-
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
-
Classifier: Topic :: Software Development :: Build Tools
|
|
19
|
-
Requires-Python: >=3.11
|
|
20
|
-
Description-Content-Type: text/markdown
|
|
21
|
-
License-File: LICENSE
|
|
22
|
-
Requires-Dist: tomli>=2.4.1
|
|
23
|
-
Requires-Dist: tomli-w>=1.2.0
|
|
24
|
-
Requires-Dist: rich>=13.0.0
|
|
25
|
-
Requires-Dist: pydantic>=2.3.4
|
|
26
|
-
Provides-Extra: dev
|
|
27
|
-
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
28
|
-
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
29
|
-
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
30
|
-
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
31
|
-
Requires-Dist: pyright>=1.1.0; extra == "dev"
|
|
32
|
-
Dynamic: license-file
|
|
33
|
-
|
|
34
|
-
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
35
|
-
|
|
36
|
-
> A Python CLI tool for bulk management of C# .NET project ecosystems — from single class libraries to complex multi-project hierarchies with MAUI applications.
|
|
37
|
-
|
|
38
|
-
[](https://python.org)
|
|
39
|
-
[](https://dotnet.microsoft.com)
|
|
40
|
-
[](https://dotnet.microsoft.com/apps/maui)
|
|
41
|
-
[](./LICENSE)
|
|
42
|
-
|
|
43
|
-
## Overview
|
|
44
|
-
|
|
45
|
-
PACE eliminates the repetitive, error-prone manual work of managing .NET project ecosystems at scale. Rather than shelling into each project directory to run `dotnet` commands, manage git state, or manually update build configurations, PACE provides a unified interface to interact with all of them at once.
|
|
46
|
-
|
|
47
|
-
It understands your project topology — respecting dependency order, project hierarchy, and configuration context — so you can express intent once and apply it across your entire repository graph.
|
|
48
|
-
|
|
49
|
-
## Target project types
|
|
50
|
-
|
|
51
|
-
| Type | Description |
|
|
52
|
-
|------|-------------|
|
|
53
|
-
| **Class libraries** | Standalone or NuGet-published reusable packages |
|
|
54
|
-
| **MAUI applications** | Cross-platform apps with platform image and build assets |
|
|
55
|
-
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
56
|
-
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
57
|
-
|
|
58
|
-
## Design principles
|
|
59
|
-
|
|
60
|
-
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
61
|
-
|
|
62
|
-
**Topology-awareness** — multi-project operations always respect inter-project dependencies.
|
|
63
|
-
|
|
64
|
-
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing.
|
|
65
|
-
|
|
66
|
-
**Reproducibility** — configuration is declared in a manifest file that describes the project graph.
|
|
67
|
-
|
|
68
|
-
## Installation
|
|
69
|
-
|
|
70
|
-
```bash
|
|
71
|
-
pip install pace-dotnet
|
|
72
|
-
```
|
|
73
|
-
|
|
74
|
-
## Configuration
|
|
75
|
-
|
|
76
|
-
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
77
|
-
|
|
78
|
-
```toml
|
|
79
|
-
repodir = "/path/to/repositories"
|
|
80
|
-
nuget_cache_path = "/path/to/nuget/cache"
|
|
81
|
-
|
|
82
|
-
[[projects]]
|
|
83
|
-
name = "common-lib"
|
|
84
|
-
csproj_path = "common-lib/src/CommonLib/CommonLib.csproj"
|
|
85
|
-
repo_url = "https://github.com/org/common-lib"
|
|
86
|
-
depends_on = []
|
|
87
|
-
|
|
88
|
-
[[projects]]
|
|
89
|
-
name = "feature-module"
|
|
90
|
-
csproj_path = "feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
91
|
-
repo_url = "https://github.com/org/feature-module"
|
|
92
|
-
depends_on = ["common-lib"]
|
|
93
|
-
|
|
94
|
-
[[build-props]]
|
|
95
|
-
name = "DevSolution"
|
|
96
|
-
datatype = "boolean"
|
|
97
|
-
default = true
|
|
98
|
-
```
|
|
99
|
-
|
|
100
|
-
### Usage Examples
|
|
101
|
-
|
|
102
|
-
```bash
|
|
103
|
-
# Build all projects in dependency order
|
|
104
|
-
pace dotnet build
|
|
105
|
-
|
|
106
|
-
# Build projects starting from a specific project
|
|
107
|
-
pace --from ProjectName dotnet build
|
|
108
|
-
|
|
109
|
-
# Check git status across every repo
|
|
110
|
-
pace git status
|
|
111
|
-
|
|
112
|
-
# Run all unit tests and show a summary
|
|
113
|
-
pace test
|
|
114
|
-
|
|
115
|
-
# Format and verify code style
|
|
116
|
-
pace format --check
|
|
117
|
-
```
|
|
118
|
-
|
|
119
|
-
## License
|
|
120
|
-
|
|
121
|
-
[MIT](./LICENSE)
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: pace-dotnet
|
|
3
|
+
Version: 0.2.2
|
|
4
|
+
Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
|
|
5
|
+
Author: Noremac11800
|
|
6
|
+
License: MIT
|
|
7
|
+
Project-URL: Homepage, https://github.com/Noremac11800/PACE
|
|
8
|
+
Project-URL: Repository, https://github.com/Noremac11800/PACE
|
|
9
|
+
Project-URL: Issues, https://github.com/Noremac11800/PACE/issues
|
|
10
|
+
Keywords: dotnet,.net,cli,project-management,automation
|
|
11
|
+
Classifier: Development Status :: 3 - Alpha
|
|
12
|
+
Classifier: Intended Audience :: Developers
|
|
13
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
14
|
+
Classifier: Programming Language :: Python :: 3
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
18
|
+
Classifier: Topic :: Software Development :: Build Tools
|
|
19
|
+
Requires-Python: >=3.11
|
|
20
|
+
Description-Content-Type: text/markdown
|
|
21
|
+
License-File: LICENSE
|
|
22
|
+
Requires-Dist: tomli>=2.4.1
|
|
23
|
+
Requires-Dist: tomli-w>=1.2.0
|
|
24
|
+
Requires-Dist: rich>=13.0.0
|
|
25
|
+
Requires-Dist: pydantic>=2.3.4
|
|
26
|
+
Provides-Extra: dev
|
|
27
|
+
Requires-Dist: pytest>=7.0.0; extra == "dev"
|
|
28
|
+
Requires-Dist: pytest-cov>=4.0.0; extra == "dev"
|
|
29
|
+
Requires-Dist: black>=23.0.0; extra == "dev"
|
|
30
|
+
Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
31
|
+
Requires-Dist: pyright>=1.1.0; extra == "dev"
|
|
32
|
+
Dynamic: license-file
|
|
33
|
+
|
|
34
|
+
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
35
|
+
|
|
36
|
+
> A Python CLI tool for bulk management of C# .NET project ecosystems — from single class libraries to complex multi-project hierarchies with MAUI applications.
|
|
37
|
+
|
|
38
|
+
[](https://python.org)
|
|
39
|
+
[](https://dotnet.microsoft.com)
|
|
40
|
+
[](https://dotnet.microsoft.com/apps/maui)
|
|
41
|
+
[](./LICENSE)
|
|
42
|
+
|
|
43
|
+
## Overview
|
|
44
|
+
|
|
45
|
+
PACE eliminates the repetitive, error-prone manual work of managing .NET project ecosystems at scale. Rather than shelling into each project directory to run `dotnet` commands, manage git state, or manually update build configurations, PACE provides a unified interface to interact with all of them at once.
|
|
46
|
+
|
|
47
|
+
It understands your project topology — respecting dependency order, project hierarchy, and configuration context — so you can express intent once and apply it across your entire repository graph.
|
|
48
|
+
|
|
49
|
+
## Target project types
|
|
50
|
+
|
|
51
|
+
| Type | Description |
|
|
52
|
+
|------|-------------|
|
|
53
|
+
| **Class libraries** | Standalone or NuGet-published reusable packages |
|
|
54
|
+
| **MAUI applications** | Cross-platform apps with platform image and build assets |
|
|
55
|
+
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
56
|
+
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
57
|
+
|
|
58
|
+
## Design principles
|
|
59
|
+
|
|
60
|
+
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
61
|
+
|
|
62
|
+
**Topology-awareness** — multi-project operations always respect inter-project dependencies.
|
|
63
|
+
|
|
64
|
+
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing.
|
|
65
|
+
|
|
66
|
+
**Reproducibility** — configuration is declared in a manifest file that describes the project graph.
|
|
67
|
+
|
|
68
|
+
## Installation
|
|
69
|
+
|
|
70
|
+
```bash
|
|
71
|
+
pip install pace-dotnet
|
|
72
|
+
```
|
|
73
|
+
|
|
74
|
+
## Configuration
|
|
75
|
+
|
|
76
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
77
|
+
|
|
78
|
+
```toml
|
|
79
|
+
repodir = "/path/to/repositories"
|
|
80
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
81
|
+
|
|
82
|
+
[[projects]]
|
|
83
|
+
name = "common-lib"
|
|
84
|
+
csproj_path = "common-lib/src/CommonLib/CommonLib.csproj"
|
|
85
|
+
repo_url = "https://github.com/org/common-lib"
|
|
86
|
+
depends_on = []
|
|
87
|
+
|
|
88
|
+
[[projects]]
|
|
89
|
+
name = "feature-module"
|
|
90
|
+
csproj_path = "feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
91
|
+
repo_url = "https://github.com/org/feature-module"
|
|
92
|
+
depends_on = ["common-lib"]
|
|
93
|
+
|
|
94
|
+
[[build-props]]
|
|
95
|
+
name = "DevSolution"
|
|
96
|
+
datatype = "boolean"
|
|
97
|
+
default = true
|
|
98
|
+
```
|
|
99
|
+
|
|
100
|
+
### Usage Examples
|
|
101
|
+
|
|
102
|
+
```bash
|
|
103
|
+
# Build all projects in dependency order
|
|
104
|
+
pace dotnet build
|
|
105
|
+
|
|
106
|
+
# Build projects starting from a specific project
|
|
107
|
+
pace --from ProjectName dotnet build
|
|
108
|
+
|
|
109
|
+
# Check git status across every repo
|
|
110
|
+
pace git status
|
|
111
|
+
|
|
112
|
+
# Run all unit tests and show a summary
|
|
113
|
+
pace test
|
|
114
|
+
|
|
115
|
+
# Format and verify code style
|
|
116
|
+
pace format --check
|
|
117
|
+
```
|
|
118
|
+
|
|
119
|
+
## License
|
|
120
|
+
|
|
121
|
+
[MIT](./LICENSE)
|
|
@@ -1,130 +1,130 @@
|
|
|
1
|
-

|
|
2
|
-
|
|
3
|
-
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
4
|
-
|
|
5
|
-
> A Python CLI tool for bulk management of C# .NET project ecosystems — from single class libraries to complex multi-project hierarchies with MAUI applications.
|
|
6
|
-
|
|
7
|
-
[](https://python.org)
|
|
8
|
-
[](https://dotnet.microsoft.com)
|
|
9
|
-
[](https://dotnet.microsoft.com/apps/maui)
|
|
10
|
-
[](./LICENSE)
|
|
11
|
-
|
|
12
|
-
---
|
|
13
|
-
|
|
14
|
-
## Overview
|
|
15
|
-
|
|
16
|
-
PACE eliminates the repetitive, error-prone manual work of managing .NET project ecosystems at scale. Rather than shelling into each project directory to run `dotnet` commands, manage git state, or manually update build configurations, PACE provides a unified interface to interact with all of them at once.
|
|
17
|
-
|
|
18
|
-
It understands your project topology — respecting dependency order, project hierarchy, and configuration context — so you can express intent once and apply it across your entire repository graph.
|
|
19
|
-
|
|
20
|
-
PACE is built for .NET library authors, platform teams, and SDK maintainers who manage production-grade codebases consisting of multiple interconnected components and need reliable, scriptable tooling to keep them in sync.
|
|
21
|
-
|
|
22
|
-
---
|
|
23
|
-
|
|
24
|
-
## Target project types
|
|
25
|
-
|
|
26
|
-
| Type | Description |
|
|
27
|
-
|------|-------------|
|
|
28
|
-
| **Class libraries** | Standalone or NuGet-published reusable packages |
|
|
29
|
-
| **MAUI applications** | Cross-platform apps with platform image and build assets |
|
|
30
|
-
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
31
|
-
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
32
|
-
|
|
33
|
-
---
|
|
34
|
-
|
|
35
|
-
## Capabilities
|
|
36
|
-
|
|
37
|
-

|
|
38
|
-
|
|
39
|
-
---
|
|
40
|
-
|
|
41
|
-
## Design principles
|
|
42
|
-
|
|
43
|
-
**Composability** — individual commands can be piped, scripted, and combined into workflows. PACE is a good Unix citizen.
|
|
44
|
-
|
|
45
|
-
**Topology-awareness** — multi-project operations always respect inter-project dependencies. `CoreLib` is built before `ExtensionLib` before `SampleApp`, automatically.
|
|
46
|
-
|
|
47
|
-
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing. Nothing happens silently.
|
|
48
|
-
|
|
49
|
-
**Reproducibility** — configuration is declared in a manifest file that describes the project graph, repository layout, and per-project overrides. Behaviour is version-controllable alongside the code it manages.
|
|
50
|
-
|
|
51
|
-
---
|
|
52
|
-
|
|
53
|
-
## Installation
|
|
54
|
-
|
|
55
|
-
```bash
|
|
56
|
-
pip install pace-dotnet
|
|
57
|
-
```
|
|
58
|
-
|
|
59
|
-
## Configuration
|
|
60
|
-
|
|
61
|
-
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
62
|
-
|
|
63
|
-
```toml
|
|
64
|
-
repodir = "/path/to/repositories"
|
|
65
|
-
nuget_cache_path = "/path/to/nuget/cache"
|
|
66
|
-
|
|
67
|
-
[[projects]]
|
|
68
|
-
name = "common-lib"
|
|
69
|
-
csproj_path = "common-lib/src/CommonLib/CommonLib.csproj"
|
|
70
|
-
repo_url = "https://github.com/org/common-lib"
|
|
71
|
-
depends_on = []
|
|
72
|
-
|
|
73
|
-
[[projects]]
|
|
74
|
-
name = "feature-module"
|
|
75
|
-
csproj_path = "feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
76
|
-
repo_url = "https://github.com/org/feature-module"
|
|
77
|
-
depends_on = ["common-lib"]
|
|
78
|
-
|
|
79
|
-
[[build-props]]
|
|
80
|
-
name = "DevSolution"
|
|
81
|
-
datatype = "boolean"
|
|
82
|
-
default = true
|
|
83
|
-
```
|
|
84
|
-
|
|
85
|
-
### Usage Examples
|
|
86
|
-
|
|
87
|
-
```bash
|
|
88
|
-
# Build all projects in dependency order
|
|
89
|
-
pace dotnet build
|
|
90
|
-
|
|
91
|
-
# Build projects starting from a specific project
|
|
92
|
-
pace --from ProjectName dotnet build
|
|
93
|
-
|
|
94
|
-
# Check git status across every repo
|
|
95
|
-
pace git status
|
|
96
|
-
|
|
97
|
-
# Run all unit tests and show a summary
|
|
98
|
-
pace test
|
|
99
|
-
|
|
100
|
-
# Format and verify code style
|
|
101
|
-
pace format --check
|
|
102
|
-
```
|
|
103
|
-
|
|
104
|
-
---
|
|
105
|
-
|
|
106
|
-
## Development
|
|
107
|
-
|
|
108
|
-
```bash
|
|
109
|
-
# Install in development mode
|
|
110
|
-
pip install -e ".[dev]"
|
|
111
|
-
|
|
112
|
-
# Run tests
|
|
113
|
-
pytest
|
|
114
|
-
|
|
115
|
-
# Format code
|
|
116
|
-
ruff format .
|
|
117
|
-
|
|
118
|
-
# Check code style
|
|
119
|
-
ruff check .
|
|
120
|
-
|
|
121
|
-
# or for safe fixes
|
|
122
|
-
ruff check --fix .
|
|
123
|
-
|
|
124
|
-
# Type check
|
|
125
|
-
pyright
|
|
126
|
-
```
|
|
127
|
-
|
|
128
|
-
## License
|
|
129
|
-
|
|
130
|
-
[MIT](./LICENSE)
|
|
1
|
+

|
|
2
|
+
|
|
3
|
+
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
4
|
+
|
|
5
|
+
> A Python CLI tool for bulk management of C# .NET project ecosystems — from single class libraries to complex multi-project hierarchies with MAUI applications.
|
|
6
|
+
|
|
7
|
+
[](https://python.org)
|
|
8
|
+
[](https://dotnet.microsoft.com)
|
|
9
|
+
[](https://dotnet.microsoft.com/apps/maui)
|
|
10
|
+
[](./LICENSE)
|
|
11
|
+
|
|
12
|
+
---
|
|
13
|
+
|
|
14
|
+
## Overview
|
|
15
|
+
|
|
16
|
+
PACE eliminates the repetitive, error-prone manual work of managing .NET project ecosystems at scale. Rather than shelling into each project directory to run `dotnet` commands, manage git state, or manually update build configurations, PACE provides a unified interface to interact with all of them at once.
|
|
17
|
+
|
|
18
|
+
It understands your project topology — respecting dependency order, project hierarchy, and configuration context — so you can express intent once and apply it across your entire repository graph.
|
|
19
|
+
|
|
20
|
+
PACE is built for .NET library authors, platform teams, and SDK maintainers who manage production-grade codebases consisting of multiple interconnected components and need reliable, scriptable tooling to keep them in sync.
|
|
21
|
+
|
|
22
|
+
---
|
|
23
|
+
|
|
24
|
+
## Target project types
|
|
25
|
+
|
|
26
|
+
| Type | Description |
|
|
27
|
+
|------|-------------|
|
|
28
|
+
| **Class libraries** | Standalone or NuGet-published reusable packages |
|
|
29
|
+
| **MAUI applications** | Cross-platform apps with platform image and build assets |
|
|
30
|
+
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
31
|
+
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
32
|
+
|
|
33
|
+
---
|
|
34
|
+
|
|
35
|
+
## Capabilities
|
|
36
|
+
|
|
37
|
+

|
|
38
|
+
|
|
39
|
+
---
|
|
40
|
+
|
|
41
|
+
## Design principles
|
|
42
|
+
|
|
43
|
+
**Composability** — individual commands can be piped, scripted, and combined into workflows. PACE is a good Unix citizen.
|
|
44
|
+
|
|
45
|
+
**Topology-awareness** — multi-project operations always respect inter-project dependencies. `CoreLib` is built before `ExtensionLib` before `SampleApp`, automatically.
|
|
46
|
+
|
|
47
|
+
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing. Nothing happens silently.
|
|
48
|
+
|
|
49
|
+
**Reproducibility** — configuration is declared in a manifest file that describes the project graph, repository layout, and per-project overrides. Behaviour is version-controllable alongside the code it manages.
|
|
50
|
+
|
|
51
|
+
---
|
|
52
|
+
|
|
53
|
+
## Installation
|
|
54
|
+
|
|
55
|
+
```bash
|
|
56
|
+
pip install pace-dotnet
|
|
57
|
+
```
|
|
58
|
+
|
|
59
|
+
## Configuration
|
|
60
|
+
|
|
61
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
62
|
+
|
|
63
|
+
```toml
|
|
64
|
+
repodir = "/path/to/repositories"
|
|
65
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
66
|
+
|
|
67
|
+
[[projects]]
|
|
68
|
+
name = "common-lib"
|
|
69
|
+
csproj_path = "common-lib/src/CommonLib/CommonLib.csproj"
|
|
70
|
+
repo_url = "https://github.com/org/common-lib"
|
|
71
|
+
depends_on = []
|
|
72
|
+
|
|
73
|
+
[[projects]]
|
|
74
|
+
name = "feature-module"
|
|
75
|
+
csproj_path = "feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
76
|
+
repo_url = "https://github.com/org/feature-module"
|
|
77
|
+
depends_on = ["common-lib"]
|
|
78
|
+
|
|
79
|
+
[[build-props]]
|
|
80
|
+
name = "DevSolution"
|
|
81
|
+
datatype = "boolean"
|
|
82
|
+
default = true
|
|
83
|
+
```
|
|
84
|
+
|
|
85
|
+
### Usage Examples
|
|
86
|
+
|
|
87
|
+
```bash
|
|
88
|
+
# Build all projects in dependency order
|
|
89
|
+
pace dotnet build
|
|
90
|
+
|
|
91
|
+
# Build projects starting from a specific project
|
|
92
|
+
pace --from ProjectName dotnet build
|
|
93
|
+
|
|
94
|
+
# Check git status across every repo
|
|
95
|
+
pace git status
|
|
96
|
+
|
|
97
|
+
# Run all unit tests and show a summary
|
|
98
|
+
pace test
|
|
99
|
+
|
|
100
|
+
# Format and verify code style
|
|
101
|
+
pace format --check
|
|
102
|
+
```
|
|
103
|
+
|
|
104
|
+
---
|
|
105
|
+
|
|
106
|
+
## Development
|
|
107
|
+
|
|
108
|
+
```bash
|
|
109
|
+
# Install in development mode
|
|
110
|
+
pip install -e ".[dev]"
|
|
111
|
+
|
|
112
|
+
# Run tests
|
|
113
|
+
pytest
|
|
114
|
+
|
|
115
|
+
# Format code
|
|
116
|
+
ruff format .
|
|
117
|
+
|
|
118
|
+
# Check code style
|
|
119
|
+
ruff check .
|
|
120
|
+
|
|
121
|
+
# or for safe fixes
|
|
122
|
+
ruff check --fix .
|
|
123
|
+
|
|
124
|
+
# Type check
|
|
125
|
+
pyright
|
|
126
|
+
```
|
|
127
|
+
|
|
128
|
+
## License
|
|
129
|
+
|
|
130
|
+
[MIT](./LICENSE)
|