Skip to content

Commit 11e215c

Browse files
committed
update.
1 parent 33d576b commit 11e215c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/dotnet-svcutil/lib/src/Shared/ProjectDependency.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ private ProjectDependency(string filePath = "", string packageName = "", string
153153

154154
this.ReferenceIdentity = this.DependencyType == ProjectDependencyType.Package || this.DependencyType == ProjectDependencyType.Tool || !string.IsNullOrWhiteSpace(packageName) ?
155155
string.Format(CultureInfo.InvariantCulture, "{0}, {{{1}, {2}}}", this.AssemblyName, this.Name, this.Version) :
156-
this.AssemblyName;
156+
string.Format(CultureInfo.InvariantCulture, "{0}, {1}", this.AssemblyName, this.Version);
157157

158158
this.IsFramework = this.Name == NetCoreAppPackageID || this.Name == NetStandardLibraryPackageID;
159159
}

src/dotnet-svcutil/lib/tests/Baselines/MultiTargetTypeReuse/TypeReuseClient/ServiceReference/dotnet-svcutil.params.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
],
1111
"outputFile": "Reference.cs",
1212
"references": [
13-
"BinLib"
13+
"BinLib, *"
1414
],
1515
"targetFramework": "N.N",
1616
"typeReuseMode": "All"

0 commit comments

Comments
 (0)