forked from dotnet/corefx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathILLink.depproj
More file actions
31 lines (31 loc) · 1.36 KB
/
ILLink.depproj
File metadata and controls
31 lines (31 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>netcoreapp1.1</TargetFramework>
<OutputPath>$(ILLinkDir)</OutputPath>
<EnableBinPlacing>false</EnableBinPlacing>
<ILLinkTasksPackageId>illink.tasks</ILLinkTasksPackageId>
<ILLinkTasksPackageVersion>0.1.5-preview-1461378</ILLinkTasksPackageVersion>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="$(ILLinkTasksPackageId)">
<Version>$(ILLinkTasksPackageVersion)</Version>
</PackageReference>
</ItemGroup>
<Target Name="IncludeToolsFiles"
AfterTargets="ResolvePackageAssets">
<ItemGroup>
<ReferenceCopyLocalPaths Include="$(PackagesDir)\$(ILLinkTasksPackageId)\$(ILLinkTasksPackageVersion)\tools\netcoreapp2.0\*.*">
<NuGetPackageId>$(ILLinkTasksPackageId)</NuGetPackageId>
<NuGetPackageVersion>$(ILLinkTasksPackageVersion)</NuGetPackageVersion>
<SubFolder>/netcoreapp2.0/</SubFolder>
</ReferenceCopyLocalPaths>
</ItemGroup>
<ItemGroup>
<ReferenceCopyLocalPaths Include="$(PackagesDir)\$(ILLinkTasksPackageId)\$(ILLinkTasksPackageVersion)\tools\net46\*.*">
<NuGetPackageId>$(ILLinkTasksPackageId)</NuGetPackageId>
<NuGetPackageVersion>$(ILLinkTasksPackageVersion)</NuGetPackageVersion>
<SubFolder>/net46/</SubFolder>
</ReferenceCopyLocalPaths>
</ItemGroup>
</Target>
</Project>