Skip to content

Commit 8874a36

Browse files
committed
Bump version to v0.0.6
1 parent 909adcc commit 8874a36

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

InertiaCore/InertiaCore.csproj

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<ImplicitUsings>enable</ImplicitUsings>
44
<Nullable>enable</Nullable>
5-
<Version>0.0.5</Version>
5+
<Version>0.0.6</Version>
66
<TargetFrameworks>net6.0;net7.0</TargetFrameworks>
77
<PackageId>AspNetCore.InertiaCore</PackageId>
88
<Authors>kapi2289</Authors>
@@ -15,9 +15,12 @@
1515
<PackageTags>Inertia,Inertiajs,ASPNET,Vue</PackageTags>
1616
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
1717
</PropertyGroup>
18+
19+
<ItemGroup>
20+
<FrameworkReference Include="Microsoft.AspNetCore.App"/>
21+
</ItemGroup>
1822

1923
<ItemGroup>
20-
<PackageReference Include="Microsoft.AspNetCore.App" Version="2.2.8"/>
2124
<PackageReference Include="TypeMerger" Version="2.1.1"/>
2225
</ItemGroup>
2326

InertiaCoreTests/UnitTestConfiguration.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public void TestConfiguration()
3434
builder.Services.FirstOrDefault(s => s.ServiceType == typeof(IConfigureOptions<MvcOptions>));
3535

3636
var mvcOptions = new MvcOptions();
37-
(mvcConfiguration?.ImplementationInstance as ConfigureNamedOptions<MvcOptions>)?.Action(mvcOptions);
37+
(mvcConfiguration?.ImplementationInstance as ConfigureNamedOptions<MvcOptions>)?.Action?.Invoke(mvcOptions);
3838

3939
Assert.That(
4040
mvcOptions.Filters.Any(f => (f as TypeFilterAttribute)?.ImplementationType == typeof(InertiaActionFilter)),

0 commit comments

Comments
 (0)