Skip to content

Commit b82d1ed

Browse files
authored
Fixed Microsoft.Windows.Management.Deployment.Projection.csproj
Microsoft.Windows.Management.Deployment.Projection.csproj had a 2nd <CSRWinRTIncludes> to resolve the DynDep type dependency when that property is a singular 'namespace of the project's output' so the projection had DynDep types and not PkgMgmt. Changed it to a <ProjectReference Include=...\DynDep.csproj> and happiness. Verified projection assembly content via ILSpy. KUDOS to Steve Otteson for the magic incantation!
1 parent c9cab17 commit b82d1ed

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

dev/Projections/CS/Microsoft.Windows.Management.Deployment.Projection/Microsoft.Windows.Management.Deployment.Projection.csproj

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@
2626

2727
<PropertyGroup>
2828
<CSWinRTIncludes>Microsoft.Windows.Management.Deployment</CSWinRTIncludes>
29-
<CSWinRTIncludes>Microsoft.Windows.ApplicationModel.DynamicDependency</CSWinRTIncludes>
3029
<CSWinRTWindowsMetadata>10.0.17763.0</CSWinRTWindowsMetadata>
3130
<WindowsSdkPackageVersion>10.0.17763.$(CsWinRTDependencyWindowsSdkVersionSuffixPackageVersion)</WindowsSdkPackageVersion>
3231
<ProduceReferenceAssembly>false</ProduceReferenceAssembly>
@@ -57,4 +56,8 @@
5756
</Reference>
5857
</ItemGroup>
5958

59+
<ItemGroup>
60+
<ProjectReference Include="..\Microsoft.Windows.ApplicationModel.DynamicDependency\Microsoft.Windows.ApplicationModel.DynamicDependency.Projection.csproj" />
61+
</ItemGroup>
62+
6063
</Project>

0 commit comments

Comments
 (0)