Aggiunto script pre compilazione x pulizia dir...
This commit is contained in:
@@ -388,6 +388,7 @@
|
||||
</Content>
|
||||
<Content Include="Scripts\jquery-3.3.1.slim.min.map" />
|
||||
<Content Include="Scripts\jquery-3.3.1.min.map" />
|
||||
<Content Include="scriptPre.bat" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="..\VersGen\VersGen.cs">
|
||||
@@ -970,4 +971,7 @@
|
||||
</FlavorProperties>
|
||||
</VisualStudio>
|
||||
</ProjectExtensions>
|
||||
<PropertyGroup>
|
||||
<PostBuildEvent>"$(ProjectDir)scriptPre.bat" "$(ConfigurationName)" "$(ProjectDir)"</PostBuildEvent>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,25 @@
|
||||
@echo off
|
||||
echo Effettua setup dei file specifici per ambienti cliente pre build installer: verifica da nome configurazione %1
|
||||
|
||||
REM INIZIO eliminando i files che COMUNQUE devo copiare x target...
|
||||
|
||||
if %1 == "Release" goto Release
|
||||
if %1 == "Debug" goto Debug
|
||||
if %1 == "EQUA" goto EQUA
|
||||
|
||||
:Release
|
||||
echo Release: nulla da copiare
|
||||
goto END
|
||||
|
||||
:Debug
|
||||
echo Debug: nulla da copiare
|
||||
goto END
|
||||
|
||||
:EQUA
|
||||
echo EQUA: copio files EQUA
|
||||
del /F /Q %2"obj\*.*"
|
||||
goto END
|
||||
|
||||
|
||||
:END
|
||||
echo Fatto!
|
||||
Reference in New Issue
Block a user