File tree Expand file tree Collapse file tree 5 files changed +14
-14
lines changed
tests/SharedInfrastructure.Tests Expand file tree Collapse file tree 5 files changed +14
-14
lines changed Original file line number Diff line number Diff line change @@ -13,15 +13,15 @@ jobs:
13
13
matrix :
14
14
options :
15
15
- os : ubuntu-latest
16
- framework : net6 .0
16
+ framework : net8 .0
17
17
runtime : -x64
18
18
codecov : false
19
19
- os : macos-latest
20
- framework : net6 .0
20
+ framework : net8 .0
21
21
runtime : -x64
22
22
codecov : false
23
23
- os : windows-latest
24
- framework : net6 .0
24
+ framework : net8 .0
25
25
runtime : -x64
26
26
codecov : true
27
27
55
55
uses : actions/setup-dotnet@v3
56
56
with :
57
57
dotnet-version : |
58
- 6 .0.x
58
+ 8 .0.x
59
59
60
60
- name : DotNet Build
61
61
shell : pwsh
Original file line number Diff line number Diff line change 62
62
63
63
<!-- Compilation settings that explicitly differ from the Sdk.props/targets defaults -->
64
64
<PropertyGroup >
65
- <LangVersion >10 .0</LangVersion >
65
+ <LangVersion >12 .0</LangVersion >
66
66
<AllowUnsafeBlocks >true</AllowUnsafeBlocks >
67
67
<Features >strict;IOperation</Features >
68
68
<HighEntropyVA >true</HighEntropyVA >
115
115
116
116
<!-- Package references and additional files which are consumed by all projects. -->
117
117
<ItemGroup >
118
- <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.435 " IsImplicitlyDefined =" true" >
118
+ <PackageReference Include =" StyleCop.Analyzers" Version =" 1.2.0-beta.507 " IsImplicitlyDefined =" true" >
119
119
<PrivateAssets >all</PrivateAssets >
120
120
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
121
121
</PackageReference >
Original file line number Diff line number Diff line change 49
49
<!-- Package references and additional files which are consumed by src projects. CI Only -->
50
50
<ItemGroup Condition =" '$(IsContinuousIntegration)'=='true'" >
51
51
<PackageReference Include =" Microsoft.SourceLink.GitHub"
52
- Version =" 1.1.1 "
52
+ Version =" 8.0.0 "
53
53
PrivateAssets =" All"
54
54
IsImplicitlyDefined =" true" />
55
-
55
+
56
56
<PackageReference Include =" MinVer"
57
57
PrivateAssets =" All"
58
- Version =" 4.1 .0"
58
+ Version =" 4.3 .0"
59
59
IsImplicitlyDefined =" true" />
60
60
</ItemGroup >
61
61
Original file line number Diff line number Diff line change 11
11
12
12
<!-- Package references and additional files which are consumed by test projects -->
13
13
<ItemGroup Condition =" '$(IsTestProject)' == 'true'" >
14
- <PackageReference Include =" xunit" Version =" 2.4 .2" IsImplicitlyDefined =" true" />
14
+ <PackageReference Include =" xunit" Version =" 2.6 .2" IsImplicitlyDefined =" true" />
15
15
16
16
<PackageReference Include =" coverlet.collector"
17
- Version =" 3.1.2 "
17
+ Version =" 6.0.0 "
18
18
PrivateAssets =" All"
19
19
IsImplicitlyDefined =" true"
20
20
Condition =" '$(IsCodeCoverage)'=='true'" />
21
21
22
22
<PackageReference Include =" Microsoft.NET.Test.Sdk"
23
- Version =" 17.4.1 "
23
+ Version =" 17.8.0 "
24
24
IsImplicitlyDefined =" true" />
25
25
26
26
<PackageReference Include =" xunit.runner.visualstudio"
27
- Version =" 2.4.5 "
27
+ Version =" 2.5.4 "
28
28
IsImplicitlyDefined =" true" />
29
29
30
30
<Using Include =" Xunit" Condition =" '$(ImplicitUsings)'=='enable' OR '$(ImplicitUsings)'=='true'" />
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >net6 .0;</TargetFrameworks >
4
+ <TargetFrameworks >net8 .0;</TargetFrameworks >
5
5
<AssemblyName >SharedInfrastructure.Tests</AssemblyName >
6
6
<RootNamespace >SharedInfrastructure.Tests</RootNamespace >
7
7
<Nullable >enable</Nullable >
You can’t perform that action at this time.
0 commit comments