Skip to content

Commit c893c08

Browse files
committed
builds anpassen
1 parent bd00e1b commit c893c08

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ jobs:
77
runs-on: windows-latest
88
env:
99
PACKAGE_VERSION: 1.0.15
10-
ASSEMBLY_VERSION: ${{ PACKAGE_VERSION }}.${{ GITHUB_RUN_ID }}
10+
ASSEMBLY_VERSION: ${{ env.PACKAGE_VERSION }}.${{ github.run_id }}
1111
steps:
1212
- uses: actions/checkout@v2
1313
- name: Install dependencies

appveyor.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ environment:
44
ASSEMBLY_VERSION: $(PACKAGE_VERSION).$(APPVEYOR_BUILD_NUMBER)
55
build_script:
66
- cmd: dotnet restore
7-
- cmd: dotnet build --configuration Release --no-restore --verbosity detailed /p:AssemblyVersion=%ASSEMBLY_VERSION%
8-
- cmd: dotnet test --configuration Release --no-build --verbosity detailed
7+
- cmd: dotnet build --configuration Release --no-restore /p:AssemblyVersion=%ASSEMBLY_VERSION%
8+
- cmd: dotnet test --configuration Release --no-build --framework net472
99
- cmd: dotnet pack --configuration Release /p:PackageVersion=%PACKAGE_VERSION% /p:AssemblyVersion=%ASSEMBLY_VERSION%
1010
artifacts:
1111
- path: nugets\DeepCopy.Fody.*.nupkg

0 commit comments

Comments
 (0)