主窗口新增png格式透明背景图片的支持 #449
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@v3 | |
| 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@v3 | |
| 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@v3 | |
| 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@v3 | |
| with: | |
| name: x86_${{ steps.current-time.outputs.formattedTime }}_pdb | |
| path: Bin/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 |