This commit is contained in:
stam 2021-01-14 00:50:40 +03:00
parent efcbb7df92
commit 96d18a46e9
3 changed files with 10 additions and 3 deletions

View File

@ -2,6 +2,11 @@
<PropertyGroup>
<OutputType>Exe</OutputType>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishTrimmed>true</PublishTrimmed>
<PublishReadyToRun>true</PublishReadyToRun>
<TargetFramework>net5.0</TargetFramework>
<ApplicationIcon>favicon.ico</ApplicationIcon>
<PackageId>EpicMorg.Atlassian.Downloader</PackageId>
@ -9,12 +14,12 @@
<Description>Atlassian Downloader by EpicMorg, code by kasthack</Description>
<PackageProjectUrl>https://github.com/EpicMorg/atlassian-downloader</PackageProjectUrl>
<PackageIcon>favicon.png</PackageIcon>
<FileVersion>1.0.0.4</FileVersion>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/EpicMorg/atlassian-downloader</RepositoryUrl>
<PackageTags>atlassian, donwloader, epicmorg</PackageTags>
<AssemblyVersion>1.0.0.4</AssemblyVersion>
<Version>1.0.0.4</Version>
<AssemblyVersion>1.0.0.5</AssemblyVersion>
<FileVersion>1.0.0.5</FileVersion>
<Version>1.0.0.5</Version>
<Copyright>EpicMorg 2021</Copyright>
<Product>Atlassian Downloader</Product>
<IsPackable>true</IsPackable>

View File

@ -5,4 +5,5 @@ dotnet.exe publish -r win81-x86 --self-contained true --framework net5.0 --con
dotnet.exe publish -r win10-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
dotnet.exe publish -r win10-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
dotnet.exe publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r osx-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release

View File

@ -5,4 +5,5 @@ dotnet publish -r win81-x86 --self-contained true --framework net5.0 --configu
dotnet publish -r win10-x64 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
dotnet publish -r win10-x86 --self-contained true --framework net5.0 --configuration Release -p:PublishTrimmed=true -p:PublishSingleFile=true -p:PublishReadyToRun=true
dotnet publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release
dotnet publish -r osx-x64 --self-contained true --framework net5.0 --configuration Release
dotnet publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release