-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathonec-debug-adapter.csproj
27 lines (23 loc) · 1.06 KB
/
onec-debug-adapter.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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<RootNamespace>Onec.DebugAdapter</RootNamespace>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<OutputType>Exe</OutputType>
<AssemblyName>OnecDebugAdapter</AssemblyName>
<NoWarn>$(NoWarn),CA2254</NoWarn>
</PropertyGroup>
<ItemGroup>
<Compile Remove="DebugServer\Messages\**"/>
<EmbeddedResource Remove="DebugServer\Messages\**"/>
<None Remove="DebugServer\Messages\**"/>
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0"/>
<PackageReference Include="Microsoft.Extensions.Hosting.Abstractions" Version="8.0.0"/>
<PackageReference Include="Microsoft.VisualStudio.Shared.VSCodeDebugProtocol" Version="17.10.10123.1"/>
<PackageReference Include="RestSharp" Version="112.0.0"/>
<PackageReference Include="System.Threading.Tasks.Dataflow" Version="8.0.1"/>
</ItemGroup>
</Project>