Skip to content

Commit 298cd6d

Browse files
committed
readme
1 parent 2527f8e commit 298cd6d

File tree

3 files changed

+11
-9
lines changed

3 files changed

+11
-9
lines changed

docs/images/Global/FirstPage.png

209 KB
Loading

src/DotNetGlobalToolsExtensions/DotnetGlobalToolsExtensionAspire/DotnetGlobalToolsExtensionAspire.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
<IsPackable>true</IsPackable>
1010
<PackageId>DotnetGlobalToolsExtensionAspire</PackageId>
11-
<Version>940.2025.821.740</Version>
11+
<Version>940.2025.821.800</Version>
1212
<Authors>Andrei Ignat</Authors>
1313
<Company>AOM</Company>
1414
<Description>Extension methods and helpers for integrating .NET global tools with Aspire distributed applications.</Description>

src/DotNetGlobalToolsExtensions/README.md

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,20 @@ A .NET Aspire extension for managing and integrating .NET global tools into your
1212
1. **Installation**
1313
- Add the `DotnetGlobalToolsExtensionAspire` package to your Aspire project.
1414

15+
```bash
16+
dotnet add package SqlExtensionsAspire
17+
```
18+
1519
2. **Usage**
1620
- Use the provided resource builder extensions to register and configure global tools in your Aspire application.
1721

18-
3. **Configuration**
19-
- Customize tool execution and resource management as needed for your solution.
22+
```csharp
23+
builder.AddDotnetGlobalTools("dotnet-ef", "dotnet-depends");
24+
```
25+
26+
Now a Aspire resource will be created with a command to install the specified global tools.
27+
Also, a **All** command will be created to install all specified global tools.
2028

21-
## Project Structure
22-
- `DotnetGlobalToolsExtensionAspire/` - Core extension logic and resource builders
23-
- `DotNetGlobalToolsExtensions.ApiService/` - Example API service for integration
24-
- `DotNetGlobalToolsExtensions.AppHost/` - Application host for running Aspire apps
25-
- `DotNetGlobalToolsExtensions.ServiceDefaults/` - Default service configurations
26-
- `DotNetGlobalToolsExtensions.Web/` - Example web client
2729

2830
## License
2931
This project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.

0 commit comments

Comments
 (0)