File tree 3 files changed +10
-4
lines changed
3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change @@ -49,8 +49,14 @@ tests/Agent/IntegrationTests/.vs/config/applicationhost.config
49
49
.DS_Store
50
50
51
51
# Local profiler build artificats
52
- src /Agent /_profilerBuild /* Debug
53
- src /Agent /NewRelic /Profiler /Profiler /VersionInfo.h
52
+ /src /Agent /_profilerBuild /* Debug
53
+ /src /Agent /NewRelic /Profiler /Profiler /VersionInfo.h
54
+ /src /Agent /NewRelic /Profiler /CMakeFiles
55
+ /src /Agent /NewRelic /Profiler /CMakeCache.txt
56
+ /src /Agent /NewRelic /Profiler /cmake_install.cmake
57
+ /src /Agent /NewRelic /Profiler /Makefile
58
+ /src /Agent /_profilerBuild /x64-Release
59
+ /src /Agent /_profilerBuild /x86-Release
54
60
55
61
# Ignore any signing keys used in Linux packaging
56
62
build /Linux /keys
Original file line number Diff line number Diff line change 13
13
</Target >
14
14
15
15
<ItemGroup >
16
- <PackageReference Include =" NewRelic.Agent.Internal.Profiler" Version =" 10.33.1.6 " />
16
+ <PackageReference Include =" NewRelic.Agent.Internal.Profiler" Version =" 10.34.0.14 " />
17
17
</ItemGroup >
18
18
19
19
</Project >
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ namespace NewRelic { namespace Profiler { namespace MethodRewriter
55
55
// some special name methods seem to give us trouble, but allow constructors to
56
56
// be instrumented
57
57
if (IsMdSpecialName (function->GetMethodAttributes ()) &&
58
- ! IsMdInstanceInitializerW ( function->GetMethodAttributes (), function-> GetFunctionName (). c_str () )) {
58
+ function->GetFunctionName () != _X ( " .ctor " )) {
59
59
LogError (L" Skipping SpecialName method: " , function->ToString ());
60
60
return false ;
61
61
}
You can’t perform that action at this time.
0 commit comments