forked from microsoft/qsharp-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLanguageServer.csproj
40 lines (40 loc) · 2.03 KB
/
LanguageServer.csproj
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<Project Sdk="Microsoft.NET.Sdk">
<Import Project="..\..\Common\AssemblyCommon.props" />
<PropertyGroup>
<AssemblyName>Microsoft.Quantum.QsLanguageServer</AssemblyName>
<TargetFramework>netcoreapp3.1</TargetFramework>
<OutputType>Exe</OutputType>
</PropertyGroup>
<PropertyGroup>
<!-- Workaround for https://github.com/dotnet/cli/issues/9514, see https://stackoverflow.com/a/51644988/267841. -->
<TargetLatestRuntimePatch>true</TargetLatestRuntimePatch>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>DEBUG;TRACE</DefineConstants>
</PropertyGroup>
<ItemGroup>
<ProjectReference Include="..\CompilationManager\CompilationManager.csproj">
<Private>true</Private>
</ProjectReference>
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommandLineParser" Version="2.6.0" />
<PackageReference Include="Microsoft.Build.Locator" Version="1.2.6" />
<PackageReference Include="Microsoft.Build" Version="16.3.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Framework" Version="16.3.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.Build.Utilities.Core" Version="16.3.0" ExcludeAssets="runtime" />
<PackageReference Include="Microsoft.VisualStudio.LanguageServer.Protocol" Version="16.3.57" />
<PackageReference Include="Newtonsoft.Json" Version="12.0.2" />
<PackageReference Include="StreamJsonRpc" Version="2.2.34" />
<PackageReference Include="StyleCop.Analyzers" Version="1.2.0-beta.164" PrivateAssets="All" />
<PackageReference Include="System.Reactive" Version="4.2.0" />
<PackageReference Include="System.Reflection.Metadata" Version="1.7.0" />
<PackageReference Include="System.Security.Permissions" Version="4.6.0" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\..\Common\DelaySign.cs" Link="Properties\DelaySign.cs" />
</ItemGroup>
<ItemGroup>
<AdditionalFiles Include="..\..\Common\stylecop.json" Link="stylecop.json" />
</ItemGroup>
</Project>