Skip to content

Commit 159d7e0

Browse files
Jeremy D. MillerJeremy D. Miller
Jeremy D. Miller
authored and
Jeremy D. Miller
committed
another attempt to solve variable disambiguation issues. 11.1.4
1 parent a5f3ba0 commit 159d7e0

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

src/Lamar.Diagnostics/Lamar.Diagnostics.csproj

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

33
<PropertyGroup>
44
<Description>Adds diagnostic checks to the command line of your Lamar-enabled ASP.Net Core app</Description>
5-
<Version>11.1.3</Version>
5+
<Version>11.1.4</Version>
66
<Authors>Jeremy D. Miller</Authors>
77
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
88
<DebugType>portable</DebugType>

src/Lamar.Microsoft.DependencyInjection/Lamar.Microsoft.DependencyInjection.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Lamar Adapter for HostBuilder Integration</Description>
4-
<Version>11.1.3</Version>
4+
<Version>11.1.4</Version>
55
<Authors>Jeremy D. Miller</Authors>
66
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
77
<DebugType>portable</DebugType>

src/Lamar/IoC/Frames/ServiceStandinVariable.cs

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,11 @@ public void UseInner(Variable variable)
2020
Dependencies.Add(variable);
2121
}
2222

23+
public override void OverrideName(string variableName)
24+
{
25+
_inner.OverrideName(variableName);
26+
}
27+
2328
public override string Usage
2429
{
2530
get => _inner?.Usage;

src/Lamar/Lamar.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
33
<Description>Fast ASP.Net Core compatible IoC Tool, Successor to StructureMap</Description>
4-
<Version>11.1.3</Version>
4+
<Version>11.1.4</Version>
55
<Authors>Jeremy D. Miller</Authors>
66
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
77
<DebugType>portable</DebugType>

0 commit comments

Comments
 (0)