|
1 | 1 | <Project DefaultTargets="Build">
|
2 |
| - <PropertyGroup> |
3 |
| - <PackageConfigurations> |
4 |
| - netcoreapp2.0 |
5 |
| - </PackageConfigurations> |
6 |
| - <BuildConfigurations> |
7 |
| - $(PackageConfigurations) |
8 |
| - </BuildConfigurations> |
9 |
| - </PropertyGroup> |
10 |
| - |
11 | 2 | <Import Project="Directory.Build.props" />
|
12 | 3 |
|
13 | 4 | <Target Name="GetGenFacadesInputs">
|
|
49 | 40 | FacadePath="$(GenFacadesOutputPath)"
|
50 | 41 | ProducePdb="$(ProducePdb)"
|
51 | 42 | IgnoreMissingTypes="$(GenFacadesIgnoreMissingTypes)"
|
52 |
| - IgnoreBuildAndRevisionMismatch="$(GenFacadesIgnoreBuildAndRevisionMismatch)" |
53 | 43 | ForceZeroVersionSeeds="$(GenFacadesForceZeroVersionSeeds)"
|
54 | 44 | BuildPartialReferenceFacade="$(GenFacadesBuildPartialReferenceFacade)"
|
55 | 45 | />
|
|
98 | 88 | <FileWrites Include="@(BinPlaceItem)" />
|
99 | 89 | </ItemGroup>
|
100 | 90 | </Target>
|
101 |
| - |
102 |
| - <Target Name="GetCompatibilityShimsToPackage" |
103 |
| - BeforeTargets="GetFilesToPackage"> |
104 |
| - <ItemGroup> |
105 |
| - <!-- All the shims defined in netfxreference.props produced by this project need to be included in the ref path. --> |
106 |
| - <FilesToPackage Include="@(NetFxReference->'$(GenFacadesOutputPath)%(Identity).dll')"> |
107 |
| - <TargetFramework>netcoreapp2.0</TargetFramework> |
108 |
| - <TargetPath>/ref/netcoreapp2.0</TargetPath> |
109 |
| - </FilesToPackage> |
110 |
| - |
111 |
| - <!-- For the implementation path in the package we only want to include the non-manual shims produced by this project |
112 |
| - and the manual shims that we produce against the 2.0.0 implementation will be included to the shims package through |
113 |
| - a project reference, therefore we need to exclude them here. --> |
114 |
| - <_manualShimProjects Include="manual\*.csproj" /> |
115 |
| - <_manualShims Include="@(_manualShimProjects->'%(FileName)')" /> |
116 |
| - <_libShims Include="@(NetFxReference)" Exclude="@(_manualShims)" /> |
117 |
| - </ItemGroup> |
118 |
| - <PropertyGroup> |
119 |
| - <TargetPath>@(_libShims->'$(GenFacadesOutputPath)%(Identity).dll')</TargetPath> |
120 |
| - </PropertyGroup> |
121 |
| - </Target> |
122 | 91 | </Project>
|
0 commit comments