mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 19:57:07 +02:00
Add clean script to Wox.csproj
This commit is contained in:
@@ -1,23 +0,0 @@
|
|||||||
echo "start clean"
|
|
||||||
cd /d %~dp0
|
|
||||||
|
|
||||||
REM Clean Plugins
|
|
||||||
echo "clean plugins"
|
|
||||||
cd ..\Output\Release\Plugins
|
|
||||||
del NLog.dll /s
|
|
||||||
del NLog.config /s
|
|
||||||
del Wox.Plugin.pdb /s
|
|
||||||
del Wox.Plugin.dll /s
|
|
||||||
del Wox.Core.dll /s
|
|
||||||
del Wox.Core.pdb /s
|
|
||||||
del ICSharpCode.SharpZipLib.dll /s
|
|
||||||
del NAppUpdate.Framework.dll /s
|
|
||||||
del Wox.Infrastructure.dll /s
|
|
||||||
del Wox.Infrastructure.pdb /s
|
|
||||||
del Newtonsoft.Json.dll /s
|
|
||||||
del WindowsInput.dll /s
|
|
||||||
|
|
||||||
REM Clean Wox
|
|
||||||
echo "wox"
|
|
||||||
cd ..
|
|
||||||
del *.xml
|
|
||||||
BIN
Plugins/Wox.Plugin.Everything/x64/Everything.dll
Normal file
BIN
Plugins/Wox.Plugin.Everything/x64/Everything.dll
Normal file
Binary file not shown.
@@ -15,11 +15,9 @@
|
|||||||
Error - error messages
|
Error - error messages
|
||||||
Fatal - very serious errors-->
|
Fatal - very serious errors-->
|
||||||
<targets>
|
<targets>
|
||||||
<target xsi:type="File" name="file" fileName="${basedir}/logs/${shortdate}.log"/>
|
<target xsi:type="File" name="file" fileName="${basedir}/Logs/${shortdate}.log"/>
|
||||||
<target xsi:type="Console" name="console" />
|
|
||||||
</targets>
|
</targets>
|
||||||
<rules>
|
<rules>
|
||||||
<logger name="*" minlevel="Warn" writeTo="file" />
|
<logger name="*" minlevel="Warn" writeTo="file" />
|
||||||
<logger name="*" minlevel="Debug" writeTo="console" />
|
|
||||||
</rules>
|
</rules>
|
||||||
</nlog>
|
</nlog>
|
||||||
@@ -313,10 +313,24 @@
|
|||||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||||
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
|
||||||
<PropertyGroup>
|
<PropertyGroup>
|
||||||
<PostBuildEvent>xcopy /Y $(ProjectDir)Themes\* $(TargetDir)Themes\
|
<PostBuildEvent>xcopy /Y $(ProjectDir)Themes\* $(TargetDir)Themes\
|
||||||
xcopy /Y /E $(ProjectDir)Images\* $(TargetDir)Images\
|
xcopy /Y /E $(ProjectDir)Images\* $(TargetDir)Images\
|
||||||
del /s /q "$(TargetDir)*.xml"
|
xcopy /Y /D /E $(SolutionDir)PythonHome\* $(TargetDir)PythonHome\
|
||||||
xcopy /Y /D /E $(SolutionDir)PythonHome\* $(TargetDir)PythonHome\</PostBuildEvent>
|
|
||||||
|
cd "$(TargetDir)" & del /s /q *.xml
|
||||||
|
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q NLog.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q NLog.config
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Plugin.pdb
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Plugin.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Core.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Core.pdb
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q ICSharpCode.SharpZipLib.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q NAppUpdate.Framework.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Infrastructure.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Wox.Infrastructure.pdb
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q Newtonsoft.Json.dll
|
||||||
|
cd "$(TargetDir)Plugins" & del /s /q WindowsInput.dll</PostBuildEvent>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
Other similar extension points exist, see Microsoft.Common.targets.
|
Other similar extension points exist, see Microsoft.Common.targets.
|
||||||
|
|||||||
Reference in New Issue
Block a user