Modifica x copia ANCHE dei file x versione

This commit is contained in:
Samuele Locatelli
2021-05-27 12:16:23 +02:00
parent 57d9a0a6f7
commit 60780aa5c9
4 changed files with 8 additions and 2 deletions
+2
View File
@@ -37,6 +37,7 @@ variables:
.nexusUpload: &nexusUpload
- |
Set-Alias mCurl C:\Windows\system32\curl.exe
$VersNumb = Get-Content "VersNum.txt"
if($CI_COMMIT_BRANCH -eq "master")
{
$version = "stable"
@@ -49,6 +50,7 @@ variables:
ForEach ($File in $File2Send) {
$FileName = Split-Path $File -leaf
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File http://nexus.steamware.net/repository/utility/$env:NEXUS_PATH/$version/$FileName
mCurl -v -u GitLab:$NEXUS_PASSWD --upload-file $File http://nexus.steamware.net/repository/utility/$env:NEXUS_PATH/$version/$VersNum/$FileName
}
# mCurl -v -u $env:NEXUS_USER:$env:NEXUS_PASSWD --upload-file bin/release/$env:APP_NAME.zip $env:NEXUS_SERVER/utility/$env:NEXUS_PATH/$version/$env:APP_NAME-$version.zip
+1 -1
View File
@@ -4,7 +4,7 @@
<TargetFramework>net5.0</TargetFramework>
<RootNamespace>MP.Stats</RootNamespace>
<UserSecretsId>826e877c-ba70-4253-84cb-d0b1cafd4440</UserSecretsId>
<Version>1.0.2105.2711</Version>
<Version>1.0.2105.2712</Version>
</PropertyGroup>
<ItemGroup>
+4 -1
View File
@@ -1,11 +1,14 @@
param([string]$ProjectDir, [string]$ProjectPath);
$VersNumb="..\VersNum.txt"
$MajMin="1.0."
$currentDate = get-date -format yyMM;
$currentTime = get-date -format ddHH;
$find = "<Version>(.|\n)*?</Version>";
$currRelNum=$MajMin + $currentDate +"." + $currentTime
$replace = "<Version>" + $MajMin + $currentDate +"." + $currentTime + "</Version>";
$csproj = Get-Content $ProjectPath
$csprojUpdated = $csproj -replace $find, $replace
Set-Content -Path $ProjectPath -Value $csprojUpdated
Set-Content -Path $ProjectPath -Value $csprojUpdated
Set-Content -Path $VersNumb -Value $currRelNum
+1
View File
@@ -0,0 +1 @@
1.0.2105.2712