File tree Expand file tree Collapse file tree 6 files changed +16
-11
lines changed
src/Spectre.Console.Cli.Extensions.DependencyInjection Expand file tree Collapse file tree 6 files changed +16
-11
lines changed Original file line number Diff line number Diff line change 3
3
"isRoot" : true ,
4
4
"tools" : {
5
5
"cake.tool" : {
6
- "version" : " 2.3 .0" ,
6
+ "version" : " 3.1 .0" ,
7
7
"commands" : [
8
8
" dotnet-cake"
9
9
]
Original file line number Diff line number Diff line change 25
25
with :
26
26
dotnet-version : ' 6.0.x'
27
27
28
+ - name : Install .NET Core SDK 7.0.x
29
+ uses : actions/setup-dotnet@v1
30
+ with :
31
+ dotnet-version : ' 7.0.x'
32
+
28
33
- name : Install .NET SDK (global.json)
29
34
uses : actions/setup-dotnet@v3
30
35
with :
44
49
with :
45
50
name : scedi-package
46
51
path : dist/package/
47
-
52
+
48
53
- name : Create Release
49
54
if : startsWith(github.ref, 'refs/tags/')
50
55
uses : softprops/action-gh-release@v1
Original file line number Diff line number Diff line change 1
- #module nuget : ? package = Cake . BuildSystems . Module & version = 4.1 .0
1
+ #module nuget : ? package = Cake . BuildSystems . Module & version = 5.0 .0
2
2
#load "build/helpers.cake"
3
3
#load "build/version.cake"
4
4
#tool "nuget:https://api.nuget.org/v3/index.json?package=nuget.commandline&version=5.3.1"
Original file line number Diff line number Diff line change 1
- #tool " dotnet:?package=minver-cli&version=4.2.0"
2
- #addin " nuget:?package=Cake.MinVer&version=2 .0.0"
1
+ #tool dotnet : ? package= minver - cli & version = 4.3 .0
2
+ #addin nuget: ? package = Cake . MinVer & version = 3 .0.0
3
3
4
4
var fallbackVersion = Argument < string > ( "force-version" , EnvironmentVariable ( "FALLBACK_VERSION" ) ?? "0.1.0" ) ;
5
5
Original file line number Diff line number Diff line change 1
1
{
2
2
"sdk" : {
3
- "version" : " 7.0.100-rc.2.22477.23" ,
4
- "rollForward" : " latestMajor" ,
3
+ "version" : " 8.0.100-rc.2.23502.2" ,
5
4
"allowPrerelease" : true
6
5
}
7
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 >netstandard2.0;net7.0</TargetFrameworks >
4
+ <TargetFrameworks >netstandard2.0;net7.0;net8.0 </TargetFrameworks >
5
5
</PropertyGroup >
6
6
<PropertyGroup >
7
7
<PackageId >Spectre.Console.Cli.Extensions.DependencyInjection</PackageId >
14
14
<PackageProjectUrl >https://github.com/wcomab/Spectre.Console.Cli.Extensions.DependencyInjection</PackageProjectUrl >
15
15
</PropertyGroup >
16
16
<ItemGroup >
17
- <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 6.0.1" Condition =" '$(TargetFramework)' != 'net7.0'" />
18
- <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 7.0.0-rc.2.22472.3" Condition =" '$(TargetFramework)' == 'net7.0'" />
19
- <PackageReference Include =" Spectre.Console.Cli" Version =" 0.45.0" />
17
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 6.0.1" Condition =" '$(TargetFramework)' != 'net7.0' AND '$(TargetFramework)' != 'net8.0'" />
18
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 7.0.0" Condition =" '$(TargetFramework)' == 'net7.0'" />
19
+ <PackageReference Include =" Microsoft.Extensions.DependencyInjection" Version =" 8.0.0-rc.2.23479.6" Condition =" '$(TargetFramework)' == 'net8.0'" />
20
+ <PackageReference Include =" Spectre.Console.Cli" Version =" 0.47.0" />
20
21
</ItemGroup >
21
22
22
23
</Project >
You can’t perform that action at this time.
0 commit comments