Add "Open File" menu (same function as double click). #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push, pull_request] | |
jobs: | |
vs2022: | |
name: Visual Studio 2022 | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup dotnet 6.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '6.0.x' | |
- name: Setup dotnet 8.0 | |
uses: actions/setup-dotnet@v4 | |
with: | |
dotnet-version: '8.0.x' | |
- name: Build | |
run: | | |
dotnet build --configuration Release | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FindInFiles-net4.8 | |
path: 'NET48/bin/Release/' | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FindInFiles-net6.0 | |
path: 'bin/Release/net6.0-windows/' | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: FindInFiles-net8.0 | |
path: 'bin/Release/net8.0-windows/' |