diff --git a/.appveyor.yml b/.appveyor.yml index c180aec..06c5830 100644 --- a/.appveyor.yml +++ b/.appveyor.yml @@ -1,15 +1,11 @@ #---------------------------------# # Build Image # #---------------------------------# -image: Visual Studio 2017 +image: Visual Studio 2019 #---------------------------------# # Build Script # #---------------------------------# -install: - # Update to latest NuGet version since we require 5.3.0 for embedded icon - - ps: nuget update -self - build_script: - ps: .\build.ps1 -Target AppVeyor diff --git a/global.json b/global.json index 21e27ce..52599fd 100644 --- a/global.json +++ b/global.json @@ -1,5 +1,6 @@ { "sdk": { - "version": "2.1.500" + "version": "5.0.100", + "rollForward": "latestFeature" } } \ No newline at end of file diff --git a/nuspec/nuget/Cake.Gulp.nuspec b/nuspec/nuget/Cake.Gulp.nuspec deleted file mode 100644 index 7485cb1..0000000 --- a/nuspec/nuget/Cake.Gulp.nuspec +++ /dev/null @@ -1,27 +0,0 @@ - - - - Cake.Gulp - Cake.Gulp - Phil Oyston - philo, pascalberger, cake-contrib - MIT - https://github.com/cake-contrib/Cake.Gulp - icon.png - false - - Adds Gulp helpers for Cake - A set of aliases for Cake to help with running Gulp scripts as part of a build - cake cake-addin build gulp - https://github.com/cake-contrib/Cake.Gulp/releases/tag/1.0.0 - - - - - - - - - - - diff --git a/nuspec/nuget/icon.png b/nuspec/nuget/icon.png deleted file mode 100644 index 9881edc..0000000 Binary files a/nuspec/nuget/icon.png and /dev/null differ diff --git a/recipe.cake b/recipe.cake index b4ee5eb..24445df 100644 --- a/recipe.cake +++ b/recipe.cake @@ -10,7 +10,8 @@ BuildParameters.SetParameters(context: Context, repositoryName: "Cake.Gulp", appVeyorAccountName: "cakecontrib", shouldRunDupFinder: false, - shouldRunInspectCode: false); + shouldRunInspectCode: false, + shouldRunDotNetCorePack: true); BuildParameters.PrintParameters(Context); diff --git a/src/Cake.Gulp.Tests/Cake.Gulp.Tests.csproj b/src/Cake.Gulp.Tests/Cake.Gulp.Tests.csproj index 3c19fa1..98c48d8 100644 --- a/src/Cake.Gulp.Tests/Cake.Gulp.Tests.csproj +++ b/src/Cake.Gulp.Tests/Cake.Gulp.Tests.csproj @@ -1,7 +1,7 @@  - netcoreapp2.0 + netcoreapp3.1 false false @@ -14,10 +14,6 @@ - - - - diff --git a/src/Cake.Gulp/Cake.Gulp.csproj b/src/Cake.Gulp/Cake.Gulp.csproj index afe9292..34129f5 100644 --- a/src/Cake.Gulp/Cake.Gulp.csproj +++ b/src/Cake.Gulp/Cake.Gulp.csproj @@ -4,25 +4,39 @@ net461;netstandard2.0 Cake.Gulp Cake.Gulp - false true anycpu portable + Cake Contributions - Phil Oyston + Cake.Gulp + $(AllowedOutputExtensionsInPackageBuildOutputFolder);.pdb + + + 2016 + $([System.DateTime]::Today.Year) + $(StartYear) + $(StartYear)-$(EndYear) - - bin\Debug\$(TargetFramework)\Cake.Gulp.xml - - - bin\Release\$(TargetFramework)\Cake.Gulp.xml + + Phil Oyston + Copyright © Cake Contributions $(FullYear) + Provides a wrapper around Gulp functionality within a Cake build script + MIT + https://github.com/cake-contrib/Cake.Gulp + cake;cake-addin;build;gulp;cake-build;script;addin + https://github.com/cake-contrib/Cake.Gulp.git + https://github.com/cake-contrib/Cake.Gulp/releases + Cake.Gulp + 0.0.1 - - - - + + all + runtime; build; native; contentfiles; analyzers; buildtransitive + diff --git a/src/Cake.Gulp/Properties/AssemblyInfo.cs b/src/Cake.Gulp/Properties/AssemblyInfo.cs deleted file mode 100644 index 6752949..0000000 --- a/src/Cake.Gulp/Properties/AssemblyInfo.cs +++ /dev/null @@ -1,12 +0,0 @@ -using System.Reflection; -using System.Runtime.InteropServices; - -// General Information about an assembly is controlled through the following -// set of attributes. Change these attribute values to modify the information -// associated with an assembly. -[assembly: AssemblyTitle("Cake.Gulp")] -[assembly: AssemblyDescription("Provides a wrapper around Gulp functionality within a Cake build script")] -[assembly: AssemblyConfiguration("")] -[assembly: AssemblyTrademark("")] -[assembly: AssemblyCulture("")] -[assembly: ComVisible(false)] diff --git a/src/SolutionInfo.cs b/src/SolutionInfo.cs deleted file mode 100644 index c65d528..0000000 --- a/src/SolutionInfo.cs +++ /dev/null @@ -1,13 +0,0 @@ -//------------------------------------------------------------------------------ -// -// This code was generated by Cake. -// -//------------------------------------------------------------------------------ -using System.Reflection; - -[assembly: AssemblyCompany("Cake Contributions - Phil Oyston")] -[assembly: AssemblyProduct("Cake.Gulp")] -[assembly: AssemblyVersion("0.1.0")] -[assembly: AssemblyFileVersion("0.1.0")] -[assembly: AssemblyInformationalVersion("0.1.0")] -[assembly: AssemblyCopyright("Copyright © Cake Contributions 2017 - Present")]