Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/duplicati/duplicati.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBlueBlock <danb@pobox.com>2019-09-12 13:28:53 +0300
committerBlueBlock <danb@pobox.com>2019-09-12 13:28:53 +0300
commitc70e6dd66bae74680275e4144593d7f6014a6666 (patch)
tree4fbfea3f32cd421d5542fffcd77a30f03269ca15 /Duplicati/GUI
parentcf78bbdd4bca06d19a27535aceeb7a3a13488053 (diff)
change logic to not use parens
Diffstat (limited to 'Duplicati/GUI')
-rw-r--r--Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj10
1 files changed, 6 insertions, 4 deletions
diff --git a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj
index 662be0619..ce2b11387 100644
--- a/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj
+++ b/Duplicati/GUI/Duplicati.GUI.TrayIcon/Duplicati.GUI.TrayIcon.csproj
@@ -443,10 +443,12 @@
</PreBuildEvent>
</PropertyGroup>
<PropertyGroup>
- <PostBuildEvent>if "$(ConfigurationName)"=="Debug" (
- xcopy /Y "%25USERPROFILE%25\.nuget\packages\alphavss\1.4.0\build\net45\AlphaVSS.*.dll" "$(TargetDir)\alphavss\"
- xcopy /Y "%25USERPROFILE%25\.nuget\packages\alphavss\1.4.0\lib\net45\AlphaVSS.*.dll" "$(TargetDir)\alphavss\"
-)</PostBuildEvent>
+ <PostBuildEvent>if "$(ConfigurationName)"=="Debug" goto :debug
+goto :exit
+:debug
+xcopy /Y "%25USERPROFILE%25\.nuget\packages\alphavss\1.4.0\build\net45\AlphaVSS.*.dll" "$(TargetDir)\alphavss\"
+xcopy /Y "%25USERPROFILE%25\.nuget\packages\alphavss\1.4.0\lib\net45\AlphaVSS.*.dll" "$(TargetDir)\alphavss\"
+:exit</PostBuildEvent>
</PropertyGroup>
<Import Project="..\..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net46\System.Data.SQLite.Core.targets" Condition="Exists('..\..\..\packages\System.Data.SQLite.Core.1.0.111.0\build\net46\System.Data.SQLite.Core.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">