Skip to content

Commit

Permalink
Merge pull request #7 from hsaito/develop
Browse files Browse the repository at this point in the history
Release 1.7.0.0
  • Loading branch information
hsaito authored Oct 24, 2019
2 parents 3e05a4c + 8be70be commit 61be78c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 2 deletions.
15 changes: 15 additions & 0 deletions VECountConsolidatorCli/Build.ps1
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
$version = "1.7.0.0"
$product = 'VE_Count_Consolidator'

Remove-Item *.zip

$architectures = @("win-x64", "win-x86", "linux-x64", "linux-musl-x64", "linux-arm", "osx-x64")

Foreach ($architecture in $architectures)
{
dotnet clean
Remove-Item -LiteralPath bin -Recurse
Remove-Item -LiteralPath obj -Recurse
dotnet publish -c Release -r $architecture /p:PublishSingleFile=true
Compress-Archive ./bin/Release/netcoreapp3.0/$architecture/publish/* "$product-$version-$architecture.zip"
}
3 changes: 1 addition & 2 deletions VECountConsolidatorCli/VECountConsolidatorCli.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@
<LangVersion>latest</LangVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.5.0" />
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="CsvHelper" Version="12.1.2" />
<PackageReference Include="log4net" Version="2.0.8" />
</ItemGroup>
<ItemGroup>
<ProjectReference Include="..\VECountConsolidator\VECountConsolidator.csproj" />
Expand Down

0 comments on commit 61be78c

Please sign in to comment.