Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
hlysine committed Oct 6, 2020
2 parents 67ce363 + f596ec3 commit c4d4c06
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/dotnetframework.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: .NET Framework

on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
build:

runs-on: windows-latest

steps:
- uses: actions/checkout@v2.0.0
name: Checkout Code

- name: Add msbuild to PATH
uses: microsoft/setup-msbuild@v1.0.0

- name: Setup NuGet
uses: NuGet/setup-nuget@v1.0.2

- name: Restore NuGet Packages
run: nuget restore QuickDictionary.sln

- name: Build App
run: msbuild QuickDictionary.sln /p:Configuration=Release /p:Platform=x64

- name: Upload Artifact
uses: actions/upload-artifact@v1.0.0
with:
name: compiled_binary_x64
path: QuickDictionary\bin\x64\Release
7 changes: 7 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,9 @@
# QuickDictionary

![.NET Framework](https://github.com/Henry-YSLin/QuickDictionary/workflows/.NET%20Framework/badge.svg)

Speed up the process of looking up a word in dictionaries

## Downloads

Head to Actions to download an auto-compiled binary

0 comments on commit c4d4c06

Please sign in to comment.