Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ILLink.Tasks.csproj « ILLink.Tasks « src - github.com/mono/linker.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dcff939a4232b5a4be9b4e716f9ca0fb086f41f1 (plain)
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<Project Sdk="Microsoft.NET.Sdk">
  <PropertyGroup>
    <!-- Keep these in sync with _ILLinkTasksTFM in Sdk.props. -->
    <!-- Keep the netcoreapp TFM in sync with the Mono.Linker.csproj condition below. -->
    <TargetFrameworks>net5.0;net472</TargetFrameworks>
    <EnableDefaultCompileItems>false</EnableDefaultCompileItems>
    <Description>MSBuild tasks for running the IL Linker</Description>
    <LangVersion>latest</LangVersion>
    <IsPackable>true</IsPackable>
    <PackageId>Microsoft.NET.ILLink.Tasks</PackageId>
    <!-- We want to package the tasks package together with its
         transitive dependencies and the linker, without marking them
         as dependencies in the tasks package. -->
    <IncludePublishOutput>true</IncludePublishOutput>
    <!-- Include deps.json and runtimeconfig.json since we run illink.dll as a separate process. -->
    <IncludeJsonFilesInPackage>true</IncludeJsonFilesInPackage>
    <BuildOutputTargetFolder>tools</BuildOutputTargetFolder>
    <!-- Recommended by arcade for tools projects. generates an assembly version that includes patch number derived from date and build revision -->
    <AutoGenerateAssemblyVersion>true</AutoGenerateAssemblyVersion>
    <!-- Place linker and cecil alongside ILLink.Tasks in the output, for integration tests. -->
    <CopyLocalLockFileAssemblies>true</CopyLocalLockFileAssemblies>
    <RunAnalyzers>true</RunAnalyzers>
  </PropertyGroup>

  <ItemGroup>
    <Compile Include="CombineLinkerXmlFiles.cs" />
    <Compile Include="LinkTask.cs" />
    <Compile Include="ComputeManagedAssemblies.cs" />
    <Compile Include="CreateRuntimeRootDescriptorFile.cs" />
    <Compile Include="Utils.cs" />
  </ItemGroup>

  <ItemGroup>
    <Content Include="Sdk/Sdk.props">
      <PackagePath>Sdk</PackagePath>
    </Content>
  </ItemGroup>

  <ItemGroup>
    <ProjectReference Include="../linker/Mono.Linker.csproj" PrivateAssets="All" Condition=" '$(TargetFramework)' == 'net5.0' " />
    <PackageReference Condition="'$(UseCecilPackage)' == 'true'" Include="Mono.Cecil" Version="$(MonoCecilVersion)" PrivateAssets="All" Publish="True" />
    <ProjectReference Condition="'$(UseCecilPackage)' != 'true'" Include="../../external/cecil/Mono.Cecil.csproj" PrivateAssets="All" />
  </ItemGroup>

  <ItemGroup>
    <!-- We use private assets for the Microsoft.Build packages to
         prevent them from being published with the tasks dll, because
         these are already a part of the SDK. -->
    <PackageReference Include="Microsoft.Build.Framework" Version="$(MicrosoftBuildFrameworkVersion)" PrivateAssets="All" ExcludeAssets="Runtime" />
    <PackageReference Include="Microsoft.Build.Utilities.Core" Version="$(MicrosoftBuildUtilitiesCoreVersion)" PrivateAssets="All" ExcludeAssets="Runtime" />
    <PackageReference Include="System.Reflection.Metadata" Version="$(SystemReflectionMetadataVersion)" Condition=" '$(TargetFramework)' == 'net472' " PrivateAssets="All" Publish="True" />

    <PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" PrivateAssets="All" Version="1.0.0" />
  </ItemGroup>
</Project>