aboutsummaryrefslogtreecommitdiff
path: root/src/clean.cmd
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2022-02-23 17:49:50 -0800
committerRob Mensching <rob@firegiant.com>2022-02-23 18:33:52 -0800
commit82bfd1218699a08c8d9cd775fc9e3eef3ec519a2 (patch)
tree75ba1cf7a63dea85fc51ff1a6557d12854b34f53 /src/clean.cmd
parenta19f847fe38ad9df88a0dc61ec2caa8ea0cd507f (diff)
downloadwix-82bfd1218699a08c8d9cd775fc9e3eef3ec519a2.tar.gz
wix-82bfd1218699a08c8d9cd775fc9e3eef3ec519a2.tar.bz2
wix-82bfd1218699a08c8d9cd775fc9e3eef3ec519a2.zip
Move nuget.config, global.json and Directory.Packages.props to root
Putting these files in the root means they can be used by the test projects support projects that get copied to the `build` folder.
Diffstat (limited to 'src/clean.cmd')
-rw-r--r--src/clean.cmd3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/clean.cmd b/src/clean.cmd
index 97a7dd3d..94f9a618 100644
--- a/src/clean.cmd
+++ b/src/clean.cmd
@@ -11,6 +11,9 @@ if exist ..\packages rd /s/q ..\packages
11if exist Directory.Packages.props (del Directory.Packages.props) 11if exist Directory.Packages.props (del Directory.Packages.props)
12if exist global.json (del global.json) 12if exist global.json (del global.json)
13 13
14if exist ..\Directory.Packages.props (del ..\Directory.Packages.props)
15if exist ..\global.json (del ..\global.json)
16
14if exist "%_NUGET_CACHE%\wixbuildtools.testsupport" rd /s/q "%_NUGET_CACHE%\wixbuildtools.testsupport" 17if exist "%_NUGET_CACHE%\wixbuildtools.testsupport" rd /s/q "%_NUGET_CACHE%\wixbuildtools.testsupport"
15if exist "%_NUGET_CACHE%\wixtoolset.bal.wixext" rd /s/q "%_NUGET_CACHE%\wixtoolset.bal.wixext" 18if exist "%_NUGET_CACHE%\wixtoolset.bal.wixext" rd /s/q "%_NUGET_CACHE%\wixtoolset.bal.wixext"
16if exist "%_NUGET_CACHE%\wixtoolset.balutil" rd /s/q "%_NUGET_CACHE%\wixtoolset.balutil" 19if exist "%_NUGET_CACHE%\wixtoolset.balutil" rd /s/q "%_NUGET_CACHE%\wixtoolset.balutil"