Skip to content
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
2 changes: 1 addition & 1 deletion docs/articles/steeltoe-3-2-2-adds-kube-service-bindings.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ You can do this via the NuGet Package Manager or by opening your project's cspro
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.Kubernetes.ServiceBinding" Version="3.2.2" />
<PackageReference Include="Steeltoe.Extensions.Configuration.Kubernetes.ServiceBinding" Version="3.*" />
...
</ItemGroup>
```
Expand Down
6 changes: 3 additions & 3 deletions docs/docs/v2/circuitbreaker/hystrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ To add this type of NuGet to your project add something like the following `Pack
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="2.*" />
...
</ItemGroup>
```
Expand All @@ -68,7 +68,7 @@ To do this include the following `PackageReference` in your application:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="2.*" />
...
</ItemGroup>
```
Expand All @@ -87,7 +87,7 @@ To add this type of NuGet to your project add something like the following:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="2.*" />
<PackageReference Include="RabbitMQ.Client" Version="5.0.1" />
...
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/configuration/cloud-foundry-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/configuration/config-server-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ To add this type of NuGet to your project, add a `PackageReference` that resembl
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/configuration/placeholder-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/configuration/random-value-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ To do this add a `PackageReference` resembling the following:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="2.5.2" />
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/discovery/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To add this type of NuGet to your project, add an element resembling the followi
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Discovery.ClientCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Discovery.ClientCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/logging/dynamic-logging-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ You can add the provider to your project by using the following `PackageReferenc
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="2.5.2" />
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="2.*" />
...
</ItemGroup>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/management/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,15 +68,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.ExporterCore --version 2.5.2
dotnet add package Steeltoe.Management.ExporterCore --version 2.*
```

## Cloud Foundry Forwarder
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/management/prometheus.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ To use the prometheus endpoint, you need to add a reference to `Steetoe.Manageme
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.EndpointCore --version 2.5.2
dotnet add package Steeltoe.Management.EndpointCore --version 2.*
```

## Cloud Foundry Forwarder
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/management/tasks.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ Add the following PackageReference to your .csproj file.
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.TaskCore" Version="2.5.2"/>
<PackageReference Include="Steeltoe.Management.TaskCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.TaskCore --version 2.5.2
dotnet add package Steeltoe.Management.TaskCore --version 2.*
```

## Implement Task
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/management/using-endpoints.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,15 +57,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.EndpointCore --version 2.5.2
dotnet add package Steeltoe.Management.EndpointCore --version 2.*
```

## Configure Global Settings
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/security/credhub-api-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Use the NuGet package manager tools or directly add the appropriate package to y
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Security.DataProtection.CredHubCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Security.DataProtection.CredHubCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ To use the provider, add a reference to the Steeltoe Cloud Foundry Security NuGe
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Security.Authentication.CloudFoundryCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Security.Authentication.CloudFoundryCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/security/redis-key-storage-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ You can add the provider to your project by using the following `PackageReferenc
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Security.DataProtection.RedisCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Security.DataProtection.RedisCore" Version="2.*" />
...
</ItemGroup>
```
Expand All @@ -34,7 +34,7 @@ You can use the NuGet Package Manager tools or directly add the following packag
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CloudFoundry.ConnectorCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.CloudFoundry.ConnectorCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v2/security/sso-oauth2.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ You can add the provider to your project by using the following `PackageReferenc
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Security.Authentication.CloudFoundryCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Security.Authentication.CloudFoundryCore" Version="2.*" />
...
</ItemGroup>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/tracing/distributed-tracing-exporting.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,15 +17,15 @@ To use an exporter in a ASP.NET Core application, then add the following `Packag
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Management.ExporterCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.ExporterCore --version 2.5.2
dotnet add package Steeltoe.Management.ExporterCore --version 2.*
```

### Zipkin Server
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v2/tracing/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.TracingCore" Version="2.5.2" />
<PackageReference Include="Steeltoe.Management.TracingCore" Version="2.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.TracingCore --version 2.5.2
dotnet add package Steeltoe.Management.TracingCore --version 2.*
```

### Configure Settings
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/bootstrap/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Applications running on .NET Core 3.1+ and .NET 5.0+ are supported. Get started

```xml
<ItemGroup>
<PackageReference Include="Steeltoe.Bootstrap.Autoconfig" Version="3.2.0" />
<PackageReference Include="Steeltoe.Bootstrap.Autoconfig" Version="3.*" />
</ItemGroup>
```

Expand Down
6 changes: 3 additions & 3 deletions docs/docs/v3/circuitbreaker/hystrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ To add this type of NuGet to your project, add something like the following `Pac
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.CircuitBreaker.HystrixCore" Version="3.*" />
...
</ItemGroup>
```
Expand All @@ -60,7 +60,7 @@ To do so, include the following `PackageReference` in your application:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsEventsCore" Version="3.*" />
...
</ItemGroup>
```
Expand All @@ -78,7 +78,7 @@ To add the NuGet to your project, add something like the following:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.CircuitBreaker.Hystrix.MetricsStreamCore" Version="3.*" />
<PackageReference Include="RabbitMQ.Client" Version="4.1.3" />
...
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/configuration/cloud-foundry-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="3.2.0" />
<PackageReference Include="Steeltoe.Extensions.Configuration.CloudFoundryCore" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/configuration/config-server-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ To add this type of NuGet to your project, add a `PackageReference` that resembl
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Configuration.ConfigServerCore" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/configuration/kubernetes-providers.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ To add this type of NuGet to your project, add a `PackageReference` that resembl
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.KubernetesCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Configuration.KubernetesCore" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/configuration/placeholder-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Configuration.PlaceholderCore" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/configuration/random-value-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To do so, add a `PackageReference` resembling the following:
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Configuration.RandomValueBase" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/discovery/initialize-discovery-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ To add this type of NuGet to your project, add an element resembling the followi
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Discovery.Consul" Version="3.2.0" />
<PackageReference Include="Steeltoe.Discovery.Consul" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/logging/dynamic-logging-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can add the provider to your project by using the following `PackageReferenc
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicLogger" Version="3.*" />
...
</ItemGroup>
```
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/v3/logging/serilog-logger.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ You can add the provider to your project by using the following `PackageReferenc
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicSerilogBase" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Extensions.Logging.DynamicSerilogBase" Version="3.*" />
...
</ItemGroup>
```
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v3/management/metrics-endpoint.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,15 +49,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="3.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.EndpointCore --version 3.2.0
dotnet add package Steeltoe.Management.EndpointCore --version 3.*
```

## ASP NET Core Example
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/v3/management/metrics.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ To add this type of NuGet to your project, add a `PackageReference` resembling t
```xml
<ItemGroup>
...
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="3.2.0"/>
<PackageReference Include="Steeltoe.Management.EndpointCore" Version="3.*" />
...
</ItemGroup>
```

Or, from the command line:

```shell
dotnet add package Steeltoe.Management.EndpointCore --version 3.2.0
dotnet add package Steeltoe.Management.EndpointCore --version 3.*
```

## Metric Observers
Expand Down
Loading
Loading