Skip to content

Commit 096e6e5

Browse files
committed
fix(style): Reformatted code
1 parent dffde80 commit 096e6e5

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

Directory.Build.targets

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,11 @@
99
<NoWarn>$(NoWarn);CS8604;CA2007</NoWarn>
1010
</PropertyGroup>
1111
<Target Name="EnsureREADME" BeforeTargets="DispatchToInnerBuilds;BeforeBuild">
12-
<Warning Code="NEH0001" Text="Missing README, please provide a package README.md for this package." Condition=" '$(IsTestableProject)' == 'false' and '$(IsXampleProject)' == 'false' and !Exists('$(ProjectDir)README.md') " File="$(ProjectName)" />
12+
<Warning
13+
Code="NEH0001"
14+
Text="Missing README, please provide a package README.md for this package."
15+
Condition=" '$(IsTestableProject)' == 'false' and '$(IsXampleProject)' == 'false' and !Exists('$(ProjectDir)README.md') "
16+
File="$(ProjectName)"
17+
/>
1318
</Target>
1419
</Project>

tests/NetEvolve.HealthChecks.Tests.Integration/NetEvolve.HealthChecks.Tests.Integration.csproj

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,11 @@
4848
</PackageReference>
4949
<PackageReference Include="coverlet.msbuild" />
5050
<PackageReference Include="DuckDB.NET.Bindings.Full" />
51-
<PackageReference Include="Microsoft.AspNetCore.TestHost" Condition=" $(TargetFramework) == 'net8.0' " VersionOverride="8.0.18" />
51+
<PackageReference
52+
Include="Microsoft.AspNetCore.TestHost"
53+
Condition=" $(TargetFramework) == 'net8.0' "
54+
VersionOverride="8.0.18"
55+
/>
5256
<PackageReference Include="Microsoft.AspNetCore.TestHost" Condition=" $(TargetFramework) != 'net8.0' " />
5357
<PackageReference Include="Microsoft.Extensions.Azure" />
5458
<PackageReference Include="Microsoft.Testing.Extensions.CodeCoverage" />

0 commit comments

Comments
 (0)