Skip to content

Commit

Permalink
add explicit net9 target (#564)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonCropp authored Nov 17, 2024
1 parent 4431cd7 commit ee06a75
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 7 deletions.
8 changes: 7 additions & 1 deletion src/.editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,11 @@ indent_style = space
indent_size = 4
charset = utf-8

# Redundant accessor body
resharper_redundant_accessor_body_highlighting = error

# Replace with field keyword
resharper_replace_with_field_keyword_highlighting = error

# Declare types in namespaces
dotnet_diagnostic.CA1050.severity = None
Expand Down Expand Up @@ -200,6 +205,7 @@ resharper_field_can_be_made_read_only_local_highlighting = none
resharper_merge_into_logical_pattern_highlighting = warning
resharper_merge_into_pattern_highlighting = error
resharper_method_has_async_overload_highlighting = warning
# because stop rider giving errors before source generators have run
resharper_partial_type_with_single_part_highlighting = warning
resharper_redundant_base_qualifier_highlighting = warning
resharper_redundant_cast_highlighting = error
Expand Down Expand Up @@ -316,7 +322,7 @@ ij_xml_space_inside_empty_tag = true
indent_size = 2

# Verify settings
[*.{received,verified}.{txt,xml,json,md,sql,csv,html}]
[*.{received,verified}.{txt,xml,json,md,sql,csv,html,md}]
charset = "utf-8-bom"
end_of_line = lf
indent_size = unset
Expand Down
2 changes: 1 addition & 1 deletion src/Directory.Build.props
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<Project>
<PropertyGroup>
<NoWarn>CS1591</NoWarn>
<Version>4.2.2</Version>
<Version>4.3.0</Version>
<AssemblyVersion>1.0.0</AssemblyVersion>
<LangVersion>preview</LangVersion>
<PackageTags>WaffleGenerator, Bogus</PackageTags>
Expand Down
4 changes: 2 additions & 2 deletions src/Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<PackageVersion Include="NUnit" Version="4.2.2" />
<PackageVersion Include="NUnit3TestAdapter" Version="4.6.0" />
<PackageVersion Include="Polyfill" Version="7.4.1" />
<PackageVersion Include="ProjectDefaults" Version="1.0.141" />
<PackageVersion Include="Verify.Nunit" Version="28.2.1" />
<PackageVersion Include="ProjectDefaults" Version="1.0.144" />
<PackageVersion Include="Verify.Nunit" Version="28.3.1" />
</ItemGroup>
</Project>
2 changes: 1 addition & 1 deletion src/Tests/Tests.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<TargetFramework>net9.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="MarkdownSnippets.MsBuild" PrivateAssets="all" />
Expand Down
2 changes: 1 addition & 1 deletion src/WaffleGenerator.Bogus/WaffleGenerator.Bogus.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8;net48</TargetFrameworks>
<TargetFrameworks>net9;net48</TargetFrameworks>
<Description>Produces Bogus (https://github.com/bchavez/Bogus) text which, on first glance, looks like real, ponderous, prose; replete with clichés.</Description>
<DefineConstants>$(DefineConstants);Bogus</DefineConstants>
</PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/WaffleGenerator/WaffleGenerator.csproj
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net8;net48</TargetFrameworks>
<TargetFrameworks>net8.0;net9.0;net48</TargetFrameworks>
<Description>Produces of text which, on first glance, looks like real, ponderous, prose; replete with clichés.</Description>
</PropertyGroup>
<ItemGroup>
Expand Down

0 comments on commit ee06a75

Please sign in to comment.