Skip to content

Commit 6d50580

Browse files
committed
Update project dependencies and configuration
- Changed `TargetFramework` to `net10.0` in `AotObjectMapper.Mapper.Tests.csproj` - Commented out `AotObjectMapper.Mapper.Tests` project reference in solution - Added `global.json` to specify test runner configuration
1 parent 1d93683 commit 6d50580

4 files changed

Lines changed: 8 additions & 3 deletions

File tree

AotObjectMapper.slnx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Solution>
22
<Folder Name="/Tests/">
3-
<Project Path="test/AotObjectMapper.Mapper.Tests/AotObjectMapper.Mapper.Tests.csproj" />
3+
<!--Project Path="test/AotObjectMapper.Mapper.Tests/AotObjectMapper.Mapper.Tests.csproj" /-->
44
<Project Path="test/AotObjectMapper.Tests/AotObjectMapper.Tests.csproj" />
55
</Folder>
66
<Project Path="Benchmarks/MappingBenchmarks/MappingBenchmarks.csproj" />

Directory.Build.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<NoWarn>$(NoWarn);CA1873</NoWarn>
66

77
<Authors>Liam Thompson</Authors>
8-
<PackageProjectUrl>https://github.com/Liamth99/AotObjectMapper</PackageProjectUrl>
8+
<PackageProjectUrl>https://liamth99.github.io/AotObjectMapper/</PackageProjectUrl>
99
<RepositoryUrl>https://github.com/Liamth99/AotObjectMapper</RepositoryUrl>
1010

1111
<IsPackable>false</IsPackable> <!-- Can be overriden by pacakges that need to be packed. -->

global.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"test": {
3+
"runner": "Microsoft.Testing.Platform"
4+
}
5+
}

test/AotObjectMapper.Mapper.Tests/AotObjectMapper.Mapper.Tests.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
4-
<TargetFramework>net9.0</TargetFramework>
4+
<TargetFramework>net10.0</TargetFramework>
55
<Nullable>enable</Nullable>
66

77
<IsPackable>false</IsPackable>

0 commit comments

Comments
 (0)