File tree Expand file tree Collapse file tree 6 files changed +20
-23
lines changed Expand file tree Collapse file tree 6 files changed +20
-23
lines changed Original file line number Diff line number Diff line change 54
54
3.1.x
55
55
5.0.x
56
56
6.0.x
57
+ 7.0.x
57
58
- name : Cache Tools
58
59
uses : actions/cache@v3
59
60
with :
Original file line number Diff line number Diff line change 36
36
fetch-depth : 0
37
37
38
38
with :
39
- dotnet-version : |
40
- 2.1.818
41
- 3.1.x
42
- 5.0.x
43
- 6.0.x
39
+ dotnet-version : 7.0.x
44
40
45
41
- name : Cache Tools
46
42
uses : actions/cache@v3
54
50
with :
55
51
languages : ${{ matrix.language }}
56
52
# If you wish to specify custom queries, you can do so here or in a config file.
57
- # By default, queries listed here will override any specified in a config file.
53
+ # By default, queries listed here will override any specified in a config file.
58
54
# Prefix the list here with "+" to use these queries and those in the config file.
59
55
# queries: ./path/to/local/query, your-org/your-repo/queries@main
60
56
78
74
with :
79
75
if-no-files-found : warn
80
76
name : CoreDump
81
- path : BuildArtifacts/coredump.dmp
77
+ path : BuildArtifacts/coredump.dmp
Original file line number Diff line number Diff line change
1
+ {
2
+ "sarif-viewer.connectToGithubCodeScanning" : " on"
3
+ }
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 6 .0.402 " ,
3
+ "version" : " 7 .0.100 " ,
4
4
"rollForward" : " latestFeature"
5
5
}
6
- }
6
+ }
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFrameworks >netcoreapp3.1;net5.0;net6.0</TargetFrameworks >
4
+ <!--
5
+ Fool Cake.Incubator into thinking we're building agains netcoreapp3.1.
6
+ This is done to make Cake.Recipe avoid using OpenCover. Remove this hack if Cake.Recipe bumps the usage of Cake.Incubator to version 7.0.0
7
+ -->
8
+ <TargetFrameworks Condition =" false" >netcoreapp3.1</TargetFrameworks >
9
+ <TargetFrameworks >net6.0;net7.0;</TargetFrameworks >
5
10
<CodeAnalysisRuleSet >..\cake.7zip.ruleset</CodeAnalysisRuleSet >
6
11
7
12
<IsPackable >false</IsPackable >
10
15
</PropertyGroup >
11
16
12
17
<ItemGroup >
13
- <PackageReference Include =" Cake.Testing" Version =" 2.3 .0" />
18
+ <PackageReference Include =" Cake.Testing" Version =" 3.0 .0" />
14
19
<PackageReference Include =" coverlet.msbuild" Version =" 3.2.0" >
15
20
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
16
21
<PrivateAssets >all</PrivateAssets >
17
22
</PackageReference >
18
- <PackageReference Include =" Microsoft.CodeAnalysis.NetAnalyzers" Version =" 6.0.0" >
19
- <PrivateAssets >all</PrivateAssets >
20
- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
21
- </PackageReference >
22
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.3.2" />
23
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.4.0" />
23
24
<PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1" >
24
25
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
25
26
<PrivateAssets >all</PrivateAssets >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
<PropertyGroup >
3
- <TargetFrameworks >netcoreapp3.1;net5.0;net6.0 </TargetFrameworks >
3
+ <TargetFrameworks >net6.0;net7.0; </TargetFrameworks >
4
4
<GenerateDocumentationFile >true</GenerateDocumentationFile >
5
5
<PublishRepositoryUrl >true</PublishRepositoryUrl >
6
6
<AllowedOutputExtensionsInPackageBuildOutputFolder >$(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb</AllowedOutputExtensionsInPackageBuildOutputFolder >
39
39
<PrivateAssets >all</PrivateAssets >
40
40
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
41
41
</PackageReference >
42
- <PackageReference Include =" Cake.Core" Version =" 2 .0.0" PrivateAssets =" All" />
43
- <PackageReference Include =" CakeContrib.Guidelines" Version =" 1.3 .0" PrivateAssets =" All" />
42
+ <PackageReference Include =" Cake.Core" Version =" 3 .0.0" PrivateAssets =" All" />
43
+ <PackageReference Include =" CakeContrib.Guidelines" Version =" 1.4 .0" PrivateAssets =" All" />
44
44
<PackageReference Include =" IDisposableAnalyzers" Version =" 4.0.2" >
45
45
<PrivateAssets >all</PrivateAssets >
46
46
<IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
47
47
</PackageReference >
48
- <PackageReference Include =" Microsoft.CodeAnalysis.NetAnalyzers" Version =" 6.0.0" >
49
- <PrivateAssets >all</PrivateAssets >
50
- <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
51
- </PackageReference >
52
48
<PackageReference Include =" stylecop.analyzers" Version =" 1.1.118" >
53
49
<IncludeAssets >runtime; build; native; contentfiles; analyzers</IncludeAssets >
54
50
<PrivateAssets >all</PrivateAssets >
You can’t perform that action at this time.
0 commit comments