This commit is contained in:
stam 2021-01-13 19:22:36 +03:00
parent f4ed9c9573
commit 8417b0f705
33 changed files with 23 additions and 13 deletions

View File

@ -0,0 +1,8 @@
version: 2
updates:
- package-ecosystem: nuget
directory: "/src/atlassian-downloader"
schedule:
interval: daily
time: "02:00"
open-pull-requests-limit: 10

View File

@ -19,13 +19,13 @@ jobs:
- uses: actions/checkout@v2
- name: Restore dependencies
run: |
cd src
cd src/atlassian-downloader
dotnet restore
- name: Build
run: |
cd src
cd src/atlassian-downloader
dotnet build --no-restore
- name: Test
run: |
cd src
cd src/atlassian-downloader
dotnet test --no-build --verbosity normal

View File

@ -16,13 +16,13 @@ jobs:
- uses: actions/checkout@v2
- name: Restore dependencies
run: |
cd src
cd src/atlassian-downloader
dotnet restore
- name: Build
run: |
cd src
cd src/atlassian-downloader
dotnet build --no-restore
- name: Test
run: |
cd src
cd src/atlassian-downloader
dotnet test --no-build --verbosity normal

View File

@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio Version 16
VisualStudioVersion = 16.0.30803.129
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AtlassianDownloader", "AtlassianDownloader.csproj", "{9C7EA014-5883-4FCD-BF1D-DC561F8958DD}"
Project("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "AtlassianDownloader", "atlassian-downloader.csproj", "{9C7EA014-5883-4FCD-BF1D-DC561F8958DD}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution

View File

@ -0,0 +1,4 @@
dotnet.exe publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r linux-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

@ -0,0 +1,4 @@
dotnet publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release
dotnet publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release
dotnet publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release
dotnet publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release

View File

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View File

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

View File

@ -1,2 +0,0 @@
dotnet.exe publish -r win7-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r win7-x86 --self-contained true --framework net5.0 --configuration Release

View File

@ -1,4 +0,0 @@
dotnet.exe publish -r linux-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r linux-musl-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r rhel.6-x64 --self-contained true --framework net5.0 --configuration Release
dotnet.exe publish -r tizen --self-contained true --framework net5.0 --configuration Release