Skip to content

Commit

Permalink
.NET 8 (#125)
Browse files Browse the repository at this point in the history
* 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`
  • Loading branch information
langsamu authored Dec 20, 2024
1 parent 159fa48 commit 6f20093
Show file tree
Hide file tree
Showing 110 changed files with 5,266 additions and 5,885 deletions.
13 changes: 13 additions & 0 deletions Directory.Build.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<Project>
<PropertyGroup>
<TargetFramework>net8.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<Using Include="VDS.RDF"/>
<Using Alias="Linq" Include="System.Linq.Expressions"/>
</ItemGroup>

</Project>
16 changes: 16 additions & 0 deletions Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
</PropertyGroup>
<ItemGroup>
<PackageVersion Include="dotNetRDF" Version="3.3.0" />
<PackageVersion Include="Microsoft.SourceLink.GitHub" Version="8.0.0" />
<PackageVersion Include="StyleCop.Analyzers" Version="1.1.118" />
<PackageVersion Include="ExpressionTreeToolkit.Core" Version="0.4.0" />
<PackageVersion Include="FluentAssertions" Version="7.0.0" />
<PackageVersion Include="coverlet.collector" Version="6.0.2" />
<PackageVersion Include="Microsoft.NET.Test.Sdk" Version="17.12.0" />
<PackageVersion Include="MSTest.TestAdapter" Version="3.6.4" />
<PackageVersion Include="MSTest.TestFramework" Version="3.6.4" />
</ItemGroup>
</Project>
Loading

0 comments on commit 6f20093

Please sign in to comment.