Downloads:
8,085
Downloads of v 1.1.0:
5,836
Last Update:
26 Aug 2015
Package Maintainer(s):
Software Author(s):
- Cameron Taggart
Tags:
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
SourceLink
- 1
- 2
- 3
1.1.0 | Updated: 26 Aug 2015
- Software Specific:
- Software Site
- Software License
- Package Specific:
- Package outdated?
- Package broken?
- Contact Maintainers
- Contact Site Admins
- Software Vendor?
- Report Abuse
- Download
Downloads:
8,085
Downloads of v 1.1.0:
5,836
Maintainer(s):
Software Author(s):
- Cameron Taggart
SourceLink 1.1.0
Legal Disclaimer: Neither this package nor Chocolatey Software, Inc. are affiliated with or endorsed by Cameron Taggart. The inclusion of Cameron Taggart trademark(s), if any, upon this webpage is solely to identify Cameron Taggart goods or services and not for commercial purposes.
- 1
- 2
- 3
Some Checks Have Failed or Are Not Yet Complete
Not All Tests Have Passed
Deployment Method: Individual Install, Upgrade, & Uninstall
To install SourceLink, run the following command from the command line or from PowerShell:
To upgrade SourceLink, run the following command from the command line or from PowerShell:
To uninstall SourceLink, run the following command from the command line or from PowerShell:
Deployment Method:
This applies to both open source and commercial editions of Chocolatey.
1. Enter Your Internal Repository Url
(this should look similar to https://community.chocolatey.org/api/v2/)
2. Setup Your Environment
1. Ensure you are set for organizational deployment
Please see the organizational deployment guide
2. Get the package into your environment
Option 1: Cached Package (Unreliable, Requires Internet - Same As Community)-
Open Source or Commercial:
- Proxy Repository - Create a proxy nuget repository on Nexus, Artifactory Pro, or a proxy Chocolatey repository on ProGet. Point your upstream to https://community.chocolatey.org/api/v2/. Packages cache on first access automatically. Make sure your choco clients are using your proxy repository as a source and NOT the default community repository. See source command for more information.
- You can also just download the package and push it to a repository Download
-
Open Source
-
Download the package:
Download - Follow manual internalization instructions
-
-
Package Internalizer (C4B)
-
Run: (additional options)
choco download sourcelink --internalize --source=https://community.chocolatey.org/api/v2/
-
For package and dependencies run:
choco push --source="'INTERNAL REPO URL'"
- Automate package internalization
-
Run: (additional options)
3. Copy Your Script
choco upgrade sourcelink -y --source="'INTERNAL REPO URL'" [other options]
See options you can pass to upgrade.
See best practices for scripting.
Add this to a PowerShell script or use a Batch script with tools and in places where you are calling directly to Chocolatey. If you are integrating, keep in mind enhanced exit codes.
If you do use a PowerShell script, use the following to ensure bad exit codes are shown as failures:
choco upgrade sourcelink -y --source="'INTERNAL REPO URL'"
$exitCode = $LASTEXITCODE
Write-Verbose "Exit code was $exitCode"
$validExitCodes = @(0, 1605, 1614, 1641, 3010)
if ($validExitCodes -contains $exitCode) {
Exit 0
}
Exit $exitCode
- name: Install sourcelink
win_chocolatey:
name: sourcelink
version: '1.1.0'
source: INTERNAL REPO URL
state: present
See docs at https://docs.ansible.com/ansible/latest/modules/win_chocolatey_module.html.
chocolatey_package 'sourcelink' do
action :install
source 'INTERNAL REPO URL'
version '1.1.0'
end
See docs at https://docs.chef.io/resource_chocolatey_package.html.
cChocoPackageInstaller sourcelink
{
Name = "sourcelink"
Version = "1.1.0"
Source = "INTERNAL REPO URL"
}
Requires cChoco DSC Resource. See docs at https://github.com/chocolatey/cChoco.
package { 'sourcelink':
ensure => '1.1.0',
provider => 'chocolatey',
source => 'INTERNAL REPO URL',
}
Requires Puppet Chocolatey Provider module. See docs at https://forge.puppet.com/puppetlabs/chocolatey.
4. If applicable - Chocolatey configuration/installation
See infrastructure management matrix for Chocolatey configuration elements and examples.
This package was approved as a trusted package on 26 Aug 2015.
SourceLink: Source Code On Demand
md5: 31B21A697448A12D1F6161C3FDD596E1 | sha1: 8F0AEB1DDF1BFE19DCA56DBDDAD247C7ED76D358
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>SourceLink.Core</name></assembly>
<members>
<member name="F:SourceLink.PdbFile.RawUrl@">
<summary>
The raw URL to get the source code.
It becomes the SRVSRVTRG, the source server target.
{0} will be substituted with the revision.
%var2% will get evaluated to the file paths passed in.
https://raw.github.com/ctaggart/SourceLink/{0}/%var2%
</summary>
</member>
<member name="P:SourceLink.PdbFile.RawUrl(Microsoft.FSharp.Core.FSharpOption{System.String})">
<summary>
The raw URL to get the source code.
It becomes the SRVSRVTRG, the source server target.
{0} will be substituted with the revision.
%var2% will get evaluated to the file paths passed in.
https://raw.github.com/ctaggart/SourceLink/{0}/%var2%
</summary>
</member>
<member name="P:SourceLink.PdbFile.RawUrl">
<summary>
The raw URL to get the source code.
It becomes the SRVSRVTRG, the source server target.
{0} will be substituted with the revision.
%var2% will get evaluated to the file paths passed in.
https://raw.github.com/ctaggart/SourceLink/{0}/%var2%
</summary>
</member>
<member name="M:SourceLink.PdbFile.TrimEnd">
<summary>
looks for the last used page and removes any free at the end
</summary>
</member>
<member name="M:SourceLink.PdbFile.SaveInfo">
<summary>
writes info stream, root stream, and header
</summary>
</member>
<member name="M:SourceLink.PdbFile.FreeInfo">
<summary>
frees info stream, root stream
</summary>
</member>
<member name="M:SourceLink.PdbFile.Defrag">
<summary>
reads all the streams into memory then writes them back in order, removes free pages
</summary>
</member>
<member name="P:SourceLink.PdbRoot.Stream">
<summary>
PdbStream used for reading the PdbRoot
</summary>
</member>
<member name="M:SourceLink.AppConfigM.Configuration.get.Static(System.String)">
<summary>
loads or creates the config file
</summary>
</member>
<member name="M:SourceLink.Digraph.topSort``1(System.Collections.Generic.IEqualityComparer{``0},Microsoft.FSharp.Core.FSharpFunc{``0,System.Collections.Generic.IEnumerable{``0}},System.Collections.Generic.IEnumerable{``0})">
<summary>
topological sort, depth-first search
pass in the nodes, a comparer for identity, and a function to get the referenced nodes
</summary>
</member>
<member name="M:SourceLink.PdbChecksums.PdbFile.MatchChecksums(SourceLink.PdbFile,System.Collections.Generic.IEnumerable{System.String})">
<summary>
Computes the checksums for the list of files passed in and verifies that the pdb contains them.
Returns a list of matched and unmatched files and their checksums.
Only matches when filenames match.
</summary>
</member>
<member name="M:SourceLink.PdbChecksums.PdbFile.get_FileSet(SourceLink.PdbFile)">
<summary>
A set of files and their checksums
</summary>
</member>
<member name="M:SourceLink.PdbChecksums.PdbFile.get_Files(SourceLink.PdbFile)">
<summary>
A sequence of files and their checksums
</summary>
</member>
<member name="M:SourceLink.PdbFileCreateSrcSrv.PdbFile.CreateSrcSrvEscaped(SourceLink.PdbFile,System.String,System.String,System.Collections.Generic.IEnumerable{System.Tuple{System.String,System.String}})">
<summary>
create the SrcSrv with the paths escaped using Uri.EscapeDataString
</summary>
</member>
<member name="M:SourceLink.PdbFileCreateSrcSrv.PdbFile.CreateSrcSrv(SourceLink.PdbFile,System.String,System.String,System.Collections.Generic.IEnumerable{System.Tuple{System.String,System.String}})">
<summary>
create the SrcSrv
</summary>
</member>
<member name="M:SourceLink.SrcSrv.createEscaped(System.String,System.String,System.Collections.Generic.IEnumerable{System.Tuple{System.String,System.String}})">
<summary>
create the SrcSrv with the paths escaped using Uri.EscapeDataString
</summary>
</member>
<member name="M:SourceLink.SrcSrv.createFormat(System.String,System.String,System.Collections.Generic.IEnumerable{System.Tuple{System.String,System.String}},Microsoft.FSharp.Core.FSharpFunc{System.String,System.String})">
<summary>
creates the SrcSrv with callback for formatting the path
paths is the list of original file system paths and their repository paths
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.File.copyToNo.Static(System.String,System.String)">
<summary>
copies a file to the directory, throws if already exists
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.File.copyTo.Static(System.String,System.String)">
<summary>
copies a file to the directory, overwrites
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.File.copyNo.Static(System.String,System.String)">
<summary>
file copy, throws if already exists
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.File.copy.Static(System.String,System.String)">
<summary>
file copy, overwrite
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.Path.absolute.Static(System.String)">
<summary>
gets the absolute path, no trailing slash if it is a directory
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.Directory.DeleteRec.Static(System.String)">
<summary>
deletes a directory and its contents recursively, no exception if the directory does not exist
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.String.cmpi.Static(System.String,System.String)">
<summary>
string comparison ignoring case, similar to strcmpi
</summary>
</member>
<member name="M:SourceLink.SystemExtensions.String.cmp.Static(System.String,System.String)">
<summary>
string comparison, similar to strcmp
</summary>
</member>
<member name="M:SourceLink.VsBuild.Project.get_ItemsCompileLinkPath(Microsoft.Build.Evaluation.Project)">
<summary>
full path for all items with a build action of compile that are linked
</summary>
</member>
<member name="M:SourceLink.VsBuild.Project.get_ItemsCompilePath(Microsoft.Build.Evaluation.Project)">
<summary>
full path for all items with a build action of compile
</summary>
</member>
<member name="M:SourceLink.VsBuild.Project.get_ItemsCompile(Microsoft.Build.Evaluation.Project)">
<summary>
all items with a build action of compile
</summary>
</member>
</members>
</doc>
md5: 464775C4B08FA7ED83678690867E0521 | sha1: 8536F0E8D81138A2FB07F17A0280C571E973003C
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5" />
</startup>
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="FSharp.Core" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.4.0.0" newVersion="4.4.0.0" />
</dependentAssembly>
<dependentAssembly>
<assemblyIdentity name="System.Threading.Tasks.Dataflow" publicKeyToken="b03f5f7f11d50a3a" culture="neutral" />
<bindingRedirect oldVersion="0.0.0.0-4.5.25.0" newVersion="4.5.25.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
</configuration>
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>SourceLink.Git</name></assembly>
<members>
<member name="M:SourceLink.GitRepo.VerifyFiles(System.Collections.Generic.IEnumerable{System.String})">
<summary>
returns a sorted list of files with checksums that do not match
</summary>
</member>
</members>
</doc>
<?xml version="1.0"?>
<doc>
<assembly>
<name>SourceLink.SymbolStore.CorSym</name>
</assembly>
<members>
<member name="M:SourceLink.SymbolStore.CorSym.ISymUnmanagedReader2.__GetMethodByVersionPreRemap">
<summary>
Get a symbol reader method given a method token and an EC
version number. Version numbers start at 1 and are incremented
each time the method is changed due to an EC operation.
</summary>
</member>
<member name="M:SourceLink.SymbolStore.CorSym.ISymUnmanagedReader2.__GetSymAttributePreRemap">
<summary>
Gets a custom attribute based upon its name. Not to be
confused with Metadata custom attributes, these attributes are
held in the symbol store.
</summary>
</member>
<member name="M:SourceLink.SymbolStore.CorSym.ISymUnmanagedReader2.GetMethodsInDocument(SourceLink.SymbolStore.CorSym.ISymUnmanagedDocument,System.Int32,System.Int32@,SourceLink.SymbolStore.CorSym.ISymUnmanagedMethod[])">
<summary>
Gets every method that has line information in the provided Document.
</summary>
</member>
</members>
</doc>
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>SourceLink.SymbolStore</name></assembly>
<members>
</members>
</doc>
<?xml version="1.0" encoding="utf-8"?>
<doc>
<assembly><name>SourceLink</name></assembly>
<members>
<member name="M:SourceLink.FileSystem.FileIncludes.SetBaseDirectory(System.String)">
<summary>
Sets a directory as BaseDirectory.
</summary>
</member>
<member name="M:SourceLink.FileSystem.FileIncludes.ButNot(System.String)">
<summary>
Ignores files with the given pattern
</summary>
</member>
<member name="M:SourceLink.FileSystem.FileIncludes.And(System.String)">
<summary>
Adds the given pattern to the file includes
</summary>
</member>
<member name="T:SourceLink.FileSystem.FileIncludes">
<summary>
Internal representation of a file set.
</summary>
</member>
<member name="M:SourceLink.FileSystem.op_BangPlus(System.String)">
<summary>
Include prefix operator
</summary>
</member>
<member name="M:SourceLink.FileSystem.op_BangBang(System.String)">
<summary>
Includes a single pattern and scans the files - !! x = AllFilesMatching x
</summary>
</member>
<member name="M:SourceLink.FileSystem.op_MinusMinus(SourceLink.FileSystem.FileIncludes,System.String)">
<summary>
Exclude operator
</summary>
</member>
<member name="M:SourceLink.FileSystem.op_PlusPlus(SourceLink.FileSystem.FileIncludes,System.String)">
<summary>
Add Include operator
</summary>
</member>
<member name="M:SourceLink.FileSystem.SetBaseDir(System.String,SourceLink.FileSystem.FileIncludes)">
<summary>
Sets a directory as baseDirectory for fileIncludes.
</summary>
</member>
<member name="M:SourceLink.FileSystem.Include(System.String)">
<summary>
Logs the given files with the message.
Include files
</summary>
</member>
<member name="T:SourceLink.FileSystem">
<summary>
This module contains a file pattern globbing implementation.
</summary>
</member>
<member name="M:SourceLink.Http.Async.AwaitTaskOne``1(System.Threading.Tasks.Task{``0})">
<summary>
raise the InnerException instead of AggregateException if there is just one
</summary>
</member>
<member name="M:SourceLink.Logging.traceWarnfn``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.traceErrorfn``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.traceWarn(System.String)">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.traceError(System.String)">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.traceColored(System.ConsoleColor,System.String)">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.verbosefn``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.traceVerbose(System.String)">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.tracef``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.trace(System.String)">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.tracefn``1(Microsoft.FSharp.Core.PrintfFormat{``0,Microsoft.FSharp.Core.Unit,System.String,Microsoft.FSharp.Core.Unit})">
<summary>
[omit]
</summary>
</member>
<member name="M:SourceLink.Logging.tracen(System.String)">
<summary>
[omit]
</summary>
</member>
<member name="P:SourceLink.Logging.monitor">
<summary>
[omit]
</summary>
</member>
<member name="T:SourceLink.Utils">
<summary>
Contains methods for IO.
</summary>
</member>
</members>
</doc>
Log in or click on link to see number of positives.
- SourceLink.1.1.0.nupkg (a02dc5be0efa) - ## / 56
- FSharp.Core.dll (e62f87d61252) - ## / 55
- LibGit2Sharp.dll (42d365364925) - ## / 62
- Microsoft.Build.dll (d7f896cd1483) - ## / 56
- Microsoft.Build.Framework.dll (b9d141670fb8) - ## / 57
- Microsoft.Build.Utilities.Core.dll (5c0dd093c2c7) - ## / 57
- pdbstr.exe (0544bb42c8df) - ## / 57
- SourceLink.Core.dll (b05401bb4d45) - ## / 56
- SourceLink.exe (924c47ab3f9a) - ## / 56
- SourceLink.Git.dll (11db8b623180) - ## / 56
- SourceLink.SymbolStore.CorSym.dll (65dd29926697) - ## / 56
- SourceLink.SymbolStore.dll (6c8a51007af9) - ## / 56
- srcsrv.dll (e5796471f867) - ## / 57
- System.Threading.Tasks.Dataflow.dll (55a2278c81d3) - ## / 57
- UnionArgParser.dll (bf850f93be5c) - ## / 55
- git2-e0902fb.dll (fb638b521816) - ## / 61
In cases where actual malware is found, the packages are subject to removal. Software sometimes has false positives. Moderators do not necessarily validate the safety of the underlying software, only that a package retrieves software from the official distribution point and/or validate embedded software against official distribution point (where distribution rights allow redistribution).
Chocolatey Pro provides runtime protection from possible malware.
Add to Builder | Version | Downloads | Last Updated | Status |
---|---|---|---|---|
SourceLink 1.1.0 | 5836 | Wednesday, August 26, 2015 | Approved | |
SourceLink 1.0.0 | 475 | Friday, July 3, 2015 | Approved | |
SourceLink 0.5.0 | 1038 | Sunday, March 22, 2015 | Approved |
This package has no dependencies.
Ground Rules:
- This discussion is only about SourceLink and the SourceLink package. If you have feedback for Chocolatey, please contact the Google Group.
- This discussion will carry over multiple versions. If you have a comment about a particular version, please note that in your comments.
- The maintainers of this Chocolatey Package will be notified about new comments that are posted to this Disqus thread, however, it is NOT a guarantee that you will get a response. If you do not hear back from the maintainers after posting a message below, please follow up by using the link on the left side of this page or follow this link to contact maintainers. If you still hear nothing back, please follow the package triage process.
- Tell us what you love about the package or SourceLink, or tell us what needs improvement.
- Share your experiences with the package, or extra configuration or gotchas that you've found.
- If you use a url, the comment will be flagged for moderation until you've been whitelisted. Disqus moderated comments are approved on a weekly schedule if not sooner. It could take between 1-5 days for your comment to show up.