Skip to content

Commit

Permalink
another attempt to solve variable disambiguation issues. 11.1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy D. Miller authored and Jeremy D. Miller committed Apr 23, 2023
1 parent a5f3ba0 commit 159d7e0
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Lamar.Diagnostics/Lamar.Diagnostics.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Description>Adds diagnostic checks to the command line of your Lamar-enabled ASP.Net Core app</Description>
<Version>11.1.3</Version>
<Version>11.1.4</Version>
<Authors>Jeremy D. Miller</Authors>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<DebugType>portable</DebugType>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Lamar Adapter for HostBuilder Integration</Description>
<Version>11.1.3</Version>
<Version>11.1.4</Version>
<Authors>Jeremy D. Miller</Authors>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<DebugType>portable</DebugType>
Expand Down
5 changes: 5 additions & 0 deletions src/Lamar/IoC/Frames/ServiceStandinVariable.cs
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@ public void UseInner(Variable variable)
Dependencies.Add(variable);
}

public override void OverrideName(string variableName)
{
_inner.OverrideName(variableName);
}

public override string Usage
{
get => _inner?.Usage;
Expand Down
2 changes: 1 addition & 1 deletion src/Lamar/Lamar.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<Description>Fast ASP.Net Core compatible IoC Tool, Successor to StructureMap</Description>
<Version>11.1.3</Version>
<Version>11.1.4</Version>
<Authors>Jeremy D. Miller</Authors>
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
<DebugType>portable</DebugType>
Expand Down

0 comments on commit 159d7e0

Please sign in to comment.