pace-dotnet 0.1.2__tar.gz → 0.1.4__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.2 → pace_dotnet-0.1.4}/PKG-INFO +26 -88
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/README.md +21 -41
- pace_dotnet-0.1.4/README_PYPI.md +88 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/cli.py +6 -1
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/PKG-INFO +26 -88
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/SOURCES.txt +1 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pyproject.toml +2 -2
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/LICENSE +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/__init__.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/__init__.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/clean.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/dotnet.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/format.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/git.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/init.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/test.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/commands/upload.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/config.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/console_helpers.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/data/__init__.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/data/pace.toml +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/rich_demos/__init__.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/rich_demos/columns.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace/rich_demos/progress_bar.py +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/dependency_links.txt +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/entry_points.txt +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/requires.txt +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/pace_dotnet.egg-info/top_level.txt +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/setup.cfg +0 -0
- {pace_dotnet-0.1.2 → pace_dotnet-0.1.4}/tests/test_cli.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pace-dotnet
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
|
|
5
5
|
Author: Noremac11800
|
|
6
6
|
License: MIT
|
|
@@ -31,8 +31,6 @@ Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
|
31
31
|
Requires-Dist: pyright>=1.1.0; extra == "dev"
|
|
32
32
|
Dynamic: license-file
|
|
33
33
|
|
|
34
|
-

