Skip to content

Commit b57269e

Browse files
committed
Adding local changes - more to come
1 parent 2bf54d9 commit b57269e

26 files changed

+383
-215
lines changed

.editorconfig

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ csharp_style_conditional_delegate_call = true:warning
104104

105105
# Modifier preferences
106106
csharp_prefer_static_local_function = true:warning
107-
csharp_preferred_modifier_order = public,private,protected,internal,static,extern,new,virtual,abstract,sealed,override,readonly,unsafe,volatile,async
107+
csharp_preferred_modifier_order = public, private, protected, internal, static, extern, new, virtual, abstract, sealed, override, readonly, unsafe, volatile, async
108108
csharp_style_prefer_readonly_struct = true:warning
109109
csharp_style_prefer_readonly_struct_member = true:suggestion
110110

@@ -212,30 +212,30 @@ dotnet_naming_rule.static_field_should_be_pascal_case.style = pascal_case
212212

213213
dotnet_naming_symbols.interface.applicable_kinds = interface
214214
dotnet_naming_symbols.interface.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
215-
dotnet_naming_symbols.interface.required_modifiers =
215+
dotnet_naming_symbols.interface.required_modifiers =
216216

217217
dotnet_naming_symbols.static_field.applicable_kinds = field
218218
dotnet_naming_symbols.static_field.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
219219
dotnet_naming_symbols.static_field.required_modifiers = static
220220

221221
dotnet_naming_symbols.types.applicable_kinds = class, struct, interface, enum
222222
dotnet_naming_symbols.types.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
223-
dotnet_naming_symbols.types.required_modifiers =
223+
dotnet_naming_symbols.types.required_modifiers =
224224

225225
dotnet_naming_symbols.non_field_members.applicable_kinds = property, event, method
226226
dotnet_naming_symbols.non_field_members.applicable_accessibilities = public, internal, private, protected, protected_internal, private_protected
227-
dotnet_naming_symbols.non_field_members.required_modifiers =
227+
dotnet_naming_symbols.non_field_members.required_modifiers =
228228

229229
# Naming styles
230230

231-
dotnet_naming_style.pascal_case.required_prefix =
232-
dotnet_naming_style.pascal_case.required_suffix =
233-
dotnet_naming_style.pascal_case.word_separator =
231+
dotnet_naming_style.pascal_case.required_prefix =
232+
dotnet_naming_style.pascal_case.required_suffix =
233+
dotnet_naming_style.pascal_case.word_separator =
234234
dotnet_naming_style.pascal_case.capitalization = pascal_case
235235

236236
dotnet_naming_style.begins_with_i.required_prefix = I
237-
dotnet_naming_style.begins_with_i.required_suffix =
238-
dotnet_naming_style.begins_with_i.word_separator =
237+
dotnet_naming_style.begins_with_i.required_suffix =
238+
dotnet_naming_style.begins_with_i.word_separator =
239239
dotnet_naming_style.begins_with_i.capitalization = pascal_case
240240

241241
[*.{cs,vb}]
@@ -273,4 +273,4 @@ dotnet_style_parentheses_in_other_operators = never_if_unnecessary:silent
273273
dotnet_style_qualification_for_field = false:silent
274274
dotnet_style_qualification_for_property = false:error
275275
dotnet_style_qualification_for_method = false:error
276-
dotnet_style_qualification_for_event = false:error
276+
dotnet_style_qualification_for_event = false:error

src/AStar.Dev.Logging.Extensions/AStar.Dev.Logging.Extensions.csproj

Lines changed: 58 additions & 58 deletions
Original file line numberDiff line numberDiff line change
@@ -1,72 +1,72 @@
11
<Project Sdk="Microsoft.NET.Sdk.Web">
22

3-
<PropertyGroup>
4-
<OutputType>Exe</OutputType>
5-
<TargetFramework>net8.0</TargetFramework>
6-
<ImplicitUsings>enable</ImplicitUsings>
7-
<Nullable>enable</Nullable>
3+
<PropertyGroup>
4+
<OutputType>Exe</OutputType>
5+
<TargetFramework>net9.0</TargetFramework>
6+
<ImplicitUsings>enable</ImplicitUsings>
7+
<Nullable>enable</Nullable>
88
<EnforceCodeStyleInBuild>True</EnforceCodeStyleInBuild>
99
<AnalysisLevel>latest-recommended</AnalysisLevel>
1010
</PropertyGroup>
1111

1212

13-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
15-
</PropertyGroup>
13+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
14+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
15+
</PropertyGroup>
1616

17-
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
18-
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
19-
</PropertyGroup>
17+
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
18+
<TreatWarningsAsErrors>True</TreatWarningsAsErrors>
19+
</PropertyGroup>
2020

