How to find compiled function source code in R package?
Date : March 29 2020, 07:55 AM
this will help On a linux box, you use the grep command. In emacs, you build a tags file. In other editors there's probably similar functions. In Windows, can't you right click on a folder, hit Search... and fill in the 'A word or phrase in the file" box. Or install cygwin and use the grep command. Amazes me that people are using computers without basic skills such as finding a string in a file...
|
Where can I find source code of Microsoft.AspNet.WebApi NuGet package?
Date : March 29 2020, 07:55 AM
fixed the issue. Will look into that further I was looking for the exact same thing and I finally found it. This page lists out the versions and where they correspond in the source. It is v.3.2.3 that maps to 5.2.3. Repository Tags and Version Numbers
|
Where can I find the K-means source code in pyspark.ml package?
Date : March 29 2020, 07:55 AM
this one helps. Spark is primarily implemented in Scala, and PySpark wraps some subset of the API to expose it in Python. You can find the algorithm's implementation in the MLLib codebase.
|
How to package and deploy a NuGet package with symbols and source code so that debugger can use THAT source code?
Tag : chash , By : user107021
Date : March 29 2020, 07:55 AM
will be helpful for those in need Some fundamentals: the debugger needs PDBs to enable debugging a symbol package should contain PDBs (it is not merely a package with a different extension) this symbol package should be published to a symbol repository that Visual Studio debugger can request symbols from
|
Cannot find Symbol Source code when debugging Nuget package
Date : March 29 2020, 07:55 AM
To fix the issue you can do What's likely happening is that the PDB file that you have added to your NuGet package is not the indexed file. It is the original file as built by MSBuild. Are you using TeamCity? Do you have only one build configuration? If so, then this is certainly the case. MyProject.sln
MyProject/bin/Release/MyProject.pdb => MyProject/bin/Release
MyProject/bin/Release/MyProject.dll => MyProject/bin/Release
MyProject/MyProject.csproj => MyProject
MyProject/MyProject.nuspec => MyProject
MyProject/packages.config => MyProject
**/*
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<copyright>Copyright 2018</copyright>
</metadata>
<files>
<file src="bin\Release\MyProject.dll" target="lib\net461" />
<file src="bin\Release\MyProject.pdb" target="lib\net461" />
</files>
</package>
|