mirror of
https://github.com/EpicMorg/atlassian-downloader.git
synced 2024-12-28 13:05:29 +03:00
fixes
This commit is contained in:
parent
f4ed9c9573
commit
8417b0f705
8
.github/dependabot.yml
vendored
8
.github/dependabot.yml
vendored
@ -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
|
6
.github/workflows/dotnet-develop.yml
vendored
6
.github/workflows/dotnet-develop.yml
vendored
@ -19,13 +19,13 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet restore
|
dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet build --no-restore
|
dotnet build --no-restore
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet test --no-build --verbosity normal
|
dotnet test --no-build --verbosity normal
|
||||||
|
6
.github/workflows/dotnet-master.yml
vendored
6
.github/workflows/dotnet-master.yml
vendored
@ -16,13 +16,13 @@ jobs:
|
|||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Restore dependencies
|
- name: Restore dependencies
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet restore
|
dotnet restore
|
||||||
- name: Build
|
- name: Build
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet build --no-restore
|
dotnet build --no-restore
|
||||||
- name: Test
|
- name: Test
|
||||||
run: |
|
run: |
|
||||||
cd src
|
cd src/atlassian-downloader
|
||||||
dotnet test --no-build --verbosity normal
|
dotnet test --no-build --verbosity normal
|
||||||
|
@ -3,7 +3,7 @@ Microsoft Visual Studio Solution File, Format Version 12.00
|
|||||||
# Visual Studio Version 16
|
# Visual Studio Version 16
|
||||||
VisualStudioVersion = 16.0.30803.129
|
VisualStudioVersion = 16.0.30803.129
|
||||||
MinimumVisualStudioVersion = 10.0.40219.1
|
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
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
4
src/atlassian-downloader/build.bat
Normal file
4
src/atlassian-downloader/build.bat
Normal 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
|
4
src/atlassian-downloader/build.sh
Normal file
4
src/atlassian-downloader/build.sh
Normal 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
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 1.2 KiB |
@ -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
|
|
@ -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
|
|
Loading…
Reference in New Issue
Block a user