From 30aff5c9ee47fa2d64bc84035130c726aea5b77e Mon Sep 17 00:00:00 2001 From: Christian Grasser Date: Mon, 24 Oct 2022 11:50:14 +0200 Subject: [PATCH] - updated github actions - updated .NET Framework needed by VS2022 GH image - removed migration stuff as it would be available from git if ever needed - corrected sln setting for debug x64 --- .github/workflows/CI_build.yml | 6 +- .github/workflows/codeql-analysis.yml | 15 +- JSFunctionViewer.csproj | 2 +- JSFunctionViewer.sln | 4 +- .../JSFunctionViewer/JSFunctionViewer.csproj | 120 ------------- .../JSFunctionViewer/NuGetUpgradeLog.html | 162 ------------------ .../5f884844/JSFunctionViewer/packages.config | 4 - 7 files changed, 9 insertions(+), 304 deletions(-) delete mode 100644 MigrationBackup/5f884844/JSFunctionViewer/JSFunctionViewer.csproj delete mode 100644 MigrationBackup/5f884844/JSFunctionViewer/NuGetUpgradeLog.html delete mode 100644 MigrationBackup/5f884844/JSFunctionViewer/packages.config diff --git a/.github/workflows/CI_build.yml b/.github/workflows/CI_build.yml index 542bd8c..80adea1 100644 --- a/.github/workflows/CI_build.yml +++ b/.github/workflows/CI_build.yml @@ -14,7 +14,7 @@ jobs: steps: - name: Checkout repo - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1 @@ -25,14 +25,14 @@ jobs: - name: Archive artifacts for x64 if: matrix.build_platform == 'x64' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: plugin_dll_x64 path: bin\${{ matrix.build_configuration }}-x64\JSFunctionViewer.dll - name: Archive artifacts for x86 if: matrix.build_platform == 'x86' && matrix.build_configuration == 'Release' - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: plugin_dll_x86 path: bin\${{ matrix.build_configuration }}\JSFunctionViewer.dll diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index d87681a..1395f13 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -16,20 +16,11 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 - with: - # We must fetch at least the immediate parents so that if this is - # a pull request then we can checkout the head. - fetch-depth: 2 - - # If this run was triggered by a pull request event, then checkout - # the head of the pull request instead of the merge commit. - - run: git checkout HEAD^2 - if: ${{ github.event_name == 'pull_request' }} + uses: actions/checkout@v3 # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 # Override language selection by uncommenting this and choosing your languages # with: # languages: go, javascript, csharp, python, cpp, java @@ -58,4 +49,4 @@ jobs: run: msbuild JSFunctionViewer.csproj /m /p:configuration="Debug" /p:platform="x64" - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 diff --git a/JSFunctionViewer.csproj b/JSFunctionViewer.csproj index 3580a9a..012953a 100644 --- a/JSFunctionViewer.csproj +++ b/JSFunctionViewer.csproj @@ -9,7 +9,7 @@ JSFunctionViewer JSFunctionViewer bin\Debug\ - v4.0 + v4.8 true diff --git a/JSFunctionViewer.sln b/JSFunctionViewer.sln index 5168dfb..7102ff8 100644 --- a/JSFunctionViewer.sln +++ b/JSFunctionViewer.sln @@ -13,8 +13,8 @@ Global Release|x86 = Release|x86 EndGlobalSection GlobalSection(ProjectConfigurationPlatforms) = postSolution - {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x64.ActiveCfg = Release|x86 - {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x64.Build.0 = Release|x86 + {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x64.ActiveCfg = Debug|x64 + {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x64.Build.0 = Debug|x64 {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x86.ActiveCfg = Debug|x86 {243AA53C-D41B-404C-A957-4BE14006D795}.Debug|x86.Build.0 = Debug|x86 {243AA53C-D41B-404C-A957-4BE14006D795}.Release|x64.ActiveCfg = Release|x64 diff --git a/MigrationBackup/5f884844/JSFunctionViewer/JSFunctionViewer.csproj b/MigrationBackup/5f884844/JSFunctionViewer/JSFunctionViewer.csproj deleted file mode 100644 index ead14c1..0000000 --- a/MigrationBackup/5f884844/JSFunctionViewer/JSFunctionViewer.csproj +++ /dev/null @@ -1,120 +0,0 @@ - - - - Debug - x86 - {243AA53C-D41B-404C-A957-4BE14006D795} - Library - Properties - JSFunctionViewer - JSFunctionViewer - bin\Debug\ - v4.0 - - - true - DEBUG;TRACE - full - prompt - false - bin\Debug - x86 - true - - - TRACE - true - bin\Release - pdbonly - prompt - x86 - true - - - true - DEBUG;TRACE - full - prompt - false - bin\Debug-x64 - x64 - true - - - TRACE - true - bin\Release-x64 - pdbonly - prompt - x64 - true - - - - Program - $(ProgramW6432)\Notepad++\notepad++.exe - $(MSBuildProgramFiles32)\Notepad++\notepad++.exe - - - - - - - packages\InputSimulator.1.0.4.0\lib\net20\WindowsInput.dll - - - - - - - Form - - - frmMyDlg.cs - - - - - - - - - - - - - - - - - - True - True - Resources.resx - - - - - - frmMyDlg.cs - - - ResXFileCodeGenerator - Resources.Designer.cs - Designer - - - - - - - - - \ No newline at end of file diff --git a/MigrationBackup/5f884844/JSFunctionViewer/NuGetUpgradeLog.html b/MigrationBackup/5f884844/JSFunctionViewer/NuGetUpgradeLog.html deleted file mode 100644 index 7a1d18f..0000000 --- a/MigrationBackup/5f884844/JSFunctionViewer/NuGetUpgradeLog.html +++ /dev/null @@ -1,162 +0,0 @@ - - - - - NuGetMigrationLog -

- NuGet Migration Report - JSFunctionViewer

Overview

Migration to PackageReference was completed successfully. Please build and run your solution to verify that all packages are available.
- If you run into any problems, have feedback, questions, or concerns, please - file an issue on the NuGet GitHub repository.
- Changed files and this report have been backed up here: - C:\Users\János\source\repos\JSFunctionViewer\MigrationBackup\5f884844\JSFunctionViewer

Packages processed

Top-level dependencies:

Package IdVersion
InputSimulator - v1.0.4

Transitive dependencies:

Package IdVersion
- No transitive dependencies found. -

Package compatibility issues

Description
- No issues were found. -
\ No newline at end of file diff --git a/MigrationBackup/5f884844/JSFunctionViewer/packages.config b/MigrationBackup/5f884844/JSFunctionViewer/packages.config deleted file mode 100644 index d4b065b..0000000 --- a/MigrationBackup/5f884844/JSFunctionViewer/packages.config +++ /dev/null @@ -1,4 +0,0 @@ - - - - \ No newline at end of file