Skip to content

Commit 6f20093

Browse files
authored
.NET 8 (#125)
* Change target framework * File scoped namespaces * Global usings * Collection initializers * Primary constructors * Centralized package management * Build props * Tidy * File NS in goto * More primary constructors * Tidy * Upgrades * Various tidy * No `this`
1 parent 159fa48 commit 6f20093

File tree

110 files changed

+5266
-5885
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

110 files changed

+5266
-5885
lines changed

Directory.Build.props

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<Project>
2+
<PropertyGroup>
3+
<TargetFramework>net8.0</TargetFramework>
4+
<ImplicitUsings>enable</ImplicitUsings>
5+
<Nullable>enable</Nullable>
6+
</PropertyGroup>
7+
8+
<ItemGroup>
9+
<Using Include="VDS.RDF"/>
10+
<Using Alias="Linq" Include="System.Linq.Expressions"/>
11+
</ItemGroup>
12+
13+
</Project>

Directory.Packages.props

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
<Project>
2+
<PropertyGroup>
3+
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
4+
</PropertyGroup>
5+
<ItemGroup>
6+
<PackageVersion Include="dotNetRDF" Version="3.3.0" />
7+
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
8+
<PackageVersion Include="StyleCop.Analyzers" Version="1.1.118" />
9+
<PackageVersion Include="ExpressionTreeToolkit.Core" Version="0.4.0" />
10+
<PackageVersion Include="FluentAssertions" Version="7.0.0" />
11+
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
12+
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
13+
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.4" />
14+
<PackageVersion Include="MSTest.TestFramework" Version="3.6.4" />
15+
</ItemGroup>
16+
</Project>

0 commit comments

Comments
 (0)