From 9c5168a739ee3fe87e54d05cba5f6a24a5f78472 Mon Sep 17 00:00:00 2001 From: Alexandre Zollinger Chohfi Date: Tue, 18 Apr 2023 22:59:16 -0700 Subject: [PATCH] Updated Cake build system to newer version, and updated source to net7.0. (#530) * Updated Cake build system to newer version, and updated source to net7.0. * Small fix on version number. --- .config/dotnet-tools.json | 12 + Directory.Build.props | 4 +- Lottie-Windows.sln | 16 +- .../Lottie-Windows-Uwp.csproj | 2 +- .../Lottie-Windows-WinUI3.csproj | 7 +- LottieGen/Common.proj | 2 +- .../MSBuildTask/LottieGen.MsBuild.csproj | 4 +- LottieGen/README.md | 8 +- LottieViewer/LottieViewer.csproj | 2 +- azure-pipelines.yml | 19 +- build/build.cake | 22 +- build/build.ps1 | 256 +----------------- build/tools/packages.config | 2 +- dlls/Animatables/Animatables.dll.csproj | 2 +- dlls/CompMetadata/CompMetadata.dll.csproj | 2 +- dlls/DotLottie/DotLottie.dll.csproj | 2 +- dlls/GenericData/GenericData.dll.csproj | 4 +- dlls/LottieData/LottieData.dll.csproj | 4 +- dlls/LottieMetadata/LottieMetadata.dll.csproj | 4 +- dlls/LottieReader/LottieReader.dll.csproj | 2 +- .../LottieToWinComp.dll.csproj | 2 +- dlls/UIData/UIData.dll.csproj | 2 +- dlls/UIDataCodeGen/UIDataCodeGen.dll.csproj | 2 +- dlls/WinCompData/WinCompData.dll.csproj | 2 +- .../WinStorageStreamsData.dll.csproj | 2 +- .../WinUIXamlMediaData.dll.csproj | 2 +- dlls/YamlData/YamlData.dll.csproj | 2 +- global.json | 2 +- source/Animatables/Easing.cs | 2 + .../CodeGen/InstantiatorGeneratorBase.cs | 4 + source/WinCompData/CompositionObject.cs | 9 + source/WinCompData/Mgcg/CanvasPathBuilder.cs | 2 + 32 files changed, 88 insertions(+), 321 deletions(-) create mode 100644 .config/dotnet-tools.json diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json new file mode 100644 index 000000000..831d039b6 --- /dev/null +++ b/.config/dotnet-tools.json @@ -0,0 +1,12 @@ +{ + "version": 1, + "isRoot": true, + "tools": { + "cake.tool": { + "version": "3.0.0", + "commands": [ + "dotnet-cake" + ] + } + } +} \ No newline at end of file diff --git a/Directory.Build.props b/Directory.Build.props index 39873c696..b9107cbf7 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -127,7 +127,7 @@ - +