Skip to content

Commit 19dffc2

Browse files
committed
(build) fix formatting issues in build project
1 parent d94f35c commit 19dffc2

File tree

18 files changed

+13
-67
lines changed

18 files changed

+13
-67
lines changed

.editorconfig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ dotnet_separate_import_directive_groups = false
2121
dotnet_sort_system_directives_first = true
2222

2323
# Avoid "this." and "Me." if not necessary
24-
dotnet_style_qualification_for_field = true:warning
24+
dotnet_style_qualification_for_field = false:silent
2525
dotnet_style_qualification_for_property = false:silent
2626
dotnet_style_qualification_for_method = false:silent
2727
dotnet_style_qualification_for_event = false:silent

build/Directory.Build.props

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,5 +34,8 @@
3434
<Using Include="Cake.Docker" />
3535
<Using Include="Cake.Frosting" />
3636
</ItemGroup>
37+
<ItemGroup>
38+
<Using Include="Common.Utilities.Constants" Alias="Constants"/>
39+
</ItemGroup>
3740

3841
</Project>

build/artifacts/artifacts.csproj

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,4 @@
66
<ItemGroup>
77
<ProjectReference Include="..\common\common.csproj" />
88
</ItemGroup>
9-
<ItemGroup>
10-
<Compile Include="..\common\Utilities\ImportUsings.cs">
11-
<Link>ImportUsings.cs</Link>
12-
</Compile>
13-
</ItemGroup>
149
</Project>

build/build/build.csproj

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,10 @@
44
<RootNamespace>Build</RootNamespace>
55
</PropertyGroup>
66
<ItemGroup>
7-
<ProjectReference Include="..\common\common.csproj"/>
7+
<ProjectReference Include="..\common\common.csproj" />
88
</ItemGroup>
99
<ItemGroup>
10-
<PackageReference Include="Cake.Codecov" Version="1.0.1"/>
11-
<PackageReference Include="Cake.Coverlet" Version="2.5.4"/>
12-
</ItemGroup>
13-
<ItemGroup>
14-
<Compile Include="..\common\Utilities\ImportUsings.cs">
15-
<Link>ImportUsings.cs</Link>
16-
</Compile>
10+
<PackageReference Include="Cake.Codecov" Version="1.0.1" />
11+
<PackageReference Include="Cake.Coverlet" Version="2.5.4" />
1712
</ItemGroup>
1813
</Project>

build/chores/BuildContext.cs

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,3 @@
1-
using Cake.Core;
2-
using Cake.Frosting;
3-
41
namespace Chores;
52

63
public class BuildContext : FrostingContext

build/chores/BuildLifetime.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using Cake.Core;
2-
using Cake.Frosting;
31
using Common.Utilities;
42

53
namespace Chores;

build/chores/Program.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using Cake.Frosting;
21
using Chores;
32

43
return new CakeHost()

build/chores/Startup.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
using Cake.Frosting;
21
using Common.Lifetime;
32
using Microsoft.Extensions.DependencyInjection;
43

build/chores/Tasks/Default.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using Cake.Frosting;
2-
31
namespace Chores.Tasks;
42

53
[TaskDescription("Shows this output")]

build/chores/Tasks/ToolsInstall.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
using System.Linq;
2-
using Cake.Frosting;
31
using Cake.Json;
42
using Newtonsoft.Json.Linq;
53

0 commit comments

Comments
 (0)