From ddf3477748ecc5888a27f49b32e429a1c857a669 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Petryka?= <35800402+MichalPetryka@users.noreply.github.com> Date: Mon, 15 Jul 2024 21:22:18 +0200 Subject: [PATCH] Update dotnet-core.yml --- .github/workflows/dotnet-core.yml | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/.github/workflows/dotnet-core.yml b/.github/workflows/dotnet-core.yml index 75bb64d..805873e 100644 --- a/.github/workflows/dotnet-core.yml +++ b/.github/workflows/dotnet-core.yml @@ -8,7 +8,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-20.04, windows-latest] + os: [windows-2019] framework: ['8.0'] include: - os: ubuntu-20.04 @@ -31,8 +31,14 @@ jobs: with: dotnet-version: ${{ matrix.framework }} - - name: Install dependencies for ${{ matrix.target }} - run: dotnet restore -r ${{ matrix.target }} + - name: A + run: dumpbin /exports C:/Windows/System32/ntdll.dll + + - name: B + run: dumpbin /exports C:/Windows/System32/kernel32.dll + + - name: C + run: dumpbin /exports C:/Windows/System32/advapi32.dll - name: Build ${{ matrix.target }} run: dotnet publish "LocalAdmin V2.csproj" -r ${{ matrix.target }} -c release -o "${{ github.workspace }}/builds/${{ matrix.framework }}/${{ matrix.target }}"