Aggiuta copia report POST BUILD

This commit is contained in:
Samuele E. Locatelli
2018-03-19 12:25:22 +01:00
parent a7000173ea
commit 02211f0aec
12 changed files with 4546 additions and 13 deletions
+17 -8
View File
@@ -326,18 +326,23 @@
<Content Include="Content\bootstrap-grid.min.css.map" />
<Content Include="Content\bootstrap-grid.css.map" />
<Content Include="Reports\PlaceHolder.file" />
<None Include="Reports\ReportFull_Vers3.rdl" />
<None Include="Reports\Report_C.rdlc">
<SubType>Designer</SubType>
</None>
<None Include="Reports\Report_F.rdlc" />
<None Include="Reports\Report_S.rdlc" />
<None Include="Resources\CMS\ReportFull_Vers3.rdl" />
<Content Include="NLog.config">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
</Content>
<None Include="NLog.xsd">
<SubType>Designer</SubType>
</None>
<None Include="Reports\Report_C.rdl">
<None Include="Resources\CMS\Report_C.rdl">
<SubType>Designer</SubType>
</None>
<None Include="Reports\Report_S.rdl" />
<None Include="Reports\Report_F.rdl" />
<None Include="Resources\CMS\Report_S.rdl" />
<None Include="Resources\CMS\Report_F.rdl" />
<Content Include="BootstrapNoUpdPnl.Master" />
<None Include="bundleconfig.json" />
<None Include="compilerconfig.json" />
@@ -488,6 +493,7 @@
<Content Include="Scripts\popper.js.map" />
<Content Include="Scripts\popper-utils.min.js.map" />
<Content Include="Scripts\popper-utils.js.map" />
<Content Include="setupTgt.bat" />
<None Include="Web.CMS.config">
<DependentUpon>Web.config</DependentUpon>
</None>
@@ -994,11 +1000,11 @@
</ProjectReference>
</ItemGroup>
<ItemGroup>
<Content Include="Reports\Report_C.rdlc">
<None Include="Resources\CMS\Report_C.rdlc">
<SubType>Designer</SubType>
</Content>
<Content Include="Reports\Report_S.rdlc" />
<Content Include="Reports\Report_F.rdlc" />
</None>
<None Include="Resources\CMS\Report_S.rdlc" />
<None Include="Resources\CMS\Report_F.rdlc" />
</ItemGroup>
<ItemGroup>
<Service Include="{4A0DDDB5-7A95-4FBF-97CC-616D07737A77}" />
@@ -1065,6 +1071,9 @@
</FlavorProperties>
</VisualStudio>
</ProjectExtensions>
<PropertyGroup>
<PostBuildEvent>"$(ProjectDir)setupTgt.bat" "$(ConfigurationName)" "$(ProjectDir)"</PostBuildEvent>
</PropertyGroup>
<!-- 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.
<Target Name="BeforeBuild">
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
File diff suppressed because it is too large Load Diff
+2 -2
View File
@@ -124,9 +124,9 @@
-->
<system.web>
<compilation debug="true" targetFramework="4.6.2">
<!--<buildProviders>
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
</buildProviders>-->
</buildProviders>
</compilation>
<httpRuntime targetFramework="4.5" />
<pages>
+2 -2
View File
@@ -124,9 +124,9 @@
-->
<system.web>
<compilation debug="true" targetFramework="4.6.2">
<!--<buildProviders>
<buildProviders>
<add extension=".rdlc" type="Microsoft.Reporting.RdlBuildProvider, Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" />
</buildProviders>-->
</buildProviders>
</compilation>
<httpRuntime targetFramework="4.5" />
<pages>
+27
View File
@@ -0,0 +1,27 @@
@echo off
echo Effettua setup dei file specifici per ambienti cliente POST 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 == "CMS" goto CMS
:Release
echo Release: nulla da copiare
goto END
:Debug
echo Debug: nulla da copiare
goto END
:CMS
echo CMS: copio files CMS
del /F /Q %2"Reports\*.rdlc"
REM del /F /Q %2"DATA\CONF\*.*"
copy %2"Resources\CMS\*.rdlc" %2"Reports\"
goto END
:END
echo Fatto!
Vendored
+1 -1
View File
@@ -14,7 +14,7 @@ pipeline {
/* calcolo numero versione... diverso x branch MASTER/DEVELOP */
script {
withEnv(['NEXT_BUILD_NUMBER=4243']) {
withEnv(['NEXT_BUILD_NUMBER=4244']) {
// env.versionNumber = VersionNumber(versionNumberString : '3.2.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true)
env.versionNumber = VersionNumber(versionNumberString : '3.2.${BUILD_DATE_FORMATTED, "yyMM"}.${BUILDS_ALL_TIME}', projectStartDate : '2006-01-01', skipFailedBuilds: true, overrideBuildsAllTime: '${NEXT_BUILD_NUMBER}')
env.APP_NAME = 'CMS-SC'