Skip to content
This repository was archived by the owner on Nov 2, 2022. It is now read-only.

Commit 09c19d0

Browse files
authored
Merge pull request #3 from desplesda/feature/no-runtime-identifier
Don't specify a runtime identifier in YarnLanguageServer.csproj
2 parents c2a19d7 + 6f5d49b commit 09c19d0

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

LanguageServer/YarnLanguageServer.csproj

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,9 @@
1-
<Project Sdk="Microsoft.NET.Sdk">
1+
<Project Sdk="Microsoft.NET.Sdk">
22

33
<PropertyGroup>
44
<OutputType>Exe</OutputType>
55
<IsPackable>false</IsPackable>
66
<TargetFramework>net5.0</TargetFramework>
7-
<RuntimeIdentifier>win7-x64</RuntimeIdentifier>
87
<LangVersion>latest</LangVersion>
98
<StartupObject></StartupObject>
109
<ApplicationIcon />

VSCodeExtension/src/extension.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export async function activate(context: ExtensionContext) {
2121
const languageServerExe = dotnetPath;
2222
const languageServerPath =
2323
isDebugMode() ?
24-
path.resolve(context.asAbsolutePath("../LanguageServer/bin/Debug/net5.0/win7-x64/YarnLanguageServer.dll")) :
24+
path.resolve(context.asAbsolutePath("../LanguageServer/bin/Debug/net5.0/YarnLanguageServer.dll")) :
2525
path.resolve(context.asAbsolutePath("/Server/YarnLanguageServer.dll"));
2626

2727
let languageServerOptions: ServerOptions = {

0 commit comments

Comments
 (0)