Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a6f6d2b23c | |||
| 7806215742 | |||
| ae6290b873 | |||
| cfd0bee587 | |||
| 4c5053a01a | |||
| 36907a3f74 | |||
| 19e19c5d5d | |||
| 7112a0827a | |||
| 934a872c37 | |||
| bbf92b6981 | |||
| 58b0ce0bd3 | |||
| 91453f3efd | |||
| 068a073c60 | |||
| 5cec22260b | |||
| aef2f8b3fd |
+270
@@ -0,0 +1,270 @@
|
||||
variables:
|
||||
NUGET_PATH: 'C:\Tools\nuget.exe'
|
||||
MSBUILD_PATH: 'C:\Program Files (x86)\Microsoft Visual Studio\2019\BuildTools\MSBuild\Current\Bin\MSBuild.exe'
|
||||
ASPNET_MERGE_PATH: 'C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools'
|
||||
VERS_MAIN: '1.8'
|
||||
NEW_REL: ''
|
||||
NEXUS_PATH: 'XPS'
|
||||
APP_NAME: 'XPS'
|
||||
SOL_NAME: 'XPS_app'
|
||||
APP_CONF: 'Release'
|
||||
PROJ_NAME: 'XPS'
|
||||
|
||||
|
||||
# helper x fix pacchetti nuget da repo locale nexus.steamware.net
|
||||
.nuget-fix: &nuget-fix
|
||||
- |
|
||||
$hasSource = C:\Tools\nuget.exe sources list | find "`"Steamware Nexus`"" /C
|
||||
if ($hasSource -eq 0) {
|
||||
C:\Tools\nuget.exe sources Add -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"viaDante16`""
|
||||
} else {
|
||||
C:\Tools\nuget.exe sources Update -Name "`"Steamware Nexus`"" -Source https://nexus.steamware.net/repository/nuget-group -username "`"nugetUser`"" -password "`"viaDante16`""
|
||||
}
|
||||
echo $hasSource
|
||||
|
||||
# helper x fix version number
|
||||
.version-fix: &version-fix
|
||||
- |
|
||||
# Esecuzione fix numero versione x pack nuget
|
||||
$fileName = ".\VersGen\VersGen.cs";
|
||||
# calcolo nuova
|
||||
$env:NEW_REL = $env:VERS_MAIN+"."+(get-date –format yyMM)+"."+(get-date –format dHH)
|
||||
echo "New vers: $env:NEW_REL"
|
||||
# aggiorno file
|
||||
$contenuto = Get-Content -path $fileName -Raw
|
||||
$newContenuto = $contenuto -replace '1.0.0.0', $env:NEW_REL
|
||||
$newContenuto | Set-Content -path $fileName
|
||||
|
||||
|
||||
# helper x fix manifest xml
|
||||
.manifest-fix: &manifest-fix
|
||||
- |
|
||||
echo "Set manifest.xml for branch: $CI_COMMIT_BRANCH"
|
||||
$fileName = 'Resources\manifest.xml'
|
||||
$contenuto = Get-Content -path $fileName -Raw
|
||||
$newContenuto = $contenuto -replace '{{BRANCHNAME}}', $CI_COMMIT_BRANCH
|
||||
$newContenuto = $newContenuto -replace '{{PACKNAME}}', $env:APP_NAME
|
||||
$newContenuto = $newContenuto -replace '1.0.0.0', $env:NEW_REL
|
||||
$newContenuto | Set-Content -path $fileName
|
||||
|
||||
# helper creazione hash files
|
||||
.hashBuild: &hashBuild
|
||||
- |
|
||||
# hashBuild per elaborato
|
||||
$Target = ".\$env:APP_NAME\Release\$env:APP_NAME.zip"
|
||||
echo "Request hash fo $Target"
|
||||
$MD5 = Get-FileHash $Target -Algorithm MD5
|
||||
$SHA1 = Get-FileHash $Target -Algorithm SHA1
|
||||
New-Item $Target".md5"
|
||||
New-Item $Target".sha1"
|
||||
$MD5.Hash | Set-Content -path $Target".md5"
|
||||
$SHA1.Hash | Set-Content -path $Target".sha1"
|
||||
|
||||
echo "Created HASH files for $Target"
|
||||
|
||||
# helper x send su NEXUS
|
||||
.nexusUpload: &nexusUpload
|
||||
- |
|
||||
Set-Alias mCurl C:\Windows\system32\curl.exe
|
||||
$currentDate = get-date -format yyMM;
|
||||
$currentTime = get-date -format ddHH;
|
||||
$VersNumb = $env:NEW_REL
|
||||
echo "Curr Version: $VersNumb"
|
||||
if($CI_COMMIT_BRANCH -eq "master")
|
||||
{
|
||||
$version = "stable"
|
||||
}
|
||||
else
|
||||
{
|
||||
$version = "unstable"
|
||||
}
|
||||
$File2Send = Get-ChildItem("$env:APP_NAME\Release\*")
|
||||
ForEach ($File in $File2Send) {
|
||||
$FileName = Split-path $File -leaf
|
||||
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/$FileName
|
||||
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/ARCHIVE/$VersNumb/$FileName
|
||||
}
|
||||
#mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\manifest.xml" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/manifest.xml
|
||||
#mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file "$env:PROJ_NAME\Resources\ChangeLog.html" https://nexus.steamware.net/repository/SWS/$env:NEXUS_PATH/$CI_COMMIT_BRANCH/LAST/ChangeLog.html
|
||||
|
||||
stages:
|
||||
- build
|
||||
- deploy
|
||||
- release
|
||||
|
||||
XPS:build:
|
||||
stage: build
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPS
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" $env:APP_NAME/$env:APP_NAME.csproj -target:Build /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||||
|
||||
XPST:build:
|
||||
stage: build
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPST
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" $env:APP_NAME/$env:APP_NAME.csproj -target:Build /p:Configuration=Release /p:Platform="Any CPU" /p:OutputPath=bin/ /verbosity:minimal /m'
|
||||
|
||||
XPS:IIS01:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPS
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPS:build"]
|
||||
|
||||
XPST:IIS01:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPST
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS01.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPST:build"]
|
||||
|
||||
XPS:IIS02:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPS
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPS:build"]
|
||||
|
||||
XPST:IIS02:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPST
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS02.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPST:build"]
|
||||
|
||||
XPS:IIS03:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPS
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS03.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPS:build"]
|
||||
|
||||
XPST:IIS03:deploy:
|
||||
stage: deploy
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPST
|
||||
except:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Publish /p:PublishProfile=IIS03.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
needs: ["XPST:build"]
|
||||
|
||||
XPS:File:release:
|
||||
stage: release
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPS
|
||||
only:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
- *manifest-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Package /p:PublishProfile=FileExport.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:PackageLocation=Release/$env:APP_NAME.zip /p:PackageAsSingleFile=True /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
- *hashBuild
|
||||
- *nexusUpload
|
||||
needs: ["XPS:build"]
|
||||
|
||||
XPST:File:release:
|
||||
stage: release
|
||||
tags:
|
||||
- win
|
||||
variables:
|
||||
APP_NAME: XPST
|
||||
only:
|
||||
refs:
|
||||
- main
|
||||
- master
|
||||
before_script:
|
||||
- *nuget-fix
|
||||
- '& "$env:NUGET_PATH" restore $env:SOL_NAME.sln -Verbosity quiet'
|
||||
- *version-fix
|
||||
- *manifest-fix
|
||||
script:
|
||||
- '& "$env:MSBUILD_PATH" /p:AspnetMergePath=$env:ASPNET_MERGE_PATH /p:DeployOnBuild=true /p:Targets=Package /p:PublishProfile=FileExport.pubxml /p:RunCodeAnalysis=false /p:Configuration=Release /p:username=jenkins /p:Password=viadante16 /p:AllowUntrustedCertificate=true /p:PackageLocation=Release/$env:APP_NAME.zip /p:PackageAsSingleFile=True /p:OutputPath=bin/ /verbosity:minimal $env:APP_NAME/$env:APP_NAME.csproj'
|
||||
- *hashBuild
|
||||
- *nexusUpload
|
||||
needs: ["XPST:build"]
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
<UseIISExpress>false</UseIISExpress>
|
||||
<IISExpressAnonymousAuthentication>disabled</IISExpressAnonymousAuthentication>
|
||||
<IISExpressWindowsAuthentication>enabled</IISExpressWindowsAuthentication>
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
<Use64BitIISExpress />
|
||||
<IISExpressSSLPort />
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<parameters>
|
||||
<setParameter name="IIS Web Application Name" value="Default Web Site/XPS" />
|
||||
<setParameter name="XPS_data.Properties.Settings.si_dt30ConnectionString-Web.config Connection String" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\SWING30\ldc\si_dt30.mdb;Persist Security Info=True" />
|
||||
<setParameter name="XPS_data.Properties.Settings.Equa_AnagraficaConnectionString-Web.config Connection String" value="Data Source=localhost;Initial Catalog=Equa_Anagrafica;Persist Security Info=True;User id=equa;Password=steamware" />
|
||||
<setParameter name="XPS_data.Properties.Settings.Equa_XPSConnectionString-Web.config Connection String" value="Data Source=localhost;Initial Catalog=Equa_XPS;Persist Security Info=True;User id=equa;Password=steamware" />
|
||||
</parameters>
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<sitemanifest>
|
||||
<IisApp path="C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\XPS\XPS\XPS\obj\EQUA\Package\PackageTmp" />
|
||||
<setAcl path="C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\XPS\XPS\XPS\obj\EQUA\Package\PackageTmp" setAclResourceType="Directory" />
|
||||
<setAcl path="C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\XPS\XPS\XPS\obj\EQUA\Package\PackageTmp" setAclUser="anonymousAuthenticationUser" setAclResourceType="Directory" />
|
||||
</sitemanifest>
|
||||
@@ -1,63 +0,0 @@
|
||||
|
||||
===========================
|
||||
Prerequisites :
|
||||
--------------------------
|
||||
To deploy this Web package, Web Deploy (msdeploy.exe) must be installed on the computer that runs the .cmd file. For information about how to install Web Deploy, see the following URL:
|
||||
http://go.microsoft.com/?linkid=9278654
|
||||
This batch file requires that the package file "XPS.zip" and optionally provided the parameters file "XPS.SetParameters.xml" in the same folder or destination folder by environment variable.
|
||||
|
||||
===========================
|
||||
Usage:
|
||||
--------------------------
|
||||
XPS.deploy.cmd [/T|/Y] [/M:ComputerName] [/U:UserName] [/P:Password] [/G:UseTempAgent] [Additional msdeploy.exe flags ...]
|
||||
|
||||
|
||||
===========================
|
||||
Required Flags:
|
||||
--------------------------
|
||||
/T:
|
||||
Calls msdeploy.exe with the "-whatif" flag, which simulates deployment. This does not deploy the package. Instead, it creates a report of what will happen when you actually deploy the package.
|
||||
/Y:
|
||||
Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or a destination server. Use /Y after you have verified the output that was generated by using the /T flag.
|
||||
|
||||
Note: Do not use /T and /Y in the same command.
|
||||
|
||||
===========================
|
||||
Optional Flags:
|
||||
--------------------------
|
||||
By Default, this script deploy on the current machine where this script is called with current user credential without agent service. Only pass the following value for advance scenario.
|
||||
|
||||
/M:<Destination server name or Service URL>
|
||||
If this flag is not specified, the package is installed on the computer where the command is run. The Service URL can be in the following format:
|
||||
https://<DestinationServer>:8172/MSDeploy.axd
|
||||
This format requires that IIS 7 be installed on the destination server and that IIS 7 Web Management Service(WMSvc) and Web Deployment Handler be set up.
|
||||
The service URL can also be in the following format:
|
||||
http://<DestinationServer>/MSDeployAgentService
|
||||
This format requires administrative rights on the destination server, and it requires that Web Deploy Remote Service (MsDepSvc) be installed on the destination server. IIS 7 does not have to be installed on the destination server.
|
||||
|
||||
/U:<UserName>
|
||||
/P:<Password>
|
||||
/G:<True | False>
|
||||
Specifies that the package is deployed by creating a temporary listener on the destination server. This requires no special installation on the destination server, but it requires you to be an administrator on that server. The default value of this flag is False.
|
||||
|
||||
/A:<Basic | NTLM>
|
||||
Specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic; otherwise, the default authentication type is NTLM.
|
||||
|
||||
/L
|
||||
Specifies that the package is deployed to local IISExpress user instance.
|
||||
|
||||
[Additional msdeploy.exe flags]
|
||||
The msdeploy.exe command supports additional flags. You can include any of these additional flags in the "$(ProjectName).Deploy.cmd" file, and the flags are passed through to msdeploy.exe during execution.
|
||||
Alternatively, you can specify additional flags by setting the "_MsDeployAdditionalFlags" environment variable. These settings are used by this batch file.
|
||||
Note: Any flag value that includes an equal sign (=) must be enclosed in double quotation marks, as shown in the following example, which will skip deploying the databases that are included in the package:
|
||||
"-skip:objectName=dbFullSql"
|
||||
|
||||
===========================
|
||||
Environment-Specific Settings:
|
||||
--------------------------
|
||||
|
||||
To customize application-specific settings for each deployment environment (for example, the IIS application name, the physical path, and any connection strings), edit the settings in the following file:
|
||||
"XPS.SetParameters.xml"
|
||||
===========================
|
||||
For more information on this deploy script visit: http://go.microsoft.com/fwlink/?LinkID=183544
|
||||
|
||||
@@ -1,311 +0,0 @@
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Copyright 2008 Microsoft Corporation. All rights reserved.
|
||||
@rem This is provided as sample to deploy the package using msdeploy.exe
|
||||
@rem For information about IIS Web Deploy technology,
|
||||
@rem please visit http://go.microsoft.com/?linkid=9278654
|
||||
@rem Note: This batch file assumes the package and setparametsrs.xml are in the same folder with this file
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@if %_echo%!==! echo off
|
||||
setlocal
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Please Make sure you have Web Deploy install in your machine.
|
||||
@rem Alternatively, you can explicit set the MsDeployPath to the location it is on your machine
|
||||
@rem set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\"
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem if user does not set MsDeployPath environment variable, we will try to retrieve it from registry.
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if "%MSDeployPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IIS Extensions\MSDeploy" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set MSDeployPath=%%j
|
||||
))))))
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
if not exist "%MSDeployPath%msdeploy.exe" (
|
||||
echo. msdeploy.exe is not found on this machine. Please install Web Deploy before execute the script.
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654
|
||||
goto :usage
|
||||
)
|
||||
|
||||
set RootPath=%~dp0
|
||||
if /I "%_DeploySetParametersFile%" == "" (
|
||||
set _DeploySetParametersFile=%RootPath%XPS.SetParameters.xml
|
||||
)
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
set _ArgTestDeploy=
|
||||
set _ArgDestinationType=auto
|
||||
set _ArgComputerNameWithQuote=""
|
||||
set _ArgUserNameWithQuote=""
|
||||
set _ArgPasswordWithQuote=""
|
||||
set _ArgEncryptPasswordWithQuote=""
|
||||
set _ArgIncludeAclsWithQuote="False"
|
||||
set _ArgAuthTypeWithQuote=""
|
||||
set _ArgtempAgentWithQuote=""
|
||||
set _ArgLocalIIS=
|
||||
set _ArgLocalIISVersion=
|
||||
set _HaveArgMSDeployAdditonalFlags=
|
||||
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Simple Parse the arguments
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:NextArgument
|
||||
set _ArgCurrent=%~1
|
||||
set _ArgFlagFirst=%_ArgCurrent:~0,1%
|
||||
set _ArgFlag=%_ArgCurrent:~0,3%
|
||||
set _ArgValue=%_ArgCurrent:~3%
|
||||
|
||||
if /I "%_ArgFlag%" == "" goto :GetStarted
|
||||
if /I "%_ArgFlag%" == "~0,3" goto :GetStarted
|
||||
if /I "%_ArgFlag%" == "/T" set _ArgTestDeploy=true&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/Y" set _ArgTestDeploy=false&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/L" set _ArgLocalIIS=true&goto :ArgumentOK
|
||||
|
||||
if /I "%_ArgFlag%" == "/M:" set _ArgComputerNameWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/U:" set _ArgUserNameWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/P:" set _ArgPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/E:" set _ArgEncryptPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/I:" set _ArgIncludeAclsWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/A:" set _ArgAuthTypeWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/G:" set _ArgtempAgentWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
|
||||
@rem Any addition flags, pass through to the msdeploy
|
||||
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
|
||||
goto :Assign_ArgMsDeployAdditionalFlags
|
||||
)
|
||||
set _ArgMsDeployAdditionalFlags=%_ArgMsDeployAdditionalFlags:&=^&% %_ArgCurrent:&=^&%
|
||||
set _HaveArgMSDeployAdditonalFlags=1
|
||||
goto :ArgumentOK
|
||||
|
||||
|
||||
:Assign_ArgMsDeployAdditionalFlags
|
||||
set _ArgMsDeployAdditionalFlags=%_ArgCurrent:&=^&%
|
||||
set _HaveArgMSDeployAdditonalFlags=1
|
||||
goto :ArgumentOK
|
||||
|
||||
:ArgumentOK
|
||||
shift
|
||||
goto :NextArgument
|
||||
|
||||
:GetStarted
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
if /I "%_ArgTestDeploy%" == "" goto :usage
|
||||
if /I "%_ArgDestinationType%" == "" goto :usage
|
||||
|
||||
set _Destination=%_ArgDestinationType%
|
||||
if not %_ArgComputerNameWithQuote% == "" set _Destination=%_Destination%,computerName=%_ArgComputerNameWithQuote%
|
||||
if not %_ArgUserNameWithQuote% == "" set _Destination=%_Destination%,userName=%_ArgUserNameWithQuote%
|
||||
if not %_ArgPasswordWithQuote% == "" set _Destination=%_Destination%,password=%_ArgPasswordWithQuote%
|
||||
if not %_ArgAuthTypeWithQuote% == "" set _Destination=%_Destination%,authtype=%_ArgAuthTypeWithQuote%
|
||||
if not %_ArgEncryptPasswordWithQuote% == "" set _Destination=%_Destination%,encryptPassword=%_ArgEncryptPasswordWithQuote%
|
||||
if not %_ArgIncludeAclsWithQuote% == "" set _Destination=%_Destination%,includeAcls=%_ArgIncludeAclsWithQuote%
|
||||
if not %_ArgtempAgentWithQuote% == "" set _Destination=%_Destination%,tempAgent=%_ArgtempAgentWithQuote%
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem add -whatif when -T is specified
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if /I "%_ArgTestDeploy%" NEQ "false" (
|
||||
set _MsDeployAdditionalFlags=-whatif %_MsDeployAdditionalFlags%
|
||||
)
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem add flags for IISExpress when -L is specified
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
|
||||
if /I "%_ArgLocalIIS%" == "true" (
|
||||
call :SetIISExpressArguments
|
||||
)
|
||||
if /I "%_ArgLocalIIS%" == "true" (
|
||||
if not exist "%IISExpressPath%%IISExpressManifest%" (
|
||||
echo. IISExpress is not found on this machine. Please install through Web Platform Installer before execute the script.
|
||||
echo. or remove /L flag
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654
|
||||
goto :usage
|
||||
)
|
||||
if not exist "%IISExpressUserProfileDirectory%" (
|
||||
echo. %IISExpressUserProfileDirectory% is not exists
|
||||
echo. IISExpress is found on the machine. But the user have run IISExpress at least once.
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654 for detail
|
||||
goto :usage
|
||||
)
|
||||
|
||||
set _MsDeployAdditionalFlags=%_MsDeployAdditionalFlags% -appHostConfigDir:%IISExpressUserProfileDirectory% -WebServerDir:"%IISExpressPath%" -webServerManifest:"%IISExpressManifest%"
|
||||
)
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem check the existence of the package file
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if not exist "%RootPath%XPS.zip" (
|
||||
echo "%RootPath%XPS.zip" does not exist.
|
||||
echo This batch file relies on this deploy source file^(s^) in the same folder.
|
||||
goto :usage
|
||||
)
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Execute msdeploy.exe command line
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
call :CheckParameterFile
|
||||
echo. Start executing msdeploy.exe
|
||||
echo -------------------------------------------------------
|
||||
if not exist "%_DeploySetParametersFile%" (
|
||||
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%XPS.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -skip:objectname='dirPath',absolutepath='obj\\EQUA\\Package\\PackageTmp\\App_Data$' -skip:objectname='dirPath',absolutepath='Default\ Web\ Site/XPS\\App_Data$'
|
||||
) else (
|
||||
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%XPS.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -skip:objectname='dirPath',absolutepath='obj\\EQUA\\Package\\PackageTmp\\App_Data$' -skip:objectname='dirPath',absolutepath='Default\ Web\ Site/XPS\\App_Data$' -setParamFile:"%_DeploySetParametersFile%"
|
||||
)
|
||||
|
||||
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
|
||||
goto :MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
)
|
||||
goto :MSDeployWithArgMsDeployAdditionalFlag
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem MSDeployWithArgMsDeployAdditionalFlag
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:MSDeployWithArgMsDeployAdditionalFlag
|
||||
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
|
||||
%_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags%
|
||||
%_MSDeployCommandline% %_MsDeployAdditionalFlags%
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Find and set IISExpress argument.
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:SetIISExpressArguments
|
||||
|
||||
if "%IISExpressPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set IISExpressPath=%%j
|
||||
))))))
|
||||
|
||||
if "%IISExpressPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set IISExpressPath=%%j
|
||||
))))))
|
||||
|
||||
if "%PersonalDocumentFolder%" == "" (
|
||||
for /F "usebackq tokens=2*" %%i in (`reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal`) do (
|
||||
set PersonalDocumentFolder=%%j
|
||||
))
|
||||
|
||||
if "%IISExpressManifest%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
|
||||
if /I "%%h" == "Manifest" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
set IISExpressManifest=%%j
|
||||
)))))
|
||||
|
||||
if "%IISExpressManifest%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
|
||||
if /I "%%h" == "Manifest" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
set IISExpressManifest=%%j
|
||||
)))))
|
||||
|
||||
set IISExpressUserProfileDirectory="%PersonalDocumentFolder%\IISExpress\config"
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem CheckParameterFile -- check if the package's setparamters.xml exists or not
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:CheckParameterFile
|
||||
if exist "%_DeploySetParametersFile%" (
|
||||
echo SetParameters from:
|
||||
echo "%_DeploySetParametersFile%"
|
||||
echo You can change IIS Application Name, Physical path, connectionString
|
||||
echo or other deploy parameters in the above file.
|
||||
) else (
|
||||
echo SetParamterFiles does not exist in package location.
|
||||
echo Use package embedded defaultValue to deploy.
|
||||
)
|
||||
echo -------------------------------------------------------
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Usage
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:usage
|
||||
echo =========================================================
|
||||
if not exist "%RootPath%XPS.deploy-readme.txt" (
|
||||
echo Usage:%~nx0 [/T^|/Y] [/M:ComputerName] [/U:userName] [/P:password] [/G:tempAgent] [additional msdeploy flags ...]
|
||||
echo Required flags:
|
||||
echo /T Calls msdeploy.exe with the "-whatif" flag, which simulates deployment.
|
||||
echo /Y Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or destination server
|
||||
echo Optional flags:
|
||||
echo. By Default, this script deploy to the current machine where this script is invoked which will use current user credential without tempAgent.
|
||||
echo. Only pass these arguments when in advance scenario.
|
||||
echo /M: Msdeploy destination name of remote computer or proxy-URL. Default is local.
|
||||
echo /U: Msdeploy destination user name.
|
||||
echo /P: Msdeploy destination password.
|
||||
echo /G: Msdeploy destination tempAgent. True or False. Default is false.
|
||||
echo /A: specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic
|
||||
otherwise, the default authentication type is NTLM.
|
||||
echo /L: Deploy to Local IISExpress User Instance.
|
||||
|
||||
echo.[additional msdeploy flags]: note: " is required for passing = through command line.
|
||||
echo "-skip:objectName=setAcl" "-skip:objectName=dbFullSql"
|
||||
echo.Alternative environment variable _MsDeployAdditionalFlags is also honored.
|
||||
echo.
|
||||
echo. Please make sure MSDeploy is installed in the box http://go.microsoft.com/?linkid=9278654
|
||||
echo.
|
||||
echo In addition, you can change IIS Application Name, Physical path,
|
||||
echo connectionString and other deploy parameters in the following file:
|
||||
echo "%_DeploySetParametersFile%"
|
||||
echo.
|
||||
echo For more information about this batch file, visit http://go.microsoft.com/fwlink/?LinkID=183544
|
||||
) else (
|
||||
start notepad "%RootPath%XPS.deploy-readme.txt"
|
||||
)
|
||||
echo =========================================================
|
||||
goto :eof
|
||||
Binary file not shown.
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<parameters>
|
||||
<setParameter name="IIS Web Application Name" value="Sito Web Predefinito/XPST" />
|
||||
<setParameter name="XPS_data.Properties.Settings.si_dt30ConnectionString-Web.config Connection String" value="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\SWING30\ldc\si_dt30.mdb;Persist Security Info=True" />
|
||||
<setParameter name="XPS_data.Properties.Settings.Equa_AnagraficaConnectionString-Web.config Connection String" value="Data Source=localhost;Initial Catalog=Equa_Anagrafica;Persist Security Info=True;User id=equa;Password=steamware" />
|
||||
<setParameter name="XPS_data.Properties.Settings.Equa_XPSConnectionString-Web.config Connection String" value="Data Source=localhost;Initial Catalog=Equa_XPS;Persist Security Info=True;User id=equa;Password=steamware" />
|
||||
</parameters>
|
||||
@@ -1,6 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<sitemanifest>
|
||||
<IisApp path="C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\XPS\project\XPST\obj\Release\Package\PackageTmp" managedRuntimeVersion="v4.0" />
|
||||
<setAcl path="C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\XPS\project\XPST\obj\Release\Package\PackageTmp" setAclResourceType="Directory" />
|
||||
<setAcl path="C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\XPS\project\XPST\obj\Release\Package\PackageTmp" setAclUser="anonymousAuthenticationUser" setAclResourceType="Directory" />
|
||||
</sitemanifest>
|
||||
@@ -1,63 +0,0 @@
|
||||
|
||||
===========================
|
||||
Prerequisites :
|
||||
--------------------------
|
||||
To deploy this Web package, Web Deploy (msdeploy.exe) must be installed on the computer that runs the .cmd file. For information about how to install Web Deploy, see the following URL:
|
||||
http://go.microsoft.com/?linkid=9278654
|
||||
This batch file requires that the package file "XPST.zip" and optionally provided the parameters file "XPST.SetParameters.xml" in the same folder or destination folder by environment variable.
|
||||
|
||||
===========================
|
||||
Usage:
|
||||
--------------------------
|
||||
XPST.deploy.cmd [/T|/Y] [/M:ComputerName] [/U:UserName] [/P:Password] [/G:UseTempAgent] [Additional msdeploy.exe flags ...]
|
||||
|
||||
|
||||
===========================
|
||||
Required Flags:
|
||||
--------------------------
|
||||
/T:
|
||||
Calls msdeploy.exe with the "-whatif" flag, which simulates deployment. This does not deploy the package. Instead, it creates a report of what will happen when you actually deploy the package.
|
||||
/Y:
|
||||
Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or a destination server. Use /Y after you have verified the output that was generated by using the /T flag.
|
||||
|
||||
Note: Do not use /T and /Y in the same command.
|
||||
|
||||
===========================
|
||||
Optional Flags:
|
||||
--------------------------
|
||||
By Default, this script deploy on the current machine where this script is called with current user credential without agent service. Only pass the following value for advance scenario.
|
||||
|
||||
/M:<Destination server name or Service URL>
|
||||
If this flag is not specified, the package is installed on the computer where the command is run. The Service URL can be in the following format:
|
||||
https://<DestinationServer>:8172/MSDeploy.axd
|
||||
This format requires that IIS 7 be installed on the destination server and that IIS 7 Web Management Service(WMSvc) and Web Deployment Handler be set up.
|
||||
The service URL can also be in the following format:
|
||||
http://<DestinationServer>/MSDeployAgentService
|
||||
This format requires administrative rights on the destination server, and it requires that Web Deploy Remote Service (MsDepSvc) be installed on the destination server. IIS 7 does not have to be installed on the destination server.
|
||||
|
||||
/U:<UserName>
|
||||
/P:<Password>
|
||||
/G:<True | False>
|
||||
Specifies that the package is deployed by creating a temporary listener on the destination server. This requires no special installation on the destination server, but it requires you to be an administrator on that server. The default value of this flag is False.
|
||||
|
||||
/A:<Basic | NTLM>
|
||||
Specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic; otherwise, the default authentication type is NTLM.
|
||||
|
||||
/L
|
||||
Specifies that the package is deployed to local IISExpress user instance.
|
||||
|
||||
[Additional msdeploy.exe flags]
|
||||
The msdeploy.exe command supports additional flags. You can include any of these additional flags in the "$(ProjectName).Deploy.cmd" file, and the flags are passed through to msdeploy.exe during execution.
|
||||
Alternatively, you can specify additional flags by setting the "_MsDeployAdditionalFlags" environment variable. These settings are used by this batch file.
|
||||
Note: Any flag value that includes an equal sign (=) must be enclosed in double quotation marks, as shown in the following example, which will skip deploying the databases that are included in the package:
|
||||
"-skip:objectName=dbFullSql"
|
||||
|
||||
===========================
|
||||
Environment-Specific Settings:
|
||||
--------------------------
|
||||
|
||||
To customize application-specific settings for each deployment environment (for example, the IIS application name, the physical path, and any connection strings), edit the settings in the following file:
|
||||
"XPST.SetParameters.xml"
|
||||
===========================
|
||||
For more information on this deploy script visit: http://go.microsoft.com/fwlink/?LinkID=183544
|
||||
|
||||
@@ -1,311 +0,0 @@
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Copyright 2008 Microsoft Corporation. All rights reserved.
|
||||
@rem This is provided as sample to deploy the package using msdeploy.exe
|
||||
@rem For information about IIS Web Deploy technology,
|
||||
@rem please visit http://go.microsoft.com/?linkid=9278654
|
||||
@rem Note: This batch file assumes the package and setparametsrs.xml are in the same folder with this file
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@if %_echo%!==! echo off
|
||||
setlocal
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Please Make sure you have Web Deploy install in your machine.
|
||||
@rem Alternatively, you can explicit set the MsDeployPath to the location it is on your machine
|
||||
@rem set MSDeployPath="C:\Program Files (x86)\IIS\Microsoft Web Deploy V3\"
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem if user does not set MsDeployPath environment variable, we will try to retrieve it from registry.
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if "%MSDeployPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IIS Extensions\MSDeploy" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set MSDeployPath=%%j
|
||||
))))))
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
if not exist "%MSDeployPath%msdeploy.exe" (
|
||||
echo. msdeploy.exe is not found on this machine. Please install Web Deploy before execute the script.
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654
|
||||
goto :usage
|
||||
)
|
||||
|
||||
set RootPath=%~dp0
|
||||
if /I "%_DeploySetParametersFile%" == "" (
|
||||
set _DeploySetParametersFile=%RootPath%XPST.SetParameters.xml
|
||||
)
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
set _ArgTestDeploy=
|
||||
set _ArgDestinationType=auto
|
||||
set _ArgComputerNameWithQuote=""
|
||||
set _ArgUserNameWithQuote=""
|
||||
set _ArgPasswordWithQuote=""
|
||||
set _ArgEncryptPasswordWithQuote=""
|
||||
set _ArgIncludeAclsWithQuote="False"
|
||||
set _ArgAuthTypeWithQuote=""
|
||||
set _ArgtempAgentWithQuote=""
|
||||
set _ArgLocalIIS=
|
||||
set _ArgLocalIISVersion=
|
||||
set _HaveArgMSDeployAdditonalFlags=
|
||||
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Simple Parse the arguments
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:NextArgument
|
||||
set _ArgCurrent=%~1
|
||||
set _ArgFlagFirst=%_ArgCurrent:~0,1%
|
||||
set _ArgFlag=%_ArgCurrent:~0,3%
|
||||
set _ArgValue=%_ArgCurrent:~3%
|
||||
|
||||
if /I "%_ArgFlag%" == "" goto :GetStarted
|
||||
if /I "%_ArgFlag%" == "~0,3" goto :GetStarted
|
||||
if /I "%_ArgFlag%" == "/T" set _ArgTestDeploy=true&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/Y" set _ArgTestDeploy=false&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/L" set _ArgLocalIIS=true&goto :ArgumentOK
|
||||
|
||||
if /I "%_ArgFlag%" == "/M:" set _ArgComputerNameWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/U:" set _ArgUserNameWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/P:" set _ArgPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/E:" set _ArgEncryptPasswordWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/I:" set _ArgIncludeAclsWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/A:" set _ArgAuthTypeWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
if /I "%_ArgFlag%" == "/G:" set _ArgtempAgentWithQuote="%_ArgValue%"&goto :ArgumentOK
|
||||
|
||||
@rem Any addition flags, pass through to the msdeploy
|
||||
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
|
||||
goto :Assign_ArgMsDeployAdditionalFlags
|
||||
)
|
||||
set _ArgMsDeployAdditionalFlags=%_ArgMsDeployAdditionalFlags:&=^&% %_ArgCurrent:&=^&%
|
||||
set _HaveArgMSDeployAdditonalFlags=1
|
||||
goto :ArgumentOK
|
||||
|
||||
|
||||
:Assign_ArgMsDeployAdditionalFlags
|
||||
set _ArgMsDeployAdditionalFlags=%_ArgCurrent:&=^&%
|
||||
set _HaveArgMSDeployAdditonalFlags=1
|
||||
goto :ArgumentOK
|
||||
|
||||
:ArgumentOK
|
||||
shift
|
||||
goto :NextArgument
|
||||
|
||||
:GetStarted
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
if /I "%_ArgTestDeploy%" == "" goto :usage
|
||||
if /I "%_ArgDestinationType%" == "" goto :usage
|
||||
|
||||
set _Destination=%_ArgDestinationType%
|
||||
if not %_ArgComputerNameWithQuote% == "" set _Destination=%_Destination%,computerName=%_ArgComputerNameWithQuote%
|
||||
if not %_ArgUserNameWithQuote% == "" set _Destination=%_Destination%,userName=%_ArgUserNameWithQuote%
|
||||
if not %_ArgPasswordWithQuote% == "" set _Destination=%_Destination%,password=%_ArgPasswordWithQuote%
|
||||
if not %_ArgAuthTypeWithQuote% == "" set _Destination=%_Destination%,authtype=%_ArgAuthTypeWithQuote%
|
||||
if not %_ArgEncryptPasswordWithQuote% == "" set _Destination=%_Destination%,encryptPassword=%_ArgEncryptPasswordWithQuote%
|
||||
if not %_ArgIncludeAclsWithQuote% == "" set _Destination=%_Destination%,includeAcls=%_ArgIncludeAclsWithQuote%
|
||||
if not %_ArgtempAgentWithQuote% == "" set _Destination=%_Destination%,tempAgent=%_ArgtempAgentWithQuote%
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem add -whatif when -T is specified
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if /I "%_ArgTestDeploy%" NEQ "false" (
|
||||
set _MsDeployAdditionalFlags=-whatif %_MsDeployAdditionalFlags%
|
||||
)
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem add flags for IISExpress when -L is specified
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
|
||||
if /I "%_ArgLocalIIS%" == "true" (
|
||||
call :SetIISExpressArguments
|
||||
)
|
||||
if /I "%_ArgLocalIIS%" == "true" (
|
||||
if not exist "%IISExpressPath%%IISExpressManifest%" (
|
||||
echo. IISExpress is not found on this machine. Please install through Web Platform Installer before execute the script.
|
||||
echo. or remove /L flag
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654
|
||||
goto :usage
|
||||
)
|
||||
if not exist "%IISExpressUserProfileDirectory%" (
|
||||
echo. %IISExpressUserProfileDirectory% is not exists
|
||||
echo. IISExpress is found on the machine. But the user have run IISExpress at least once.
|
||||
echo. Please visit http://go.microsoft.com/?linkid=9278654 for detail
|
||||
goto :usage
|
||||
)
|
||||
|
||||
set _MsDeployAdditionalFlags=%_MsDeployAdditionalFlags% -appHostConfigDir:%IISExpressUserProfileDirectory% -WebServerDir:"%IISExpressPath%" -webServerManifest:"%IISExpressManifest%"
|
||||
)
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem check the existence of the package file
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
if not exist "%RootPath%XPST.zip" (
|
||||
echo "%RootPath%XPST.zip" does not exist.
|
||||
echo This batch file relies on this deploy source file^(s^) in the same folder.
|
||||
goto :usage
|
||||
)
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Execute msdeploy.exe command line
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
call :CheckParameterFile
|
||||
echo. Start executing msdeploy.exe
|
||||
echo -------------------------------------------------------
|
||||
if not exist "%_DeploySetParametersFile%" (
|
||||
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%XPST.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -skip:objectname='dirPath',absolutepath='obj\\Release\\Package\\PackageTmp\\App_Data$' -skip:objectname='dirPath',absolutepath='Sito\ Web\ Predefinito/XPST\\App_Data$'
|
||||
) else (
|
||||
set _MSDeployCommandline="%MSDeployPath%msdeploy.exe" -source:package='%RootPath%XPST.zip' -dest:%_Destination% -verb:sync -disableLink:AppPoolExtension -disableLink:ContentExtension -disableLink:CertificateExtension -skip:objectname='dirPath',absolutepath='obj\\Release\\Package\\PackageTmp\\App_Data$' -skip:objectname='dirPath',absolutepath='Sito\ Web\ Predefinito/XPST\\App_Data$' -setParamFile:"%_DeploySetParametersFile%"
|
||||
)
|
||||
|
||||
if "%_HaveArgMSDeployAdditonalFlags%" == "" (
|
||||
goto :MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
)
|
||||
goto :MSDeployWithArgMsDeployAdditionalFlag
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem MSDeployWithArgMsDeployAdditionalFlag
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:MSDeployWithArgMsDeployAdditionalFlag
|
||||
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
|
||||
%_MSDeployCommandline% %_MsDeployAdditionalFlags% %_ArgMsDeployAdditionalFlags:&=^&%
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:MSDeployWithOutArgMsDeployAdditionalFlag
|
||||
echo. %_MSDeployCommandline% %_MsDeployAdditionalFlags%
|
||||
%_MSDeployCommandline% %_MsDeployAdditionalFlags%
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Find and set IISExpress argument.
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:SetIISExpressArguments
|
||||
|
||||
if "%IISExpressPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set IISExpressPath=%%j
|
||||
))))))
|
||||
|
||||
if "%IISExpressPath%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "InstallPath"`) do (
|
||||
if /I "%%h" == "InstallPath" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
if "%%~dpj" == "%%j" (
|
||||
set IISExpressPath=%%j
|
||||
))))))
|
||||
|
||||
if "%PersonalDocumentFolder%" == "" (
|
||||
for /F "usebackq tokens=2*" %%i in (`reg query "HKCU\SOFTWARE\Microsoft\Windows\CurrentVersion\Explorer\Shell Folders" /v Personal`) do (
|
||||
set PersonalDocumentFolder=%%j
|
||||
))
|
||||
|
||||
if "%IISExpressManifest%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
|
||||
if /I "%%h" == "Manifest" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
set IISExpressManifest=%%j
|
||||
)))))
|
||||
|
||||
if "%IISExpressManifest%" == "" (
|
||||
for /F "usebackq tokens=1,2,*" %%h in (`reg query "HKLM\SOFTWARE\Wow6432Node\Microsoft\IISExpress" /s ^| findstr -i "Manifest"`) do (
|
||||
if /I "%%h" == "Manifest" (
|
||||
if /I "%%i" == "REG_SZ" (
|
||||
if not "%%j" == "" (
|
||||
set IISExpressManifest=%%j
|
||||
)))))
|
||||
|
||||
set IISExpressUserProfileDirectory="%PersonalDocumentFolder%\IISExpress\config"
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
@rem ---------------------------------------------
|
||||
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem CheckParameterFile -- check if the package's setparamters.xml exists or not
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:CheckParameterFile
|
||||
if exist "%_DeploySetParametersFile%" (
|
||||
echo SetParameters from:
|
||||
echo "%_DeploySetParametersFile%"
|
||||
echo You can change IIS Application Name, Physical path, connectionString
|
||||
echo or other deploy parameters in the above file.
|
||||
) else (
|
||||
echo SetParamterFiles does not exist in package location.
|
||||
echo Use package embedded defaultValue to deploy.
|
||||
)
|
||||
echo -------------------------------------------------------
|
||||
goto :eof
|
||||
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
@rem Usage
|
||||
@rem ---------------------------------------------------------------------------------
|
||||
:usage
|
||||
echo =========================================================
|
||||
if not exist "%RootPath%XPST.deploy-readme.txt" (
|
||||
echo Usage:%~nx0 [/T^|/Y] [/M:ComputerName] [/U:userName] [/P:password] [/G:tempAgent] [additional msdeploy flags ...]
|
||||
echo Required flags:
|
||||
echo /T Calls msdeploy.exe with the "-whatif" flag, which simulates deployment.
|
||||
echo /Y Calls msdeploy.exe without the "-whatif" flag, which deploys the package to the current machine or destination server
|
||||
echo Optional flags:
|
||||
echo. By Default, this script deploy to the current machine where this script is invoked which will use current user credential without tempAgent.
|
||||
echo. Only pass these arguments when in advance scenario.
|
||||
echo /M: Msdeploy destination name of remote computer or proxy-URL. Default is local.
|
||||
echo /U: Msdeploy destination user name.
|
||||
echo /P: Msdeploy destination password.
|
||||
echo /G: Msdeploy destination tempAgent. True or False. Default is false.
|
||||
echo /A: specifies the type of authentication to be used. The possible values are NTLM and Basic. If the wmsvc provider setting is specified, the default authentication type is Basic
|
||||
otherwise, the default authentication type is NTLM.
|
||||
echo /L: Deploy to Local IISExpress User Instance.
|
||||
|
||||
echo.[additional msdeploy flags]: note: " is required for passing = through command line.
|
||||
echo "-skip:objectName=setAcl" "-skip:objectName=dbFullSql"
|
||||
echo.Alternative environment variable _MsDeployAdditionalFlags is also honored.
|
||||
echo.
|
||||
echo. Please make sure MSDeploy is installed in the box http://go.microsoft.com/?linkid=9278654
|
||||
echo.
|
||||
echo In addition, you can change IIS Application Name, Physical path,
|
||||
echo connectionString and other deploy parameters in the following file:
|
||||
echo "%_DeploySetParametersFile%"
|
||||
echo.
|
||||
echo For more information about this batch file, visit http://go.microsoft.com/fwlink/?LinkID=183544
|
||||
) else (
|
||||
start notepad "%RootPath%XPST.deploy-readme.txt"
|
||||
)
|
||||
echo =========================================================
|
||||
goto :eof
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 3.3 KiB After Width: | Height: | Size: 3.3 KiB |
@@ -0,0 +1,7 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>1.0.0.0</version>
|
||||
<url>https://nexus.steamware.net/repository/SWS/{{PACKNAME}}/{{BRANCHNAME}}/LAST/{{PACKNAME}}.zip</url>
|
||||
<changelog>https://nexus.steamware.net/repository/SWS/{{PACKNAME}}/{{BRANCHNAME}}/LAST/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
</item>
|
||||
@@ -57,11 +57,6 @@
|
||||
<ItemGroup>
|
||||
<Service Include="{508349B6-6B84-4DF5-91F0-309BEEBAD82D}" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="ChangeLog.html" />
|
||||
<Content Include="logoSteamware.png" />
|
||||
<Content Include="manifest.xml" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- 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.
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<item>
|
||||
<version>1.0.0.0</version>
|
||||
<url>http://seriate.steamware.net:8083/SWS/{{PACKNAME}}/{{BRANCHNAME}}/{{PACKNAME}}.zip</url>
|
||||
<changelog>http://seriate.steamware.net:8083/SWS/{{PACKNAME}}/{{BRANCHNAME}}/ChangeLog.html</changelog>
|
||||
<mandatory>false</mandatory>
|
||||
</item>
|
||||
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<TimeStampOfAssociatedLegacyPublishXmlFile />
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
+21
-10
@@ -6,11 +6,11 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<WebPublishMethod>Package</WebPublishMethod>
|
||||
<LastUsedBuildConfiguration>EQUA</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>.NET</LastUsedPlatform>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<DesktopBuildPackageLocation>C:\Users\samuele.STEAMWAREWIN\Documents\VisualStudioProjects\XPS\XPS\Release Clienti\XPS.zip</DesktopBuildPackageLocation>
|
||||
<ExcludeApp_Data>true</ExcludeApp_Data>
|
||||
<DesktopBuildPackageLocation>XPS/Release/XPS.zip</DesktopBuildPackageLocation>
|
||||
<PackageAsSingleFile>true</PackageAsSingleFile>
|
||||
<DeployIisAppPath>Default Web Site/XPS</DeployIisAppPath>
|
||||
<PublishDatabaseSettings>
|
||||
@@ -22,7 +22,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_AnagraficaConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_XPSConnectionString" Order="2" Enabled="False">
|
||||
@@ -32,15 +32,25 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_XPSConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.si_dt30ConnectionString" Order="3" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.si_dt30ConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
</Objects>
|
||||
</PublishDatabaseSettings>
|
||||
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
|
||||
<PrecompileBeforePublish>True</PrecompileBeforePublish>
|
||||
<EnableUpdateable>True</EnableUpdateable>
|
||||
<DebugSymbols>False</DebugSymbols>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<PrecompileBeforePublish>true</PrecompileBeforePublish>
|
||||
<EnableUpdateable>true</EnableUpdateable>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
@@ -50,5 +60,6 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.Equa_XPSConnectionString-Web.config Connection String">
|
||||
<UpdateDestWebConfig>False</UpdateDestWebConfig>
|
||||
</MSDeployParameterValue>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.si_dt30ConnectionString-Web.config Connection String" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -10,7 +10,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS01:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<MSDeployServiceURL>https://IIS01.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPS</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
|
||||
|
||||
@@ -10,7 +10,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS02:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<MSDeployServiceURL>https://IIS02.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPS</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
|
||||
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<WebPublishMethod>MSDeploy</WebPublishMethod>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>true</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS03.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPS</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>false</SkipExtraFilesOnServer>
|
||||
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
|
||||
<EnableMSDeployBackup>true</EnableMSDeployBackup>
|
||||
<UserName>jenkins</UserName>
|
||||
<_SavePWD>true</_SavePWD>
|
||||
<PublishDatabaseSettings>
|
||||
<Objects xmlns="">
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_AnagraficaConnectionString" Order="1" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_AnagraficaConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_XPSConnectionString" Order="2" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_XPSConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.si_dt30ConnectionString" Order="3" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.si_dt30ConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
</Objects>
|
||||
</PublishDatabaseSettings>
|
||||
<ADUsesOwinOrOpenIdConnect>False</ADUsesOwinOrOpenIdConnect>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<PrecompileBeforePublish>true</PrecompileBeforePublish>
|
||||
<EnableUpdateable>true</EnableUpdateable>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
||||
<EnableMsDeployAppOffline>false</EnableMsDeployAppOffline>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.Equa_AnagraficaConnectionString-Web.config Connection String">
|
||||
<UpdateDestWebConfig>False</UpdateDestWebConfig>
|
||||
</MSDeployParameterValue>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.Equa_XPSConnectionString-Web.config Connection String">
|
||||
<UpdateDestWebConfig>False</UpdateDestWebConfig>
|
||||
</MSDeployParameterValue>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.si_dt30ConnectionString-Web.config Connection String" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||
by editing this MSBuild file. In order to learn more about this please visit https://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project>
|
||||
<PropertyGroup>
|
||||
<TimeStampOfAssociatedLegacyPublishXmlFile />
|
||||
<EncryptedPassword>AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAw3dMMgC4FUywyOTV2xvCRgAAAAACAAAAAAADZgAAwAAAABAAAAB/eO3M4sb2TzvpLVgl87oWAAAAAASAAACgAAAAEAAAANPQERg/c4LaeD+AghN8V+QYAAAA8hLbWtXKZhtfCUgQ4/X47sXmS5TJoULHFAAAAJX2+reFF6ckQpx3CjxbE13dee5z</EncryptedPassword>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
+2
-2
@@ -107,8 +107,8 @@
|
||||
<add key="AuthCookie" value="XPS" />
|
||||
<add key="enableCookie" value="true" />
|
||||
<add key="cookieDayExp" value="365" />
|
||||
<add key="authSite" value="http://IIS02/Equa_Auth/" />
|
||||
<!--<add key="currSite" value="http://IIS02/XPS/"/>-->
|
||||
<add key="authSite" value="http://IIS02.egalware.com/Equa_Auth/" />
|
||||
<!--<add key="currSite" value="http://IIS02.egalware.com/XPS/"/>-->
|
||||
<add key="currSite" value="http://localhost:10840/" />
|
||||
<!--gestione pagina-->
|
||||
<add key="menuCondensed" value="false" />
|
||||
|
||||
+2
-1
@@ -552,6 +552,7 @@
|
||||
<Content Include="Scripts\bootstrap.js.map" />
|
||||
<Content Include="Scripts\bootstrap.bundle.min.js.map" />
|
||||
<Content Include="Scripts\bootstrap.bundle.js.map" />
|
||||
<None Include="Properties\PublishProfiles\IIS03.pubxml" />
|
||||
<None Include="Scripts\jquery-3.4.1.intellisense.js" />
|
||||
<Content Include="Scripts\jquery-3.4.1.js" />
|
||||
<Content Include="Scripts\jquery-3.4.1.min.js" />
|
||||
@@ -1217,7 +1218,7 @@
|
||||
</Content>
|
||||
<Content Include="logs\ViewStates\PlaceHolder.file" />
|
||||
<None Include="Properties\PublishProfiles\IIS02.pubxml" />
|
||||
<None Include="Properties\PublishProfiles\EQUA.pubxml" />
|
||||
<None Include="Properties\PublishProfiles\FileExport.pubxml" />
|
||||
<Content Include="Site.Mobile.Master" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
|
||||
+2
-2
@@ -2,7 +2,7 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<NameOfLastUsedPublishProfile>IIS02</NameOfLastUsedPublishProfile>
|
||||
<NameOfLastUsedPublishProfile>C:\Users\samuele.steamw\source\XPS\XPS\Properties\PublishProfiles\FileExport.pubxml</NameOfLastUsedPublishProfile>
|
||||
<UseIISExpress>false</UseIISExpress>
|
||||
<IISExpressAnonymousAuthentication>disabled</IISExpressAnonymousAuthentication>
|
||||
<IISExpressWindowsAuthentication>enabled</IISExpressWindowsAuthentication>
|
||||
@@ -10,7 +10,7 @@
|
||||
<IISExpressSSLPort />
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
<UseGlobalApplicationHostFile />
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
||||
@@ -1,10 +0,0 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<TimeStampOfAssociatedLegacyPublishXmlFile />
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
+7
-7
@@ -9,10 +9,10 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<DesktopBuildPackageLocation>C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2010\Projects\XPS\project\Release Clienti\XPST.zip</DesktopBuildPackageLocation>
|
||||
<ExcludeApp_Data>true</ExcludeApp_Data>
|
||||
<DesktopBuildPackageLocation>XPST/Release/XPST.zip</DesktopBuildPackageLocation>
|
||||
<PackageAsSingleFile>true</PackageAsSingleFile>
|
||||
<DeployIisAppPath>Sito Web Predefinito/XPST</DeployIisAppPath>
|
||||
<DeployIisAppPath>Default Web Site/XPST</DeployIisAppPath>
|
||||
<PublishDatabaseSettings>
|
||||
<Objects xmlns="">
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_AnagraficaConnectionString" Order="1" Enabled="False">
|
||||
@@ -47,10 +47,10 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
</ObjectGroup>
|
||||
</Objects>
|
||||
</PublishDatabaseSettings>
|
||||
<LaunchSiteAfterPublish>True</LaunchSiteAfterPublish>
|
||||
<PrecompileBeforePublish>True</PrecompileBeforePublish>
|
||||
<EnableUpdateable>True</EnableUpdateable>
|
||||
<DebugSymbols>False</DebugSymbols>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<PrecompileBeforePublish>true</PrecompileBeforePublish>
|
||||
<EnableUpdateable>true</EnableUpdateable>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
@@ -10,7 +10,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS01:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<MSDeployServiceURL>https://IIS01.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPST</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
|
||||
|
||||
@@ -10,7 +10,7 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>True</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS02:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<MSDeployServiceURL>https://IIS02.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPST</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>False</SkipExtraFilesOnServer>
|
||||
|
||||
@@ -5,7 +5,8 @@ by editing this MSBuild file. In order to learn more about this please visit htt
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<TimeStampOfAssociatedLegacyPublishXmlFile>2012-12-21T10:14:32.4948710+01:00</TimeStampOfAssociatedLegacyPublishXmlFile>
|
||||
<TimeStampOfAssociatedLegacyPublishXmlFile>
|
||||
</TimeStampOfAssociatedLegacyPublishXmlFile>
|
||||
<EncryptedPassword>AQAAANCMnd8BFdERjHoAwE/Cl+sBAAAAgepbcUjBsk6qZB2yYjIK1QAAAAACAAAAAAADZgAAwAAAABAAAABN4RwDSavo32/Gtfqf9jCLAAAAAASAAACgAAAAEAAAAIcgS3Q/xtyYdikT3SZWw5IYAAAAH5FIDK3h0USKi0yl3F4EBsBxBR1LVfRoFAAAAMaGv7QzR8tVIJRhQum7VWIUZJDV</EncryptedPassword>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@@ -0,0 +1,72 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<!--
|
||||
This file is used by the publish/package process of your Web project. You can customize the behavior of this process
|
||||
by editing this MSBuild file. In order to learn more about this please visit http://go.microsoft.com/fwlink/?LinkID=208121.
|
||||
-->
|
||||
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup>
|
||||
<WebPublishMethod>MSDeploy</WebPublishMethod>
|
||||
<LastUsedBuildConfiguration>Release</LastUsedBuildConfiguration>
|
||||
<LastUsedPlatform>Any CPU</LastUsedPlatform>
|
||||
<SiteUrlToLaunchAfterPublish />
|
||||
<ExcludeApp_Data>true</ExcludeApp_Data>
|
||||
<MSDeployServiceURL>https://IIS03.egalware.com:8172/MsDeploy.axd</MSDeployServiceURL>
|
||||
<DeployIisAppPath>Default Web Site/XPST</DeployIisAppPath>
|
||||
<RemoteSitePhysicalPath />
|
||||
<SkipExtraFilesOnServer>false</SkipExtraFilesOnServer>
|
||||
<MSDeployPublishMethod>WMSVC</MSDeployPublishMethod>
|
||||
<EnableMSDeployBackup>true</EnableMSDeployBackup>
|
||||
<UserName>jenkins</UserName>
|
||||
<_SavePWD>true</_SavePWD>
|
||||
<PublishDatabaseSettings>
|
||||
<Objects xmlns="">
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_AnagraficaConnectionString" Order="1" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_AnagraficaConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.Equa_XPSConnectionString" Order="2" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.Equa_XPSConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Data Source=SQL2016DEV;Initial Catalog=Equa_XPS;Persist Security Info=True;User ID=sa;Password=keyhammer16;" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
<ObjectGroup Name="XPS_data.Properties.Settings.si_dt30ConnectionString" Order="3" Enabled="False">
|
||||
<Destination Path="" />
|
||||
<Object Type="DbDacFx">
|
||||
<PreSource Path="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" includeData="False" />
|
||||
<Source Path="$(IntermediateOutputPath)AutoScripts\XPS_data.Properties.Settings.si_dt30ConnectionString_IncrementalSchemaOnly.dacpac" dacpacAction="Deploy" />
|
||||
</Object>
|
||||
<UpdateFrom Type="Web.Config">
|
||||
<Source MatchValue="Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Users\samuele.STEAMWAREWIN\Documents\Visual Studio 2008\Projects\XPS\XPS_data\MDB_Data\si_dt30.mdb;Persist Security Info=True" MatchAttributes="$(UpdateFromConnectionStringAttributes)" />
|
||||
</UpdateFrom>
|
||||
</ObjectGroup>
|
||||
</Objects>
|
||||
</PublishDatabaseSettings>
|
||||
<LaunchSiteAfterPublish>true</LaunchSiteAfterPublish>
|
||||
<ADUsesOwinOrOpenIdConnect>False</ADUsesOwinOrOpenIdConnect>
|
||||
<PrecompileBeforePublish>true</PrecompileBeforePublish>
|
||||
<EnableUpdateable>true</EnableUpdateable>
|
||||
<DebugSymbols>false</DebugSymbols>
|
||||
<WDPMergeOption>DonotMerge</WDPMergeOption>
|
||||
<EnableMsDeployAppOffline>false</EnableMsDeployAppOffline>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.Equa_AnagraficaConnectionString-Web.config Connection String">
|
||||
<UpdateDestWebConfig>False</UpdateDestWebConfig>
|
||||
</MSDeployParameterValue>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.Equa_XPSConnectionString-Web.config Connection String">
|
||||
<UpdateDestWebConfig>False</UpdateDestWebConfig>
|
||||
</MSDeployParameterValue>
|
||||
<MSDeployParameterValue Include="$(DeployParameterPrefix)XPS_data.Properties.Settings.si_dt30ConnectionString-Web.config Connection String" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
+2
-1
@@ -535,6 +535,7 @@
|
||||
<None Include="NLog.xsd">
|
||||
<SubType>Designer</SubType>
|
||||
</None>
|
||||
<None Include="Properties\PublishProfiles\IIS03.pubxml" />
|
||||
<None Include="Resources\Note.txt" />
|
||||
<Content Include="fonts\FontAwesome.otf" />
|
||||
<Content Include="fonts\fontawesome-webfont.woff2" />
|
||||
@@ -863,7 +864,7 @@
|
||||
<ItemGroup>
|
||||
<None Include="Properties\PublishProfiles\IIS01.pubxml" />
|
||||
<None Include="Properties\PublishProfiles\IIS02.pubxml" />
|
||||
<None Include="Properties\PublishProfiles\EQUA.pubxml" />
|
||||
<None Include="Properties\PublishProfiles\FileExport.pubxml" />
|
||||
<Content Include="WebMasterPages\Bootstrap.Master" />
|
||||
<Content Include="Scripts\jquery.mobile-1.4.5.min.map" />
|
||||
</ItemGroup>
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" ToolsVersion="4.0">
|
||||
<PropertyGroup>
|
||||
<ProjectView>ShowAllFiles</ProjectView>
|
||||
<NameOfLastUsedPublishProfile>IIS01</NameOfLastUsedPublishProfile>
|
||||
<NameOfLastUsedPublishProfile>C:\Users\samuele.steamw\source\XPS\XPST\Properties\PublishProfiles\FileExport.pubxml</NameOfLastUsedPublishProfile>
|
||||
<UseIISExpress>false</UseIISExpress>
|
||||
<Use64BitIISExpress />
|
||||
<IISExpressSSLPort />
|
||||
@@ -10,7 +10,7 @@
|
||||
<IISExpressWindowsAuthentication />
|
||||
<IISExpressUseClassicPipelineMode />
|
||||
<UseGlobalApplicationHostFile />
|
||||
<LastActiveSolutionConfig>Debug|Any CPU</LastActiveSolutionConfig>
|
||||
<LastActiveSolutionConfig>Release|Any CPU</LastActiveSolutionConfig>
|
||||
</PropertyGroup>
|
||||
<ProjectExtensions>
|
||||
<VisualStudio>
|
||||
|
||||
@@ -131,7 +131,7 @@
|
||||
<HintPath>..\packages\SteamWare.4.0.2002.731\lib\net462\SteamWare.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System">
|
||||
<HintPath>..\..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.2\System.dll</HintPath>
|
||||
<HintPath>..\..\..\..\..\Program Files (x86)\Reference Assemblies\Microsoft\Framework\.NETFramework\v4.6.2\System.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System.Buffers, Version=4.0.3.0, Culture=neutral, PublicKeyToken=cc7b13ffcd2ddd51, processorArchitecture=MSIL">
|
||||
<HintPath>..\packages\System.Buffers.4.5.0\lib\netstandard2.0\System.Buffers.dll</HintPath>
|
||||
|
||||
Reference in New Issue
Block a user