Skip to content

Commit 1e1886c

Browse files
author
ENDAVA\mzorec
committed
Adds support for .net 7.0
1 parent c9b6c4f commit 1e1886c

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

src/FlubuCore.GlobalTool/FlubuCore.GlobalTool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<PackAsTool>true</PackAsTool>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
5+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
66
<ToolCommandName>flubu</ToolCommandName>
77
<PackageTags>dotnet;flubu;flubucore;build;builder;script;buildscript;automation;VisualStudio</PackageTags>
88
<PackageLicenseUrl>https://opensource.org/licenses/MIT</PackageLicenseUrl>

src/FlubuCore.Tool/FlubuCore.Tool.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<PropertyGroup>
33
<PackAsTool>true</PackAsTool>
44
<OutputType>Exe</OutputType>
5-
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
5+
<TargetFrameworks>netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
66
<ToolCommandName>flubu</ToolCommandName>
77
<PackageTags>dotnet;flubu;flubucore;build;builder;script;buildscript;automation;VisualStudio</PackageTags>
88
<Authors>Marko Zorec;Zoro Zorec;Micheal Tsai</Authors>

src/FlubuCore/BuildServers/Configurations/JenkinsConfigurationSerializer.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ private StringBuilder BuildJenkinsPipeline(JenkinsPipeline pipeline)
1818
{
1919
StringBuilder stringBuilder = new StringBuilder();
2020

21-
2221
if (!pipeline.DisableCustomWorkspaceFlubuFeature)
2322
{
2423
stringBuilder.AppendBlockWithNewLine("def getWorkspace()", sb =>

src/dotnet-flubu/dotnet-flubu.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<Project Sdk="Microsoft.NET.Sdk">
22
<PropertyGroup>
3-
<TargetFrameworks>net462;netcoreapp2.1;netcoreapp3.1;net5.0;net6.0</TargetFrameworks>
3+
<TargetFrameworks>net462;netcoreapp3.1;net5.0;net6.0;net7.0</TargetFrameworks>
44
<WarningsAsErrors>true</WarningsAsErrors>
55
<AssemblyName>dotnet-flubu</AssemblyName>
66
<OutputType>Exe</OutputType>

0 commit comments

Comments
 (0)