@@ -28,7 +28,6 @@ type Resolution = {
28
28
FullPath : string
29
29
IsNotImplementationReference: string
30
30
NativePath : string
31
- AppHostRuntimeIdentifier : string
32
31
InitializeSourcePath : string }
33
32
34
33
@@ -72,7 +71,7 @@ module ProjectFile =
72
71
73
72
[| for line in lines do
74
73
let fields = line.Split( ',' )
75
- if fields.Length < 8 then raise ( new System.InvalidOperationException( sprintf " Internal error - Invalid resolutions file format '%s '" line))
74
+ if fields.Length < 7 then raise ( new System.InvalidOperationException( sprintf " Internal error - Invalid resolutions file format '%s '" line))
76
75
else {
77
76
NugetPackageId = fields.[ 0 ]
78
77
NugetPackageVersion = fields.[ 1 ]
@@ -81,7 +80,6 @@ module ProjectFile =
81
80
IsNotImplementationReference = fields.[ 4 ]
82
81
InitializeSourcePath = fields.[ 5 ]
83
82
NativePath = fields.[ 6 ]
84
- AppHostRuntimeIdentifier = fields.[ 7 ]
85
83
}
86
84
|]
87
85
@@ -179,7 +177,7 @@ $(PACKAGEREFERENCES)
179
177
180
178
<ItemGroup>
181
179
<ResolvedReferenceLines Remove='*' />
182
- <ResolvedReferenceLines Include='%(InteractiveResolvedFile.NugetPackageId),%(InteractiveResolvedFile.NugetPackageVersion),%(InteractiveResolvedFile.PackageRoot),%(InteractiveResolvedFile.FullPath),%(InteractiveResolvedFile.IsNotImplementationReference),%(InteractiveResolvedFile.InitializeSourcePath),%(NativeIncludeRoots.Path),$(AppHostRuntimeIdentifier) ' KeepDuplicates="false" />
180
+ <ResolvedReferenceLines Include='%(InteractiveResolvedFile.NugetPackageId),%(InteractiveResolvedFile.NugetPackageVersion),%(InteractiveResolvedFile.PackageRoot),%(InteractiveResolvedFile.FullPath),%(InteractiveResolvedFile.IsNotImplementationReference),%(InteractiveResolvedFile.InitializeSourcePath),%(NativeIncludeRoots.Path)' KeepDuplicates="false" />
183
181
</ItemGroup>
184
182
185
183
<WriteLinesToFile Lines='@(ResolvedReferenceLines)'
0 commit comments