21-
<PropertyGroup>
22-
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
23-
<IsPackable>true</IsPackable>
24-
<Title>AStar.Dev.Logging.Extensions</Title>
25-
<Company>AStar Development</Company>
26-
<Copyright>AStar Development, 2024</Copyright>
27-
<PackageReadmeFile>README.md</PackageReadmeFile>
28-
<PackageLicenseFile>LICENSE</PackageLicenseFile>
29-
<IncludeSymbols>True</IncludeSymbols>
30-
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
31-
<GenerateDocumentationFile>True</GenerateDocumentationFile>
32-
<RepositoryUrl>https://github.com/astar-development/astar-dev-logging-extensions.git</RepositoryUrl>
33-
<RepositoryType>git</RepositoryType>
34-
<PackageProjectUrl>https://github.com/astar-development/astar-dev-logging-extensions</PackageProjectUrl>
35-
<Description>A collection of logging utilities.</Description>
36-
<Version>0.4.0</Version>
37-
<Authors>AStar Development, Jason Barden</Authors>
38-
<DocumentationFile>$(AssemblyName).xml</DocumentationFile>
39-
<PackageIcon>AStar.png</PackageIcon>
40-
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
41-
<PackageReleaseNotes>version 0.4.0, no changes - version increased as part of the migration to the new AStar NuGet / GitHub organisations.</PackageReleaseNotes>
42-
</PropertyGroup>
21+
<PropertyGroup>
22+
<GeneratePackageOnBuild>True</GeneratePackageOnBuild>
23+
<IsPackable>true</IsPackable>
24+
<Title>AStar.Dev.Logging.Extensions</Title>
25+
<Company>AStar Development</Company>
26+
<Copyright>AStar Development, 2024</Copyright>
27+
<PackageReadmeFile>README.md</PackageReadmeFile>
28+
<PackageLicenseFile>LICENSE</PackageLicenseFile>
29+
<IncludeSymbols>True</IncludeSymbols>
30+
<SymbolPackageFormat>snupkg</SymbolPackageFormat>
31+
<GenerateDocumentationFile>True</GenerateDocumentationFile>
32+
<RepositoryUrl>https://github.com/astar-development/astar-dev-logging-extensions.git</RepositoryUrl>
33+
<RepositoryType>git</RepositoryType>
34+
<PackageProjectUrl>https://github.com/astar-development/astar-dev-logging-extensions</PackageProjectUrl>
35+
<Description>A collection of logging utilities.</Description>
36+
<Version>0.4.0</Version>
37+
<Authors>AStar Development, Jason Barden</Authors>
38+
<DocumentationFile>$(AssemblyName).xml</DocumentationFile>
39+
<PackageIcon>AStar.png</PackageIcon>
40+
<PackageRequireLicenseAcceptance>True</PackageRequireLicenseAcceptance>
41+
<PackageReleaseNotes>version 0.4.0, no changes - version increased as part of the migration to the new AStar NuGet / GitHub organisations.</PackageReleaseNotes>
42+
</PropertyGroup>
4343

44-
<ItemGroup>
45-
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0" />
46-
<PackageReference Include="AStar.Dev.Utilities" Version="1.6.0" />
47-
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3" />
48-
<PackageReference Include="Serilog.Enrichers.Span" Version="3.1.0" />
49-
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1" />
50-
<PackageReference Include="Serilog.Expressions" Version="5.0.0" />
51-
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0" />
52-
<PackageReference Include="Serilog.Exceptions" Version="8.4.0" />
53-
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="4.0.0" />
54-
</ItemGroup>
44+
<ItemGroup>
45+
<PackageReference Include="Microsoft.ApplicationInsights.AspNetCore" Version="2.22.0"/>
46+
<PackageReference Include="AStar.Dev.Utilities" Version="1.6.0"/>
47+
<PackageReference Include="Serilog.AspNetCore" Version="8.0.3"/>
48+
<PackageReference Include="Serilog.Enrichers.Span" Version="3.1.0"/>
49+
<PackageReference Include="Serilog.Enrichers.Environment" Version="3.0.1"/>
50+
<PackageReference Include="Serilog.Expressions" Version="5.0.0"/>
51+
<PackageReference Include="Serilog.Sinks.Seq" Version="8.0.0"/>
52+
<PackageReference Include="Serilog.Exceptions" Version="8.4.0"/>
53+
<PackageReference Include="Serilog.Sinks.ApplicationInsights" Version="4.0.0"/>
54+
</ItemGroup>
5555

56-
<ItemGroup>
57-
<None Include="..\..\AStar.png">
58-
<Pack>True</Pack>
59-
<PackagePath>\</PackagePath>
60-
</None>
61-
<None Include="..\..\LICENSE">
62-
<Pack>True</Pack>
63-
<PackagePath>\</PackagePath>
64-
</None>
65-
<None Include="..\..\README.md">
66-
<Pack>True</Pack>
67-
<PackagePath>\</PackagePath>
68-
</None>
69-
</ItemGroup>
56+
<ItemGroup>
57+
<None Include="..\..\AStar.png">
58+
<Pack>True</Pack>
59+
<PackagePath>\</PackagePath>
60+
</None>
61+
<None Include="..\..\LICENSE">
62+
<Pack>True</Pack>
63+
<PackagePath>\</PackagePath>
64+
</None>
65+
<None Include="..\..\README.md">
66+
<Pack>True</Pack>
67+
<PackagePath>\</PackagePath>
68+
</None>
69+
</ItemGroup>
7070

7171
</Project>
7272

0 commit comments

Comments
 (0)