File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed
Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change 3131 - name : Install .NET Core
3232 uses : actions/setup-dotnet@v3
3333 with :
34- dotnet-version : |
34+ dotnet-version : |
3535 6.0.x
3636 7.0.x
37+ 8.0.x
3738
3839 - name : Restore Dependencies
3940 run : dotnet restore
4445 - name : Run Test
4546 run : dotnet test --configuration Release --collect:"XPlat Code Coverage" --settings coverlet.runsettings
4647
47- - name : Generate Coverage
48+ - name : Generate Coverage
4849 uses :
danielpalme/[email protected] 4950 with :
5051 reports : ' ${{github.workspace}}/test/*/TestResults/*/coverage.info'
Original file line number Diff line number Diff line change 3232 <PropertyGroup >
3333 <MinVerTagPrefix >v</MinVerTagPrefix >
3434 </PropertyGroup >
35-
35+
3636 <ItemGroup >
37- <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" PrivateAssets =" All" />
38- <PackageReference Include =" MinVer" Version =" 4.3.0" PrivateAssets =" All" />
37+ <PackageReference Include =" MinVer" Version =" 5.0.0" PrivateAssets =" All" />
3938 </ItemGroup >
4039
4140 <ItemGroup >
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22 <PropertyGroup >
3- <TargetFrameworks >netstandard2.0;net6.0;net7.0</TargetFrameworks >
3+ <TargetFrameworks >netstandard2.0;net6.0;net7.0;net8.0 </TargetFrameworks >
44 <NoWarn >1591</NoWarn >
55 </PropertyGroup >
66
7- <ItemGroup >
7+ <ItemGroup Condition = " '$(TargetFramework)' == 'netstandard2.0' " >
88 <PackageReference Include =" System.ComponentModel.Annotations" Version =" 5.0.0" />
99 <PackageReference Include =" System.ComponentModel.TypeConverter" Version =" 4.3.0" />
1010 </ItemGroup >
Original file line number Diff line number Diff line change @@ -83,7 +83,7 @@ public EntityMapping GetMapping(Type type)
8383 if ( ! autoMap )
8484 return mapping ;
8585
86- // thread-safe initialization
86+ // thread-safe initialization
8787 lock ( mapping . SyncRoot )
8888 {
8989 if ( mapping . Mapped )
Original file line number Diff line number Diff line change 11<Project Sdk =" Microsoft.NET.Sdk" >
22
33 <PropertyGroup >
4- <TargetFramework >net7 .0</TargetFramework >
4+ <TargetFramework >net8 .0</TargetFramework >
55 <IsPackable >false</IsPackable >
66 </PropertyGroup >
77
1010 </ItemGroup >
1111
1212 <ItemGroup >
13- <PackageReference Include =" coverlet.collector" Version =" 6.0.0 " >
13+ <PackageReference Include =" coverlet.collector" Version =" 6.0.2 " >
1414 <PrivateAssets >all</PrivateAssets >
1515 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
1616 </PackageReference >
17- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.6.3 " />
18- <PackageReference Include =" FluentAssertions" Version =" 6.11 .0" />
19- <PackageReference Include =" xunit" Version =" 2.5 .0" />
20- <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.0 " >
17+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.9.0 " />
18+ <PackageReference Include =" FluentAssertions" Version =" 6.12 .0" />
19+ <PackageReference Include =" xunit" Version =" 2.7 .0" />
20+ <PackageReference Include =" xunit.runner.visualstudio" Version =" 2.5.7 " >
2121 <PrivateAssets >all</PrivateAssets >
2222 <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
2323 </PackageReference >
You can’t perform that action at this time.
0 commit comments