diff --git a/.config/dotnet-tools.json b/.config/dotnet-tools.json deleted file mode 100644 index d249b4c..0000000 --- a/.config/dotnet-tools.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "version": 1, - "isRoot": true, - "tools": { - "cake.tool": { - "version": "1.3.0", - "commands": [ - "dotnet-cake" - ] - } - } -} \ No newline at end of file diff --git a/Jenkinsfile b/Jenkinsfile index 5e81418..814826a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -6,8 +6,7 @@ pipeline { branch 'main' } steps { - sh 'dotnet tool restore' - sh 'dotnet cake' + sh 'docfx.exe' sh 'cp _site/** /var/www/tinylifedocs/ -r' } } diff --git a/build.cake b/build.cake deleted file mode 100644 index a65a80f..0000000 --- a/build.cake +++ /dev/null @@ -1,8 +0,0 @@ -#addin Cake.DocFx&version=1.0.0 -#tool docfx.console&version=2.58.8 - -var target = Argument("target", "Document"); -Task("Document").Does(() => { - DocFxBuild("docfx.json"); -}); -RunTarget(target); \ No newline at end of file