Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
166 changes: 165 additions & 1 deletion Datadog.Profiler.sln

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions profiler/Directory.Build.targets
Original file line number Diff line number Diff line change
Expand Up @@ -30,17 +30,20 @@
<PropertyGroup>
<NativeWindowsDeployFilesSrcDir>$(BaseOutputPath)\$(ConfigBasedRelativeOutputPath)\profiler\src\ProfilerEngine\Datadog.Profiler.Native.Windows</NativeWindowsDeployFilesSrcDir>
<NativeLinuxDeployFilesSrcDir>$(BaseOutputPath)\$(ConfigBasedRelativeOutputPath)\profiler\src\ProfilerEngine\Datadog.Profiler.Native.Linux</NativeLinuxDeployFilesSrcDir>
<NativeWindowsTestDeployFilesSrcDir>$(BaseOutputPath)\$(ConfigBasedRelativeOutputPath)\profiler\test\Datadog.TestProfiler</NativeWindowsTestDeployFilesSrcDir>
</PropertyGroup>

<Target Name="CopyVcpkgPDBs" AfterTargets="Build">
<Message Text="[PrepareDeployDirectory] NativeWindowsDeployFilesSrcDir: '$(NativeWindowsDeployFilesSrcDir)'" Importance="high" />
<Message Text="[PrepareDeployDirectory] NativeLinuxDeployFilesSrcDir: '$(NativeLinuxDeployFilesSrcDir)'" Importance="high" />
<Message Text="[PrepareDeployDirectory] NativeWindowsTestDeployFilesSrcDir: '$(NativeWindowsTestDeployFilesSrcDir)'" Importance="high" />
<ItemGroup>
<VcpkgPDBs Condition="'$(Configuration)'=='Release'" Include="$(VcpkgInstalledDir)\$(VcpkgTriplet)\bin\*.pdb" />
<VcpkgPDBs Condition="'$(Configuration)'=='Debug'" Include="$(VcpkgInstalledDir)\$(VcpkgTriplet)\debug\bin\*.pdb" />
</ItemGroup>
<Copy SourceFiles="@(VcpkgPDBs)" DestinationFiles="@(VcpkgPDBs->'$(DeployDirectoryBase)\%(RecursiveDir)%(Filename)%(Extension)')" />
<Copy SourceFiles="@(VcpkgPDBs)" DestinationFiles="@(VcpkgPDBs->'$(NativeWindowsDeployFilesSrcDir)\%(Filename)%(Extension)')" />
<Copy SourceFiles="@(VcpkgPDBs)" DestinationFiles="@(VcpkgPDBs->'$(NativeWindowsTestDeployFilesSrcDir)\%(Filename)%(Extension)')" />
</Target>
<Target Name="CleanVcpkPDBs" AfterTargets="Clean">
<ItemGroup>
Expand Down
14 changes: 14 additions & 0 deletions profiler/src/Demos/Datadog.Demos.sln
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.HttpRequest", "Samp
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.WaitHandles", "Samples.WaitHandles\Samples.WaitHandles.csproj", "{AA7CFA08-E818-4BDA-9495-F5154E102248}"
EndProject
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Samples.TestProfiler", "Samples.TestProfiler\Samples.TestProfiler.csproj", "{0679795E-7D22-45EC-82CF-2A4882549224}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Expand Down Expand Up @@ -139,6 +141,18 @@ Global
{AA7CFA08-E818-4BDA-9495-F5154E102248}.Release|x64.Build.0 = Release|x64
{AA7CFA08-E818-4BDA-9495-F5154E102248}.Release|x86.ActiveCfg = Release|x86
{AA7CFA08-E818-4BDA-9495-F5154E102248}.Release|x86.Build.0 = Release|x86
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|Any CPU.Build.0 = Debug|Any CPU
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|x64.ActiveCfg = Debug|x64
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|x64.Build.0 = Debug|x64
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|x86.ActiveCfg = Debug|x86
{0679795E-7D22-45EC-82CF-2A4882549224}.Debug|x86.Build.0 = Debug|x86
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|Any CPU.ActiveCfg = Release|Any CPU
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|Any CPU.Build.0 = Release|Any CPU
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|x64.ActiveCfg = Release|x64
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|x64.Build.0 = Release|x64
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|x86.ActiveCfg = Release|x86
{0679795E-7D22-45EC-82CF-2A4882549224}.Release|x86.Build.0 = Release|x86
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
Expand Down
Loading
Loading