右键菜单中“选择网络连接”子菜单中未设置“选择全部”时,将将当前选择的网络连接设置为默认菜单项(加粗显示) #557
This file contains hidden or 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: Release CI | |
| on: push | |
| jobs: | |
| x64_build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Run msbuild | |
| run: msbuild -p:configuration=release -p:platform=x64 -p:platformToolset=v143 | |
| - name: Get current time | |
| uses: josStorer/[email protected] | |
| id: current-time | |
| with: | |
| format: YYYYMMDD_HHmmss | |
| utcOffset: "+08:00" | |
| - name : Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: x64_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor | |
| path: | | |
| Bin/x64/Release/TrafficMonitor.exe | |
| Bin/x64/Release/*.dll | |
| - name : Upload pdb files | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: x64_${{ steps.current-time.outputs.formattedTime }}_pdb | |
| path: Bin/x64/Release/*.pdb | |
| x86_build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Run msbuild | |
| run: msbuild -p:configuration=release -p:platform=x86 -p:platformToolset=v143 | |
| - name: Get current time | |
| uses: josStorer/[email protected] | |
| id: current-time | |
| with: | |
| format: YYYYMMDD_HHmmss | |
| utcOffset: "+08:00" | |
| - name : Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: x86_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor | |
| path: | | |
| Bin/Release/TrafficMonitor.exe | |
| Bin/Release/*.dll | |
| - name : Upload pdb files | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: x86_${{ steps.current-time.outputs.formattedTime }}_pdb | |
| path: Bin/Release/*.pdb | |
| arm64ec_build: | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Add msbuild to PATH | |
| uses: microsoft/setup-msbuild@v2 | |
| - name: Run msbuild | |
| run: msbuild -p:configuration=release -p:platform=ARM64EC -p:platformToolset=v143 | |
| - name: Get current time | |
| uses: josStorer/[email protected] | |
| id: current-time | |
| with: | |
| format: YYYYMMDD_HHmmss | |
| utcOffset: "+08:00" | |
| - name: Move dll file path | |
| run: mv Bin/x64/Release/*.dll Bin/ARM64EC/Release/ | |
| - name : Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: arm64EC_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor | |
| path: | | |
| Bin/ARM64EC/Release/TrafficMonitor.exe | |
| Bin/ARM64EC/Release/*.dll | |
| - name : Upload pdb files | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: arm64EC_${{ steps.current-time.outputs.formattedTime }}_pdb | |
| path: Bin/ARM64EC/Release/*.pdb | |
| # winXP_build: | |
| # runs-on: windows-latest | |
| # steps: | |
| # - uses: actions/checkout@v3 | |
| # - name: Add msbuild to PATH | |
| # uses: microsoft/[email protected] | |
| # - name: Run msbuild | |
| # run: | | |
| # set ExternalCompilerOptions=/DCOMPILE_FOR_WINXP | |
| # msbuild -p:configuration=release -p:platform=x86 -p:platformToolset=v140_xp | |
| # shell: cmd | |
| # - name: Get current time | |
| # uses: josStorer/[email protected] | |
| # id: current-time | |
| # with: | |
| # format: YYYYMMDD_HHmmss | |
| # utcOffset: "+08:00" | |
| # - name : Upload artifact | |
| # uses: actions/upload-artifact@v3 | |
| # with: | |
| # name: winXP_${{ steps.current-time.outputs.formattedTime }}_TrafficMonitor | |
| # path: Bin/Release/TrafficMonitor.exe |