Skip to content
This repository has been archived by the owner on Apr 29, 2021. It is now read-only.

Commit

Permalink
Merge pull request #27 from dafny-lang/update-uris
Browse files Browse the repository at this point in the history
Changed URIs to point to the new repository location.
  • Loading branch information
camrein authored Nov 19, 2020
2 parents 8284cd5 + f9af7cb commit 5ce86de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/dotnet-core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
with:
file: ./Source/${{env.coverageFile}}
- name: Upload Artifacts
if: ${{github.ref == 'master'}}
if: ${{github.ref == 'refs/heads/master'}}
uses: actions/upload-artifact@v2
with:
name: DafnyLS-${{matrix.suffix}}
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# DafnyLS

[![.NET Core](https://github.com/DafnyVSCode/language-server-csharp/workflows/.NET%20Core/badge.svg)](https://github.com/DafnyVSCode/language-server-csharp/actions?query=workflow%3A%22.NET+Core%22)
[![.NET Core](https://github.com/dafny-lang/language-server-csharp/workflows/.NET%20Core/badge.svg)](https://github.com/dafny-lang/language-server-csharp/actions?query=workflow%3A%22.NET+Core%22)
[![Code coverage](https://codecov.io/github/DafnyVSCode/language-server-csharp/branch/master/graph/badge.svg)](https://codecov.io/github/DafnyVSCode/language-server-csharp/branch/master)

*DafnyLS* is a [language server](https://microsoft.github.io/language-server-protocol/) for [Dafny](https://github.com/dafny-lang/dafny). It is implemented in C# on .NET Core 3.1 with OmniSharp's [C# Language Server Protocol](https://github.com/OmniSharp/csharp-language-server-protocol).
Expand All @@ -10,7 +10,7 @@
Clone the DafnyLS repo and its submodules transitively.

```sh
git clone https://github.com/DafnyVSCode/language-server-csharp
git clone https://github.com/dafny-lang/language-server-csharp
git submodule update --init --recursive
```

Expand All @@ -22,7 +22,7 @@ dotnet build -c Release Source/

## Running

Place the [Z3 executable](https://github.com/Z3Prover/z3/releases/tag/z3-4.8.4) in the language server's root directory or within the `z3/bin` subdirectory (already present in the [release](https://github.com/DafnyVSCode/language-server-csharp/releases) packages). If not on windows, ensure that the executable has execution permissions:
Place the [Z3 executable](https://github.com/Z3Prover/z3/releases/tag/z3-4.8.4) in the language server's root directory or within the `z3/bin` subdirectory (already present in the [release](https://github.com/dafny-lang/language-server-csharp/releases) packages). If not on windows, ensure that the executable has execution permissions:

```sh
chmod +x ./bin/z3
Expand Down

0 comments on commit 5ce86de

Please sign in to comment.