File tree Expand file tree Collapse file tree 6 files changed +31
-16
lines changed
Our.Umbraco.TagHelpers.Playground
Our.Umbraco.TagHelpers.Tests Expand file tree Collapse file tree 6 files changed +31
-16
lines changed Original file line number Diff line number Diff line change @@ -43,11 +43,15 @@ jobs:
43
43
with :
44
44
fetch-depth : 0
45
45
46
+ - name : Setup .NET
47
+ uses : actions/setup-dotnet@v1
48
+ with :
49
+ dotnet-version : ' 5.0.x'
50
+
46
51
- name : Setup .NET
47
52
uses : actions/setup-dotnet@v1
48
53
with :
49
54
dotnet-version : ' 6.0.x'
50
- include-prerelease : true
51
55
52
56
# Initializes the CodeQL tools for scanning.
53
57
- name : Initialize CodeQL
Original file line number Diff line number Diff line change @@ -21,11 +21,15 @@ jobs:
21
21
with :
22
22
fetch-depth : 0
23
23
24
+ - name : Setup .NET
25
+ uses : actions/setup-dotnet@v1
26
+ with :
27
+ dotnet-version : ' 5.0.x'
28
+
24
29
- name : Setup .NET
25
30
uses : actions/setup-dotnet@v1
26
31
with :
27
32
dotnet-version : ' 6.0.x'
28
- include-prerelease : true
29
33
30
34
- name : Restore dependencies
31
35
run : dotnet restore
Original file line number Diff line number Diff line change @@ -21,11 +21,15 @@ jobs:
21
21
with :
22
22
fetch-depth : 0
23
23
24
+ - name : Setup .NET
25
+ uses : actions/setup-dotnet@v1
26
+ with :
27
+ dotnet-version : ' 5.0.x'
28
+
24
29
- name : Setup .NET
25
30
uses : actions/setup-dotnet@v1
26
31
with :
27
32
dotnet-version : ' 6.0.x'
28
- include-prerelease : true
29
33
30
34
- name : Restore dependencies
31
35
run : dotnet restore
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk.Web" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net5 .0</TargetFramework >
5
5
<DefaultItemExcludes >$(DefaultItemExcludes);App_Plugins/**;</DefaultItemExcludes >
6
6
<DefaultItemExcludes >$(DefaultItemExcludes);umbraco/**;</DefaultItemExcludes >
7
7
<DefaultItemExcludes >$(DefaultItemExcludes);wwwroot/media/**;</DefaultItemExcludes >
8
8
</PropertyGroup >
9
9
10
10
<ItemGroup >
11
- <PackageReference Include =" Umbraco.Cms" Version =" 9.0.1 " />
11
+ <PackageReference Include =" Umbraco.Cms" Version =" 9.1.0 " />
12
12
</ItemGroup >
13
13
14
14
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework >net6 .0</TargetFramework >
4
+ <TargetFramework >net5 .0</TargetFramework >
5
5
6
6
<IsPackable >false</IsPackable >
7
7
</PropertyGroup >
8
8
9
9
<ItemGroup >
10
10
<PackageReference Include =" Microsoft.AspNetCore.Mvc.ViewFeatures" Version =" 2.2.0" />
11
11
<PackageReference Include =" Microsoft.AspNetCore.Razor" Version =" 2.2.0" />
12
- <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 16.9.4" />
13
- <PackageReference Include =" NUnit" Version =" 3.13.1" />
14
- <PackageReference Include =" NUnit3TestAdapter" Version =" 3.17.0" />
15
- <PackageReference Include =" coverlet.collector" Version =" 3.0.2" />
12
+ <PackageReference Include =" Microsoft.NET.Test.Sdk" Version =" 17.0.0" />
13
+ <PackageReference Include =" NUnit" Version =" 3.13.2" />
14
+ <PackageReference Include =" NUnit3TestAdapter" Version =" 4.1.0" />
15
+ <PackageReference Include =" coverlet.collector" Version =" 3.1.0" >
16
+ <PrivateAssets >all</PrivateAssets >
17
+ <IncludeAssets >runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets >
18
+ </PackageReference >
16
19
</ItemGroup >
17
20
18
21
<ItemGroup >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
2
3
3
<PropertyGroup >
4
- <TargetFramework > net6.0</TargetFramework >
4
+ <TargetFrameworks >net5.0; net6.0</TargetFrameworks >
5
5
</PropertyGroup >
6
6
7
7
<PropertyGroup >
32
32
</PropertyGroup >
33
33
34
34
<ItemGroup >
35
- <PackageReference Include =" Microsoft.AspNetCore.DataProtection.Abstractions" Version =" 5 .0.11 " />
35
+ <PackageReference Include =" Microsoft.AspNetCore.DataProtection.Abstractions" Version =" 6 .0.0 " />
36
36
<PackageReference Include =" Microsoft.AspNetCore.Mvc.ViewFeatures" Version =" 2.2.0" />
37
37
<PackageReference Include =" Microsoft.AspNetCore.Razor" Version =" 2.2.0" />
38
38
<PackageReference Include =" Stubble.Core" Version =" 1.9.3" />
39
- <PackageReference Include =" Umbraco.Cms.Core" Version =" 9.0.1 " />
40
- <PackageReference Include =" Umbraco.Cms.Web.Common" Version =" 9.0.1 " />
39
+ <PackageReference Include =" Umbraco.Cms.Core" Version =" 9.1.0 " />
40
+ <PackageReference Include =" Umbraco.Cms.Web.Common" Version =" 9.1.0 " />
41
41
42
- <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.0.0 " PrivateAssets =" All" />
43
- <PackageReference Include =" GitVersion.MsBuild" Version =" 5.6.10* " PrivateAssets =" All" />
42
+ <PackageReference Include =" Microsoft.SourceLink.GitHub" Version =" 1.1.1 " PrivateAssets =" All" />
43
+ <PackageReference Include =" GitVersion.MsBuild" Version =" 5.8.1 " PrivateAssets =" All" />
44
44
</ItemGroup >
45
45
46
46
<ItemGroup >
You can’t perform that action at this time.
0 commit comments