Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: use latest instead of main #5

Merged
merged 1 commit into from
Aug 6, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

Dependify is a tool to visualize dependencies in your .NET application. You can start dependify in `serve` mode to visualize dependencies in a browser or use the `CLI` if you prefer the terminal.

| Package | Version | Description |
| ---------------- | -------------------------------------------------------------------------------------------------------- | ------------------------------------ |
| `Dependify.Cli` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Cli.svg)](https://nuget.org/packages/Dependify.Cli) | CLI |
| `Dependify.Core` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Core.svg)](https://nuget.org/packages/Dependify.Core) | Core library |
| ` Dependify.Aspire.Hosting` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Aspire.Hosting.svg)](https://nuget.org/packages/Dependify.Aspire.Hosting) | Aspire support |
| Package | Version | Description |
| --------------------------- | ---------------------------------------------------------------------------------------------------------------------------- | -------------- |
| `Dependify.Cli` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Cli.svg)](https://nuget.org/packages/Dependify.Cli) | CLI |
| `Dependify.Core` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Core.svg)](https://nuget.org/packages/Dependify.Core) | Core library |
| `Dependify.Aspire.Hosting` | [![Nuget](https://img.shields.io/nuget/v/Dependify.Aspire.Hosting.svg)](https://nuget.org/packages/Dependify.Aspire.Hosting) | Aspire support |

## Install

Expand Down
Binary file added assets/aspire-demo.mp4
Binary file not shown.
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM ghcr.io/nikiforovall/dependify:main
FROM ghcr.io/nikiforovall/dependify:latest

COPY ./. /workspace/

Expand Down
2 changes: 1 addition & 1 deletion src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@
/// Adds a Dependify resource to the application model. A container is used for local development.
/// </summary>
/// <param name="builder">The <see cref="IDistributedApplicationBuilder"/>.</param>
/// <param name="serveFrom"></param>

Check warning on line 16 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-ubuntu-latest

XML comment has a param tag for 'serveFrom', but there is no parameter by that name

Check warning on line 16 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-ubuntu-latest

XML comment has a param tag for 'serveFrom', but there is no parameter by that name

Check warning on line 16 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-windows-latest

XML comment has a param tag for 'serveFrom', but there is no parameter by that name
/// <param name="tag"></param>
/// <param name="port">The host port used when launching the container.</param>
/// <returns>A reference to the <see cref="IResourceBuilder{T}"/>.</returns>
public static IResourceBuilder<DependifyResource> AddDependify(
this IDistributedApplicationBuilder builder,
string name = "dependify",

Check warning on line 22 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-ubuntu-latest

Parameter 'name' has no matching param tag in the XML comment for 'DependifyBuilderExtensions.AddDependify(IDistributedApplicationBuilder, string, string?, int?)' (but other parameters do)

Check warning on line 22 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-ubuntu-latest

Parameter 'name' has no matching param tag in the XML comment for 'DependifyBuilderExtensions.AddDependify(IDistributedApplicationBuilder, string, string?, int?)' (but other parameters do)

Check warning on line 22 in src/Dependify.Aspire.Hosting/DependifyBuilderExtensions.cs

View workflow job for this annotation

GitHub Actions / Build-windows-latest

Parameter 'name' has no matching param tag in the XML comment for 'DependifyBuilderExtensions.AddDependify(IDistributedApplicationBuilder, string, string?, int?)' (but other parameters do)
string? tag = null,
int? port = null
)
Expand Down Expand Up @@ -65,5 +65,5 @@
{
public const string Registry = "ghcr.io";
public const string Image = "nikiforovall/dependify";
public const string Tag = "main";
public const string Tag = "latest";
}
Loading