我怎样才能找到 MvcSiteMapProvider.pdb 版本 2.0.0
How can I find MvcSiteMapProvider.pdb version 2.0.0
我用谷歌搜索 MvcSiteMapProvider.pdb
version 2.0.0
但我找不到。
我能找到的最低版本是 2.3.1
in https://www.nuget.org/packages/MvcSiteMapProvider/2.3.1
我只能找到一个Github link,也就是https://github.com/maartenba/MvcSiteMapProvider. I do suggest reading the ReadME, which will tell you what to do to install MvcSiteMapProvider. If you don't want to go over the entire README, here's the link to all the packages: https://www.nuget.org/packages?q=MvcSiteMapProvider。选择您需要的那个,按照说明操作,然后您就可以开始了。
版本 2.0.0
发布的原始 announcement 显示该项目当时托管在 CodePlex 上。
后来该项目移至 Github,但似乎并未包括所有版本。
幸运的是,原始 CodePlex page contains a download archive link 到包含这些缺失版本的 .zip
文件;还有 2.0.0
版本,包括编译的 .dll
和 .pdb
文件。
步骤
解压缩 mvcsitemap.zip
文件
转到 releases
文件夹。
releases
文件夹中的 releaseList.json
文件包含下面的 json
。
{
"Id": "6",
"Name": "MvcSiteMapProvider 2.0.0",
"DevelopmentStatus": "Stable",
"Description": "This is the first release for MvcSiteMapProvider version 2.0.\n\n* It is not backwards compatible with older MvcSiteMapProvider versions. *",
"ReleasedDatge": "0001-01-01T00:00:00",
"ModifiedDate": "2010-06-15T05:55:44.23-07:00",
"Files": [
{
"Id": "fe1d566d-937c-4e4b-9aac-fba4c1c4869b",
"FileName": "MvcSiteMapProvider 2.0.0.zip",
"Url": "./6/fe1d566d-937c-4e4b-9aac-fba4c1c4869b",
"Type": "Application",
"UploadDate": "2010-06-15T05:55:43.027-07:00"
},
{
"Id": "56c22bcd-36bc-4734-84d6-a63502bbb2a4",
"FileName": "MvcSiteMapProvider 2.0.0 Sample Application.zip",
"Url": "./6/56c22bcd-36bc-4734-84d6-a63502bbb2a4",
"Type": "Example",
"UploadDate": "2010-06-15T05:55:43.06-07:00"
}
]
}
上面的 json
显示您需要将名称为 6
的文件夹中的文件 fe1d566d-937c-4e4b-9aac-fba4c1c4869b
重命名为 .zip
文件,例如MvcSiteMapProvider 2.0.0.zip
.
解压缩的 MvcSiteMapProvider 2.0.0.zip
文件包含 MvcSiteMapProvider.dll
及其相应的 MvcSiteMapProvider.pdb
文件。
一张图片:
我用谷歌搜索 MvcSiteMapProvider.pdb
version 2.0.0
但我找不到。
我能找到的最低版本是 2.3.1
in https://www.nuget.org/packages/MvcSiteMapProvider/2.3.1
我只能找到一个Github link,也就是https://github.com/maartenba/MvcSiteMapProvider. I do suggest reading the ReadME, which will tell you what to do to install MvcSiteMapProvider. If you don't want to go over the entire README, here's the link to all the packages: https://www.nuget.org/packages?q=MvcSiteMapProvider。选择您需要的那个,按照说明操作,然后您就可以开始了。
版本 2.0.0
发布的原始 announcement 显示该项目当时托管在 CodePlex 上。
后来该项目移至 Github,但似乎并未包括所有版本。
幸运的是,原始 CodePlex page contains a download archive link 到包含这些缺失版本的 .zip
文件;还有 2.0.0
版本,包括编译的 .dll
和 .pdb
文件。
步骤
解压缩
mvcsitemap.zip
文件转到
releases
文件夹。releases
文件夹中的releaseList.json
文件包含下面的json
。
{
"Id": "6",
"Name": "MvcSiteMapProvider 2.0.0",
"DevelopmentStatus": "Stable",
"Description": "This is the first release for MvcSiteMapProvider version 2.0.\n\n* It is not backwards compatible with older MvcSiteMapProvider versions. *",
"ReleasedDatge": "0001-01-01T00:00:00",
"ModifiedDate": "2010-06-15T05:55:44.23-07:00",
"Files": [
{
"Id": "fe1d566d-937c-4e4b-9aac-fba4c1c4869b",
"FileName": "MvcSiteMapProvider 2.0.0.zip",
"Url": "./6/fe1d566d-937c-4e4b-9aac-fba4c1c4869b",
"Type": "Application",
"UploadDate": "2010-06-15T05:55:43.027-07:00"
},
{
"Id": "56c22bcd-36bc-4734-84d6-a63502bbb2a4",
"FileName": "MvcSiteMapProvider 2.0.0 Sample Application.zip",
"Url": "./6/56c22bcd-36bc-4734-84d6-a63502bbb2a4",
"Type": "Example",
"UploadDate": "2010-06-15T05:55:43.06-07:00"
}
]
}
上面的
json
显示您需要将名称为6
的文件夹中的文件fe1d566d-937c-4e4b-9aac-fba4c1c4869b
重命名为.zip
文件,例如MvcSiteMapProvider 2.0.0.zip
.解压缩的
MvcSiteMapProvider 2.0.0.zip
文件包含MvcSiteMapProvider.dll
及其相应的MvcSiteMapProvider.pdb
文件。
一张图片: