Skip to content
This repository has been archived by the owner on May 31, 2023. It is now read-only.

Commit

Permalink
Read version from environment variable (#46)
Browse files Browse the repository at this point in the history
* #40 - Increase version

* Change direct version usage to GHACU_VERSION env var

* Fix pwsh script in CI (latest)

* Fix scripts

* Fix version retrieving

* Fix version retrieving

* Fix CI

* Fix CI

* Fix CI

* Fix CI (2)

* Use env var in *.iss files

* Fix null in pwsh

* Fix null in pwsh

* Fix ps1 scripts
  • Loading branch information
fabasoad authored Jul 21, 2020
1 parent 9f338d9 commit 35b6c93
Show file tree
Hide file tree
Showing 20 changed files with 127 additions and 92 deletions.
30 changes: 19 additions & 11 deletions .github/workflows/ci-latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,29 +33,37 @@ jobs:
uses: actions/[email protected]
with:
dotnet-version: 5.0.100-preview.6.20318.15
- name: Get latest release
run: |
tag_name=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -s $GITHUB_API_URL/repos/${{ github.repository }}/releases/latest | jq -r '.tag_name')
echo "ghacu latest version is ${tag_name:1}"
echo "::set-env name=GHACU_VERSION::${tag_name:1}"
shell: bash
- name: Install application (Windows)
if: ${{ matrix.os == 'windows-latest' }}
run: |
Invoke-WebRequest -Uri https://github.com/fabasoad/ghacu/releases/download/v2.0.1/ghacu-2.0.1-win-x64.tgz -OutFile ghacu-2.0.1-win-x64.tgz
tar -xvf ghacu-2.0.1-win-x64.tgz
$env:Path += ";${{ github.workspace }}\ghacu-2.0.1-win-x64"
Invoke-WebRequest -Uri $env:GITHUB_SERVER_URL/${{ github.repository }}/releases/download/v$env:GHACU_VERSION/ghacu-$env:GHACU_VERSION-win-x64.tgz -OutFile ghacu-$env:GHACU_VERSION-win-x64.tgz
tar -xvf ghacu-$env:GHACU_VERSION-win-x64.tgz
$env:Path += ";${{ github.workspace }}\ghacu-$env:GHACU_VERSION-win-x64"
Write-Output "::set-env name=PATH::$env:Path"
shell: pwsh
- name: Install application (Linux)
if: ${{ matrix.os == 'ubuntu-latest' }}
run: |
cd ~ && wget https://github.com/fabasoad/ghacu/releases/download/v2.0.1/ghacu-2.0.1-linux-x64.tgz
tar -xvf ghacu-2.0.1-linux-x64.tgz
chmod +x ~/ghacu-2.0.1-linux-x64/ghacu
PATH=$PATH:~/ghacu-2.0.1-linux-x64
cd ~ && wget $GITHUB_SERVER_URL/${{ github.repository }}/releases/download/v$GHACU_VERSION/ghacu-$GHACU_VERSION-linux-x64.tgz
tar -xvf ghacu-$GHACU_VERSION-linux-x64.tgz
chmod +x ~/ghacu-$GHACU_VERSION-linux-x64/ghacu
PATH=$PATH:~/ghacu-$GHACU_VERSION-linux-x64
echo "::set-env name=PATH::$PATH"
shell: bash
- name: Install application (MacOS)
if: ${{ matrix.os == 'macos-latest' }}
run: |
cd ~ && wget https://github.com/fabasoad/ghacu/releases/download/v2.0.1/ghacu-2.0.1-osx-x64.tgz
tar -xvf ghacu-2.0.1-osx-x64.tgz
chmod +x ~/ghacu-2.0.1-osx-x64/ghacu
PATH=$PATH:~/ghacu-2.0.1-osx-x64
cd ~ && wget $GITHUB_SERVER_URL/${{ github.repository }}/releases/download/v$GHACU_VERSION/ghacu-$GHACU_VERSION-osx-x64.tgz
tar -xvf ghacu-$GHACU_VERSION-osx-x64.tgz
chmod +x ~/ghacu-$GHACU_VERSION-osx-x64/ghacu
PATH=$PATH:~/ghacu-$GHACU_VERSION-osx-x64
echo "::set-env name=PATH::$PATH"
shell: bash
- name: Run GHACU
run: ghacu --version
14 changes: 7 additions & 7 deletions .github/workflows/ci-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,16 +47,16 @@ jobs:
uses: actions/[email protected]
with:
dotnet-version: 5.0.100-preview.6.20318.15
- name: Extract version
id: version
- name: Get latest release
run: |
$Version = $([xml](Get-Content src/Ghacu.Runner/Ghacu.Runner.csproj)).Project.PropertyGroup.PackageVersion
Write-Output "Current ghacu version is $Version"
Write-Output "::set-output name=value::$Version"
shell: pwsh
tag_name=$(curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" -s $GITHUB_API_URL/repos/${{ github.repository }}/releases/latest | jq -r '.tag_name')
echo "ghacu latest version is ${tag_name:1}"
echo "::set-env name=GHACU_VERSION::${tag_name:1}"
shell: bash
- name: Build
run: |
dotnet clean
dotnet build -c Release -p:Version=${{ steps.version.outputs.value }}
dotnet build -c Release -p:Version=$GHACU_VERSION
shell: bash
- name: Run ghacu
run: dotnet ./src/Ghacu.Runner/bin/Release/netcoreapp5.0/ghacu.dll --no-cache --repository "${{ github.workspace }}" --token ${{ secrets.GITHUB_TOKEN }} --log-level Information
9 changes: 3 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ CLI tool that checks versions of GitHub Actions that used in a repository. Pleas

## Commands
```bash
> ghacu --help
ghacu 2.0.1
© Yevhen Fabizhevskyi (https://github.com/fabasoad)

--cache (Default: Yes) Enable cache.

--log-level (Default: Error) Set log level. Possible values: Trace, Debug, Information, Warning, Error, Critical, None.
Expand All @@ -28,7 +24,7 @@ ghacu 2.0.1
All commands are optional and can be run by purpose.
### GitHub Token
There are 2 ways to pass GitHub token to _ghacu_:
1. Using `-t`, `--token` parameter:
1. Using `--token` parameter:
```bash
ghacu --token abc123 --repository "C:\Projects\business-card"
```
Expand All @@ -53,6 +49,7 @@ decathlon/release-notes-generator-action 2.0.0 » v2.0.1
Run ghacu --upgrade to upgrade the actions.
```
## Dev section
As a prerequisite you need to define `GHACU_VERSION` environment variable.
### How to build an application
#### MacOS
```bash
Expand All @@ -67,7 +64,7 @@ pwsh ./build.ps1
#### MacOS
1. Open `inno/ghacu-win-{x64|x86}.iss` file in IDE.
2. Increase version.
3. Run the following command:
3. Run the following command (bash):
```bash
docker run --rm -i -v "$PWD:/work" amake/innosetup inno/ghacu-win-{x64|x86}.iss
```
Expand Down
4 changes: 2 additions & 2 deletions build.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@ function Compress-Package {
Set-Location ..
}

$xml = [xml](Get-Content ghacu.nuspec)
$version = $xml.package.metadata.version
$xml = [xml](Get-Content src/Ghacu.Runner/Ghacu.Runner.csproj)
$version = $xml.Project.PropertyGroup.PackageVersion

switch($os) {
{($_ -eq "macos-latest") -Or ($_ -eq "")} {
Expand Down
8 changes: 4 additions & 4 deletions inno/ghacu-win-x64.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ghacu"
#define MyAppVersion "2.0.1"
#define MyAppVersion GetEnv('GHACU_VERSION')
#define MyAppPublisher "Yevhen Fabizhevskyi"
#define MyAppURL "https://github.com/fabasoad/ghacu"
#define MyAppExeName "ghacu.exe"
Expand All @@ -25,7 +25,7 @@ DisableProgramGroupPage=yes
LicenseFile=..\LICENSE
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputBaseFilename=ghacu-2.0.1-win-x64
OutputBaseFilename=ghacu-{#MyAppVersion}-win-x64
Compression=lzma
SolidCompression=yes
WizardStyle=modern
Expand All @@ -34,8 +34,8 @@ WizardStyle=modern
Name: "english"; MessagesFile: "compiler:Default.isl"

[Files]
Source: "..\bin\ghacu-2.0.1-win-x64\ghacu.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\bin\ghacu-2.0.1-win-x64\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\bin\ghacu-{#MyAppVersion}-win-x64\ghacu.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\bin\ghacu-{#MyAppVersion}-win-x64\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Expand Down
8 changes: 4 additions & 4 deletions inno/ghacu-win-x86.iss
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "ghacu"
#define MyAppVersion "2.0.1"
#define MyAppVersion GetEnv('GHACU_VERSION')
#define MyAppPublisher "Yevhen Fabizhevskyi"
#define MyAppURL "https://github.com/fabasoad/ghacu"
#define MyAppExeName "ghacu.exe"
Expand All @@ -25,7 +25,7 @@ DisableProgramGroupPage=yes
LicenseFile=..\LICENSE
; Uncomment the following line to run in non administrative install mode (install for current user only.)
;PrivilegesRequired=lowest
OutputBaseFilename=ghacu-2.0.1-win-x86
OutputBaseFilename=ghacu-{#MyAppVersion}-win-x86
Compression=lzma
SolidCompression=yes
WizardStyle=modern
Expand All @@ -34,8 +34,8 @@ WizardStyle=modern
Name: "english"; MessagesFile: "compiler:Default.isl"

[Files]
Source: "..\bin\ghacu-2.0.1-win-x86\ghacu.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\bin\ghacu-2.0.1-win-x86\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
Source: "..\bin\ghacu-{#MyAppVersion}-win-x86\ghacu.exe"; DestDir: "{app}"; Flags: ignoreversion
Source: "..\bin\ghacu-{#MyAppVersion}-win-x86\*"; DestDir: "{app}"; Flags: ignoreversion recursesubdirs createallsubdirs
; NOTE: Don't use "Flags: ignoreversion" on any shared system files

[Icons]
Expand Down
13 changes: 8 additions & 5 deletions scripts/install-ghacu-linux.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/usr/bin/env bash
os='linux-x64'
version='2.0.1'
cd ~ && wget https://github.com/fabasoad/ghacu/releases/download/v$version/ghacu-$version-$os.tgz
tar -xvf ghacu-$version-$os.tgz
chmod +x ~/ghacu-$version-$os/ghacu
ln -sfn ~/ghacu-$version-$os/ghacu /usr/local/bin/ghacu
asset=$(curl -s https://api.github.com/repos/fabasoad/ghacu/releases/latest | jq -c '.assets[] | select(.name | contains('"\"$os.tgz\""'))')
cd ~ && echo ${asset} | jq -r '.browser_download_url' | xargs wget
tar_name=$(echo ${asset} | jq -r '.name')
tar -xvf ${tar_name}
folder=$(basename ${tar_name} .tgz)
PATH=$PATH:~/${folder}
chmod +x ~/${folder}/ghacu
ln -sfn ~/${folder}/ghacu /usr/local/bin/ghacu
13 changes: 8 additions & 5 deletions scripts/install-ghacu-osx.sh
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
#!/usr/bin/env bash
os='osx-x64'
version='2.0.1'
cd ~ && wget https://github.com/fabasoad/ghacu/releases/download/v$version/ghacu-$version-$os.tgz
tar -xvf ghacu-$version-$os.tgz
chmod +x ~/ghacu-$version-$os/ghacu
ln -sfn ~/ghacu-$version-$os/ghacu /usr/local/bin/ghacu
asset=$(curl -s https://api.github.com/repos/fabasoad/ghacu/releases/latest | jq -c '.assets[] | select(.name | contains('"\"$os.tgz\""'))')
cd ~ && echo ${asset} | jq -r '.browser_download_url' | xargs wget
tar_name=$(echo ${asset} | jq -r '.name')
tar -xvf ${tar_name}
folder=$(basename ${tar_name} .tgz)
PATH=$PATH:~/${folder}
chmod +x ~/${folder}/ghacu
ln -sfn ~/${folder}/ghacu /usr/local/bin/ghacu
20 changes: 16 additions & 4 deletions scripts/install-ghacu-winx64.ps1
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
$version = '2.0.1'
$os = 'win-x64'
Invoke-WebRequest -Uri "https://github.com/fabasoad/ghacu/releases/download/v$version/ghacu-$version-$os.tgz" -OutFile "~\ghacu-$version-$os.tgz"
cd ~ && tar -xf "ghacu-$version-$os.tgz"
$release = Invoke-WebRequest -Uri "https://api.github.com/repos/fabasoad/ghacu/releases/latest" | ConvertFrom-Json
$asset = $null
For ($i = 0; $i -lt $release.assets.Length; $i++)
{
If ($release.assets[$i].name -like "*$os.tgz")
{
$asset = $release.assets[$i]
break
}
}
$asset_name = $asset.name
Invoke-WebRequest -Uri $asset.browser_download_url -OutFile "~\$asset_name"
cd ~ && tar -xf $asset_name
$folder = [io.path]::GetFileNameWithoutExtension($asset_name)
$path = (Resolve-Path ~)
New-Item -ItemType SymbolicLink -Path C:\Windows\System32\ghacu.exe -Value $path\ghacu-$version-$os\ghacu.exe -Force
$env:Path += ";$path\$folder"
New-Item -ItemType SymbolicLink -Path C:\Windows\System32\ghacu.exe -Value $path\$folder\ghacu.exe -Force
20 changes: 16 additions & 4 deletions scripts/install-ghacu-winx86.ps1
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,6 +1,18 @@
$version = '2.0.1'
$os = 'win-x86'
Invoke-WebRequest -Uri "https://github.com/fabasoad/ghacu/releases/download/v$version/ghacu-$version-$os.tgz" -OutFile "~\ghacu-$version-$os.tgz"
cd ~ && tar -xf "ghacu-$version-$os.tgz"
$release = Invoke-WebRequest -Uri "https://api.github.com/repos/fabasoad/ghacu/releases/latest" | ConvertFrom-Json
$asset = $null
For ($i = 0; $i -lt $release.assets.Length; $i++)
{
If ($release.assets[$i].name -like "*$os.tgz")
{
$asset = $release.assets[$i]
break
}
}
$asset_name = $asset.name
Invoke-WebRequest -Uri $asset.browser_download_url -OutFile "~\$asset_name"
cd ~ && tar -xf $asset_name
$folder = [io.path]::GetFileNameWithoutExtension($asset_name)
$path = (Resolve-Path ~)
New-Item -ItemType SymbolicLink -Path C:\Windows\System32\ghacu.exe -Value $path\ghacu-$version-$os\ghacu.exe -Force
$env:Path += ";$path\$folder"
New-Item -ItemType SymbolicLink -Path C:\Windows\System32\ghacu.exe -Value $path\$folder\ghacu.exe -Force
8 changes: 4 additions & 4 deletions src/Ghacu.Api/Ghacu.Api.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<NeutralLanguage>en-UA</NeutralLanguage>
<Product>ghacu</Product>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Ghacu.Cache/Ghacu.Cache.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<Product>ghacu</Product>
</PropertyGroup>

Expand Down
8 changes: 4 additions & 4 deletions src/Ghacu.GitHub/Ghacu.GitHub.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<Product>ghacu</Product>
<NeutralLanguage>en-UA</NeutralLanguage>
</PropertyGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Ghacu.Runner/Ghacu.Runner.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,17 +9,17 @@
<Product>ghacu</Product>
<NeutralLanguage>en-UA</NeutralLanguage>
<LangVersion>preview</LangVersion>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Title>GHACU</Title>
<Copyright>© Yevhen Fabizhevskyi (https://github.com/fabasoad)</Copyright>
<PackageProjectUrl>https://github.com/fabasoad/ghacu/</PackageProjectUrl>
<PackageLicenseUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/LICENSE</PackageLicenseUrl>
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
</PropertyGroup>

<ItemGroup>
Expand Down
8 changes: 4 additions & 4 deletions src/Ghacu.Workflow/Ghacu.Workflow.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<Product>ghacu</Product>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<NeutralLanguage>en-UA</NeutralLanguage>
</PropertyGroup>

Expand Down
8 changes: 4 additions & 4 deletions tests/Ghacu.Api.Tests/Ghacu.Api.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<Product>ghacu</Product>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<NeutralLanguage>en-UA</NeutralLanguage>
</PropertyGroup>

Expand Down
8 changes: 4 additions & 4 deletions tests/Ghacu.Cache.Tests/Ghacu.Cache.Tests.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<PackageIconUrl>https://raw.githubusercontent.com/fabasoad/ghacu/main/logo.png</PackageIconUrl>
<RepositoryUrl>https://github.com/fabasoad/ghacu/</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageVersion>2.0.1</PackageVersion>
<PackageVersion>$(GHACU_VERSION)</PackageVersion>
<Authors>fabasoad</Authors>
<OutputType>Library</OutputType>
<Product>ghacu</Product>
<AssemblyVersion>2.0.1</AssemblyVersion>
<InformationalVersion>2.0.1</InformationalVersion>
<FileVersion>2.0.1</FileVersion>
<AssemblyVersion>$(GHACU_VERSION)</AssemblyVersion>
<InformationalVersion>$(GHACU_VERSION)</InformationalVersion>
<FileVersion>$(GHACU_VERSION)</FileVersion>
<NeutralLanguage>en-UA</NeutralLanguage>
</PropertyGroup>

Expand Down
Loading

0 comments on commit 35b6c93

Please sign in to comment.