|
|
35
|
-
|
|
36
34
|
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
37
35
|
|
|
38
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.
|
|
@@ -42,18 +40,12 @@ Dynamic: license-file
|
|
|
42
40
|
[](https://dotnet.microsoft.com/apps/maui)
|
|
43
41
|
[](./LICENSE)
|
|
44
42
|
|
|
45
|
-
---
|
|
46
|
-
|
|
47
43
|
## Overview
|
|
48
44
|
|
|
49
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.
|
|
50
46
|
|
|
51
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.
|
|
52
48
|
|
|
53
|
-
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.
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
49
|
## Target project types
|
|
58
50
|
|
|
59
51
|
| Type | Description |
|
|
@@ -63,51 +55,49 @@ PACE is built for .NET library authors, platform teams, and SDK maintainers who
|
|
|
63
55
|
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
64
56
|
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
65
57
|
|
|
66
|
-
---
|
|
67
|
-
|
|
68
|
-
## Capabilities
|
|
69
|
-
|
|
70
|
-

|
|
71
|
-
|
|
72
|
-
---
|
|
73
|
-
|
|
74
58
|
## Design principles
|
|
75
59
|
|
|
76
|
-
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
77
|
-
|
|
78
|
-
**Topology-awareness** — multi-project operations always respect inter-project dependencies. `CoreLib` is built before `ExtensionLib` before `SampleApp`, automatically.
|
|
60
|
+
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
79
61
|
|
|
80
|
-
**
|
|
62
|
+
**Topology-awareness** — multi-project operations always respect inter-project dependencies.
|
|
81
63
|
|
|
82
|
-
**
|
|
64
|
+
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing.
|
|
83
65
|
|
|
84
|
-
|
|
66
|
+
**Reproducibility** — configuration is declared in a manifest file that describes the project graph.
|
|
85
67
|
|
|
86
68
|
## Installation
|
|
87
69
|
|
|
88
70
|
```bash
|
|
89
|
-
|
|
71
|
+
pip install pace-dotnet
|
|
90
72
|
```
|
|
91
73
|
|
|
92
|
-
|
|
74
|
+
## Configuration
|
|
93
75
|
|
|
94
|
-
|
|
95
|
-
git clone https://github.com/Noremac11800/PACE.git
|
|
96
|
-
cd PACE
|
|
97
|
-
pip install -e .
|
|
98
|
-
```
|
|
76
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
99
77
|
|
|
100
|
-
|
|
78
|
+
```toml
|
|
79
|
+
repodir = "/path/to/repositories"
|
|
80
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
101
81
|
|
|
102
|
-
|
|
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 = []
|
|
103
87
|
|
|
104
|
-
|
|
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"]
|
|
105
93
|
|
|
106
|
-
|
|
107
|
-
|
|
94
|
+
[[build-props]]
|
|
95
|
+
name = "DevSolution"
|
|
96
|
+
datatype = "boolean"
|
|
97
|
+
default = true
|
|
108
98
|
```
|
|
109
99
|
|
|
110
|
-
|
|
100
|
+
### Usage Examples
|
|
111
101
|
|
|
112
102
|
```bash
|
|
113
103
|
# Build all projects in dependency order
|
|
@@ -126,58 +116,6 @@ pace test
|
|
|
126
116
|
pace format --check
|
|
127
117
|
```
|
|
128
118
|
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## Configuration
|
|
132
|
-
|
|
133
|
-
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
134
|
-
|
|
135
|
-
```toml
|
|
136
|
-
[workspace]
|
|
137
|
-
path = "C:\Applications\Melbourne"
|
|
138
|
-
|
|
139
|
-
[[project]]
|
|
140
|
-
name = "common-lib"
|
|
141
|
-
path = "./common-lib/src/CommonLib/CommonLib.csproj"
|
|
142
|
-
type = "classlib"
|
|
143
|
-
|
|
144
|
-
[[project]]
|
|
145
|
-
name = "feature-module"
|
|
146
|
-
path = "./feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
147
|
-
type = "classlib"
|
|
148
|
-
depends_on = ["common-lib"]
|
|
149
|
-
|
|
150
|
-
[[project]]
|
|
151
|
-
name = "mobile-app"
|
|
152
|
-
path = "./mobile-app/src/MobileApp/MobileApp.csproj"
|
|
153
|
-
type = "maui"
|
|
154
|
-
depends_on = ["feature-module"]
|
|
155
|
-
```
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
## Development
|
|
160
|
-
|
|
161
|
-
```bash
|
|
162
|
-
# Install in development mode
|
|
163
|
-
pip install -e ".[dev]"
|
|
164
|
-
|
|
165
|
-
# Run tests
|
|
166
|
-
pytest
|
|
167
|
-
|
|
168
|
-
# Format code
|
|
169
|
-
ruff format .
|
|
170
|
-
|
|
171
|
-
# Check code style
|
|
172
|
-
ruff check .
|
|
173
|
-
|
|
174
|
-
# or for safe fixes
|
|
175
|
-
ruff check --fix .
|
|
176
|
-
|
|
177
|
-
# Type check
|
|
178
|
-
pyright
|
|
179
|
-
```
|
|
180
|
-
|
|
181
119
|
## License
|
|
182
120
|
|
|
183
121
|
[MIT](./LICENSE)
|
|
@@ -53,28 +53,36 @@ PACE is built for .NET library authors, platform teams, and SDK maintainers who
|
|
|
53
53
|
## Installation
|
|
54
54
|
|
|
55
55
|
```bash
|
|
56
|
-
|
|
56
|
+
pip install pace-dotnet
|
|
57
57
|
```
|
|
58
58
|
|
|
59
|
-
|
|
59
|
+
## Configuration
|
|
60
60
|
|
|
61
|
-
|
|
62
|
-
git clone https://github.com/Noremac11800/PACE.git
|
|
63
|
-
cd PACE
|
|
64
|
-
pip install -e .
|
|
65
|
-
```
|
|
61
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
66
62
|
|
|
67
|
-
|
|
63
|
+
```toml
|
|
64
|
+
repodir = "/path/to/repositories"
|
|
65
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
68
66
|
|
|
69
|
-
|
|
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 = []
|
|
70
72
|
|
|
71
|
-
|
|
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"]
|
|
72
78
|
|
|
73
|
-
|
|
74
|
-
|
|
79
|
+
[[build-props]]
|
|
80
|
+
name = "DevSolution"
|
|
81
|
+
datatype = "boolean"
|
|
82
|
+
default = true
|
|
75
83
|
```
|
|
76
84
|
|
|
77
|
-
|
|
85
|
+
### Usage Examples
|
|
78
86
|
|
|
79
87
|
```bash
|
|
80
88
|
# Build all projects in dependency order
|
|
@@ -95,34 +103,6 @@ pace format --check
|
|
|
95
103
|
|
|
96
104
|
---
|
|
97
105
|
|
|
98
|
-
## Configuration
|
|
99
|
-
|
|
100
|
-
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
101
|
-
|
|
102
|
-
```toml
|
|
103
|
-
[workspace]
|
|
104
|
-
path = "C:\Applications\Melbourne"
|
|
105
|
-
|
|
106
|
-
[[project]]
|
|
107
|
-
name = "common-lib"
|
|
108
|
-
path = "./common-lib/src/CommonLib/CommonLib.csproj"
|
|
109
|
-
type = "classlib"
|
|
110
|
-
|
|
111
|
-
[[project]]
|
|
112
|
-
name = "feature-module"
|
|
113
|
-
path = "./feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
114
|
-
type = "classlib"
|
|
115
|
-
depends_on = ["common-lib"]
|
|
116
|
-
|
|
117
|
-
[[project]]
|
|
118
|
-
name = "mobile-app"
|
|
119
|
-
path = "./mobile-app/src/MobileApp/MobileApp.csproj"
|
|
120
|
-
type = "maui"
|
|
121
|
-
depends_on = ["feature-module"]
|
|
122
|
-
```
|
|
123
|
-
|
|
124
|
-
---
|
|
125
|
-
|
|
126
106
|
## Development
|
|
127
107
|
|
|
128
108
|
```bash
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
2
|
+
|
|
3
|
+
> A Python CLI tool for bulk management of C# .NET project ecosystems — from single class libraries to complex multi-project hierarchies with MAUI applications.
|
|
4
|
+
|
|
5
|
+
[](https://python.org)
|
|
6
|
+
[](https://dotnet.microsoft.com)
|
|
7
|
+
[](https://dotnet.microsoft.com/apps/maui)
|
|
8
|
+
[](./LICENSE)
|
|
9
|
+
|
|
10
|
+
## Overview
|
|
11
|
+
|
|
12
|
+
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.
|
|
13
|
+
|
|
14
|
+
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.
|
|
15
|
+
|
|
16
|
+
## Target project types
|
|
17
|
+
|
|
18
|
+
| Type | Description |
|
|
19
|
+
|------|-------------|
|
|
20
|
+
| **Class libraries** | Standalone or NuGet-published reusable packages |
|
|
21
|
+
| **MAUI applications** | Cross-platform apps with platform image and build assets |
|
|
22
|
+
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
23
|
+
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
24
|
+
|
|
25
|
+
## Design principles
|
|
26
|
+
|
|
27
|
+
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
28
|
+
|
|
29
|
+
**Topology-awareness** — multi-project operations always respect inter-project dependencies.
|
|
30
|
+
|
|
31
|
+
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing.
|
|
32
|
+
|
|
33
|
+
**Reproducibility** — configuration is declared in a manifest file that describes the project graph.
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
pip install pace-dotnet
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Configuration
|
|
42
|
+
|
|
43
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
44
|
+
|
|
45
|
+
```toml
|
|
46
|
+
repodir = "/path/to/repositories"
|
|
47
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
48
|
+
|
|
49
|
+
[[projects]]
|
|
50
|
+
name = "common-lib"
|
|
51
|
+
csproj_path = "common-lib/src/CommonLib/CommonLib.csproj"
|
|
52
|
+
repo_url = "https://github.com/org/common-lib"
|
|
53
|
+
depends_on = []
|
|
54
|
+
|
|
55
|
+
[[projects]]
|
|
56
|
+
name = "feature-module"
|
|
57
|
+
csproj_path = "feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
58
|
+
repo_url = "https://github.com/org/feature-module"
|
|
59
|
+
depends_on = ["common-lib"]
|
|
60
|
+
|
|
61
|
+
[[build-props]]
|
|
62
|
+
name = "DevSolution"
|
|
63
|
+
datatype = "boolean"
|
|
64
|
+
default = true
|
|
65
|
+
```
|
|
66
|
+
|
|
67
|
+
### Usage Examples
|
|
68
|
+
|
|
69
|
+
```bash
|
|
70
|
+
# Build all projects in dependency order
|
|
71
|
+
pace dotnet build
|
|
72
|
+
|
|
73
|
+
# Build projects starting from a specific project
|
|
74
|
+
pace --from ProjectName dotnet build
|
|
75
|
+
|
|
76
|
+
# Check git status across every repo
|
|
77
|
+
pace git status
|
|
78
|
+
|
|
79
|
+
# Run all unit tests and show a summary
|
|
80
|
+
pace test
|
|
81
|
+
|
|
82
|
+
# Format and verify code style
|
|
83
|
+
pace format --check
|
|
84
|
+
```
|
|
85
|
+
|
|
86
|
+
## License
|
|
87
|
+
|
|
88
|
+
[MIT](./LICENSE)
|
|
@@ -110,7 +110,12 @@ def main() -> int:
|
|
|
110
110
|
help="Print the path to the configuration file and exit",
|
|
111
111
|
default=False,
|
|
112
112
|
)
|
|
113
|
-
parser.add_argument(
|
|
113
|
+
parser.add_argument(
|
|
114
|
+
_Options.VERSION.long,
|
|
115
|
+
_Options.VERSION.short,
|
|
116
|
+
action="version",
|
|
117
|
+
version="pace 0.1.0",
|
|
118
|
+
)
|
|
114
119
|
parser.add_argument(
|
|
115
120
|
_Options.FROM_REPO.long,
|
|
116
121
|
dest="from_repo",
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pace-dotnet
|
|
3
|
-
Version: 0.1.
|
|
3
|
+
Version: 0.1.4
|
|
4
4
|
Summary: Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems
|
|
5
5
|
Author: Noremac11800
|
|
6
6
|
License: MIT
|
|
@@ -31,8 +31,6 @@ Requires-Dist: ruff>=0.1.0; extra == "dev"
|
|
|
31
31
|
Requires-Dist: pyright>=1.1.0; extra == "dev"
|
|
32
32
|
Dynamic: license-file
|
|
33
33
|
|
|
34
|
-

|
|
35
|
-
|
|
36
34
|
# **P**roject **A**utomation and **C**onfiguration **E**ngine
|
|
37
35
|
|
|
38
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.
|
|
@@ -42,18 +40,12 @@ Dynamic: license-file
|
|
|
42
40
|
[](https://dotnet.microsoft.com/apps/maui)
|
|
43
41
|
[](./LICENSE)
|
|
44
42
|
|
|
45
|
-
---
|
|
46
|
-
|
|
47
43
|
## Overview
|
|
48
44
|
|
|
49
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.
|
|
50
46
|
|
|
51
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.
|
|
52
48
|
|
|
53
|
-
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.
|
|
54
|
-
|
|
55
|
-
---
|
|
56
|
-
|
|
57
49
|
## Target project types
|
|
58
50
|
|
|
59
51
|
| Type | Description |
|
|
@@ -63,51 +55,49 @@ PACE is built for .NET library authors, platform teams, and SDK maintainers who
|
|
|
63
55
|
| **Dependency trees** | Multi-library hierarchies with topological dependency ordering |
|
|
64
56
|
| **Sample applications** | Reference and demo apps accompanying library suites |
|
|
65
57
|
|
|
66
|
-
---
|
|
67
|
-
|
|
68
|
-
## Capabilities
|
|
69
|
-
|
|
70
|
-

|
|
71
|
-
|
|
72
|
-
---
|
|
73
|
-
|
|
74
58
|
## Design principles
|
|
75
59
|
|
|
76
|
-
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
77
|
-
|
|
78
|
-
**Topology-awareness** — multi-project operations always respect inter-project dependencies. `CoreLib` is built before `ExtensionLib` before `SampleApp`, automatically.
|
|
60
|
+
**Composability** — individual commands can be piped, scripted, and combined into workflows.
|
|
79
61
|
|
|
80
|
-
**
|
|
62
|
+
**Topology-awareness** — multi-project operations always respect inter-project dependencies.
|
|
81
63
|
|
|
82
|
-
**
|
|
64
|
+
**Transparency** — every operation emits clear, structured output suitable for both human review and CI log parsing.
|
|
83
65
|
|
|
84
|
-
|
|
66
|
+
**Reproducibility** — configuration is declared in a manifest file that describes the project graph.
|
|
85
67
|
|
|
86
68
|
## Installation
|
|
87
69
|
|
|
88
70
|
```bash
|
|
89
|
-
|
|
71
|
+
pip install pace-dotnet
|
|
90
72
|
```
|
|
91
73
|
|
|
92
|
-
|
|
74
|
+
## Configuration
|
|
93
75
|
|
|
94
|
-
|
|
95
|
-
git clone https://github.com/Noremac11800/PACE.git
|
|
96
|
-
cd PACE
|
|
97
|
-
pip install -e .
|
|
98
|
-
```
|
|
76
|
+
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
99
77
|
|
|
100
|
-
|
|
78
|
+
```toml
|
|
79
|
+
repodir = "/path/to/repositories"
|
|
80
|
+
nuget_cache_path = "/path/to/nuget/cache"
|
|
101
81
|
|
|
102
|
-
|
|
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 = []
|
|
103
87
|
|
|
104
|
-
|
|
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"]
|
|
105
93
|
|
|
106
|
-
|
|
107
|
-
|
|
94
|
+
[[build-props]]
|
|
95
|
+
name = "DevSolution"
|
|
96
|
+
datatype = "boolean"
|
|
97
|
+
default = true
|
|
108
98
|
```
|
|
109
99
|
|
|
110
|
-
|
|
100
|
+
### Usage Examples
|
|
111
101
|
|
|
112
102
|
```bash
|
|
113
103
|
# Build all projects in dependency order
|
|
@@ -126,58 +116,6 @@ pace test
|
|
|
126
116
|
pace format --check
|
|
127
117
|
```
|
|
128
118
|
|
|
129
|
-
---
|
|
130
|
-
|
|
131
|
-
## Configuration
|
|
132
|
-
|
|
133
|
-
PACE is driven by a `pace.toml` manifest at your workspace root:
|
|
134
|
-
|
|
135
|
-
```toml
|
|
136
|
-
[workspace]
|
|
137
|
-
path = "C:\Applications\Melbourne"
|
|
138
|
-
|
|
139
|
-
[[project]]
|
|
140
|
-
name = "common-lib"
|
|
141
|
-
path = "./common-lib/src/CommonLib/CommonLib.csproj"
|
|
142
|
-
type = "classlib"
|
|
143
|
-
|
|
144
|
-
[[project]]
|
|
145
|
-
name = "feature-module"
|
|
146
|
-
path = "./feature-module/src/FeatureModule/FeatureModule.csproj"
|
|
147
|
-
type = "classlib"
|
|
148
|
-
depends_on = ["common-lib"]
|
|
149
|
-
|
|
150
|
-
[[project]]
|
|
151
|
-
name = "mobile-app"
|
|
152
|
-
path = "./mobile-app/src/MobileApp/MobileApp.csproj"
|
|
153
|
-
type = "maui"
|
|
154
|
-
depends_on = ["feature-module"]
|
|
155
|
-
```
|
|
156
|
-
|
|
157
|
-
---
|
|
158
|
-
|
|
159
|
-
## Development
|
|
160
|
-
|
|
161
|
-
```bash
|
|
162
|
-
# Install in development mode
|
|
163
|
-
pip install -e ".[dev]"
|
|
164
|
-
|
|
165
|
-
# Run tests
|
|
166
|
-
pytest
|
|
167
|
-
|
|
168
|
-
# Format code
|
|
169
|
-
ruff format .
|
|
170
|
-
|
|
171
|
-
# Check code style
|
|
172
|
-
ruff check .
|
|
173
|
-
|
|
174
|
-
# or for safe fixes
|
|
175
|
-
ruff check --fix .
|
|
176
|
-
|
|
177
|
-
# Type check
|
|
178
|
-
pyright
|
|
179
|
-
```
|
|
180
|
-
|
|
181
119
|
## License
|
|
182
120
|
|
|
183
121
|
[MIT](./LICENSE)
|
|
@@ -4,9 +4,9 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "pace-dotnet"
|
|
7
|
-
version = "0.1.
|
|
7
|
+
version = "0.1.4"
|
|
8
8
|
description = "Project Automation and Configuration Engine - A Python CLI tool for bulk management of C# .NET project ecosystems"
|
|
9
|
-
readme = "
|
|
9
|
+
readme = "README_PYPI.md"
|
|
10
10
|
license = {text = "MIT"}
|
|
11
11
|
requires-python = ">=3.11"
|
|
12
12
|
authors = [
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|