-
Notifications
You must be signed in to change notification settings - Fork 99
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[POC] Naming cleanup #203
[POC] Naming cleanup #203
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Name changes themselves look good but I think the important thing is to help test and validate by checking out the branch and building it (via VS, CLI, etc). I will be doing a bit of that.
@@ -63,7 +63,7 @@ partial class Build | |||
foreach (var architecture in ArchitecturesForPlatform) | |||
{ | |||
var source = NativeProfilerProject.Directory / "bin" / BuildConfiguration / architecture.ToString() / | |||
"OpenTelemetry.AutoInstrumentation.ClrProfiler.Native.dll"; | |||
$"{NativeProfilerProject.Name}.dll"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
@@ -17,7 +17,7 @@ | |||
InvokedTargets = new[] { nameof(Workflow) })] | |||
partial class Build : NukeBuild | |||
{ | |||
public static int Main () => Execute<Build>(x => x.BuildTracer); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How did you notice the spacing issue? StyleCop on VS?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
VS auto formatting (ctrl + f) is in hand like ctrl + s 😄
- also I think it's entry point and I was playing around with that line too
@RassK I got the following trying to run the ./poc.sh via Git bash on Windows:
What will be the way to run |
After building with nuke on VS dev prompt I am getting
Since there is a Nowadays, I think everything should simply be LF only since nowadays even notepad understand them. |
Maybe you are missing clean? poc.sh directs build to build_poc.sh the same one that GH Workflow is using. |
Interesting. Can you try playing around with it, I cannot replicate: |
For me, everything is fine as well. I suggest adding a |
I have run a search for "Datadog" in VS Code and found:
I think we can add |
Likely, the diff I'm seeing is because I use
|
# Conflicts: # .github/dependabot.yml # OpenTelemetry.AutoInstrumentation.sln # build/nuke/Build.Steps.Windows.cs # build_poc.sh # dev/envvars.sh # src/OpenTelemetry.AutoInstrumentation.ClrProfiler.Native/CMakeLists.txt
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's merge it 😉
Fixes #