forked from microsoft/vs-threading
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSosThreadingTools.csproj
More file actions
34 lines (29 loc) · 1.59 KB
/
Copy pathSosThreadingTools.csproj
File metadata and controls
34 lines (29 loc) · 1.59 KB
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
<Project Sdk="MSBuild.Sdk.Extras">
<PropertyGroup>
<TargetFrameworks>net7.0-windows</TargetFrameworks>
<RuntimeIdentifiers>win-x86;win-x64</RuntimeIdentifiers>
<ExtrasBuildEachRuntimeIdentifier>true</ExtrasBuildEachRuntimeIdentifier>
<EnableDynamicLoading>true</EnableDynamicLoading>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
<HasLceComments>false</HasLceComments>
<!-- This project's build is incomplete without DNNE, which only works on Windows when using a -windows TFM. -->
<IsPackable Condition=" '$(OS)' != 'Windows_NT' ">false</IsPackable>
<PackageId>$(MSBuildProjectName)</PackageId>
<AssemblyName>$(MSBuildProjectName)Managed</AssemblyName>
<DnneNativeBinaryName>$(MSBuildProjectName)</DnneNativeBinaryName>
<DebugSymbols>true</DebugSymbols>
<Description>A WinDBG extension that contains the !DumpAsync command for .NET Framework processes.</Description>
<IncludeBuildOutput>false</IncludeBuildOutput>
<SuppressDependenciesWhenPacking>true</SuppressDependenciesWhenPacking>
<PackageOutputPath>$(RepoRootPath)bin\Packages\$(Configuration)\WinDBGGallery\</PackageOutputPath>
<!-- We build a package with legacy PDBs included for the gallery's convenience. -->
<DebugType>full</DebugType>
<SymbolPackageFormat></SymbolPackageFormat>
<IncludeSymbols>false</IncludeSymbols>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Diagnostics.Runtime.Utilities" />
<PackageReference Include="DNNE" Condition=" '$(OS)' == 'Windows_NT' " />
</ItemGroup>
<Import Project="SosThreadingTools.targets" />
</Project>