Skip to content

Commit c382d02

Browse files
committed
FLuxorIntegration: revert to classic project reference
"nuget pack" will convert it to a package reference
1 parent 8c31552 commit c382d02

File tree

3 files changed

+10
-1
lines changed

3 files changed

+10
-1
lines changed

BlazingDev.BlazorToolkit.FluxorIntegration/BlazingDev.BlazorToolkit.FluxorIntegration.csproj

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,15 @@
1414
</PropertyGroup>
1515

1616
<ItemGroup>
17-
<PackageReference Include="BlazingDev.BlazorToolkit" Version="0.4.0" />
1817
<PackageReference Include="Fluxor.Blazor.Web" Version="6.5.2"/>
1918
</ItemGroup>
2019

20+
<ItemGroup>
21+
<ProjectReference Include="..\BlazingDev.BlazorToolkit\BlazingDev.BlazorToolkit.csproj"/>
22+
</ItemGroup>
23+
24+
<ItemGroup>
25+
<None Update="blazingdev_logo_512.png" Pack="True" PackagePath="/"/>
26+
</ItemGroup>
27+
2128
</Project>
17.2 KB
Loading

BlazingDev.BlazorToolkit.Tests/Components/BzComponentBaseTests.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,9 @@ private class ComponentWithIntegrations : BzComponentBase
138138
{
139139
public TestIntegration Integration1 { get; set; } = new();
140140
private TestIntegration _integration2 = new();
141+
#pragma warning disable CS0414 // Field is assigned but its value is never used
141142
private TestIntegration _integration3 = null!;
143+
#pragma warning restore CS0414 // Field is assigned but its value is never used
142144
}
143145

144146
// just to also test inheritance

0 commit comments

Comments
 (0)