Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Mono.Debugging.csproj « Mono.Debugging - github.com/mono/debugger-libs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7f4008173dc3bc5c109eea90169248a537abbacc (plain)
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
<Project Sdk="Microsoft.NET.Sdk">

  <PropertyGroup>
    <TargetFrameworks>net6.0;net472</TargetFrameworks>
    <SignAssembly>True</SignAssembly>
    <AssemblyOriginatorKeyFile>mono.debugging.snk</AssemblyOriginatorKeyFile>
    <NoWarn>1591;1573</NoWarn>
    <Execution>
      <Execution clr-version="Net_2_0" />
    </Execution>
    <DocumentationFile>bin\$(Configuration)\Mono.Debugging.xml</DocumentationFile>
    <DebugSymbols>True</DebugSymbols>
    <DebugType>embedded</DebugType>
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
  </PropertyGroup>

  <Import Project="..\Mono.Debugging.settings" />

  <ItemGroup>
    <PackageReference Include="System.Buffers" Version="4.5.0" />
    <PackageReference Include="System.Collections.Immutable" Version="1.5.0" />
    <PackageReference Include="Microsoft.CodeAnalysis.CSharp" Version="2.8.0" />
  </ItemGroup>

</Project>