Skip to content

Commit 1cbbeb9

Browse files
authored
chore(deps): Updated CSharpier.MSBuild (#181)
* chore(deps): Updated `CSharpier.MSBuild` * fix(style): Reformatted code
1 parent a809b3a commit 1cbbeb9

3 files changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/cicd.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ jobs:
2323
name: Build & Tests
2424
uses: dailydevops/pipelines/.github/workflows/cicd-dotnet.yml@0.14.79
2525
with:
26-
enableSonarQube: true
2726
dotnet-logging: ${{ inputs.dotnet-logging }}
2827
dotnet-version: ${{ vars.NE_DOTNET_TARGETFRAMEWORKS }}
2928
solution: ./Extensions.Hosting.WinForms.sln

Directory.Packages.props

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,14 @@
44
<CentralPackageTransitivePinningEnabled>true</CentralPackageTransitivePinningEnabled>
55
</PropertyGroup>
66
<ItemGroup>
7-
<GlobalPackageReference Include="CSharpier.MSBuild" Version="1.0.1" />
7+
<GlobalPackageReference Include="CSharpier.MSBuild" Version="1.0.2" />
88
<GlobalPackageReference Include="GitVersion.MsBuild" Version="6.3.0" />
99
<GlobalPackageReference Include="Microsoft.CodeAnalysis.BannedApiAnalyzers" Version="3.3.4" />
1010
<GlobalPackageReference Include="Microsoft.CodeAnalysis.NetAnalyzers" Version="9.0.0" />
1111
<GlobalPackageReference Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
1212
<GlobalPackageReference Include="Microsoft.VisualStudio.Threading.Analyzers" Version="17.13.61" />
13-
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.86" />
14-
<GlobalPackageReference
15-
Include="SonarAnalyzer.CSharp"
16-
Version="10.6.0.109712"
17-
Condition=" '$(BuildingInsideVisualStudio)' == 'true' "
18-
/>
13+
<GlobalPackageReference Include="NetEvolve.Defaults" Version="1.3.108" />
14+
<GlobalPackageReference Include="SonarAnalyzer.CSharp" Version="10.6.0.109712" />
1915
</ItemGroup>
2016
<ItemGroup>
2117
<PackageVersion Include="coverlet.collector" Version="6.0.4" />

tests/NetEvolve.Extensions.Hosting.WinForms.Tests.Unit/Internals/FormularProviderTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,8 @@ public void GetScopedForm_WithScope_InvalidForm_ThrowsInvalidOperationException(
188188
using var scope = serviceProvider.CreateScope();
189189

190190
// Act / Assert
191-
_ = Assert.Throws<InvalidOperationException>(() => formularProvider.GetScopedForm<TestFormNotRegistered>(scope)
191+
_ = Assert.Throws<InvalidOperationException>(() =>
192+
formularProvider.GetScopedForm<TestFormNotRegistered>(scope)
192193
);
193194
}
194195

0 commit comments

Comments
 (0)