-
Notifications
You must be signed in to change notification settings - Fork 4.9k
/
Copy pathILCompiler.Build.Tasks.csproj
37 lines (34 loc) · 1.6 KB
/
ILCompiler.Build.Tasks.csproj
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
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Library</OutputType>
<RootNamespace>ILCompiler</RootNamespace>
<AssemblyName>ILCompiler.Build.Tasks</AssemblyName>
<TargetFramework>netstandard2.0</TargetFramework>
<AppendTargetFrameworkToOutputPath>false</AppendTargetFrameworkToOutputPath>
<OutputPath>$(RuntimeBinDir)/ilc/netstandard</OutputPath>
<Configurations>Debug;Release;Checked</Configurations>
<PlatformTarget>AnyCPU</PlatformTarget>
<!-- Workaround for https://github.com/dotnet/corert/issues/6306 -->
<SkipSigning>true</SkipSigning>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.Build.Framework">
<Version>15.3.409</Version>
</PackageReference>
<PackageReference Include="Microsoft.Build.Utilities.Core">
<Version>15.3.409</Version>
</PackageReference>
<PackageReference Include="System.Reflection.Metadata">
<Version>$(SystemReflectionMetadataVersion)</Version>
</PackageReference>
</ItemGroup>
<ItemGroup>
<!-- Note that S.R.M depends on S.C.I. Their versions have to be in sync. -->
<Content Include="$(NuGetPackageRoot)\system.reflection.metadata\$(SystemReflectionMetadataVersion)\lib\netstandard2.0\System.Reflection.Metadata.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
<Content Include="$(NuGetPackageRoot)\system.collections.immutable\$(SystemCollectionsImmutableVersion)\lib\netstandard2.0\System.Collections.Immutable.dll">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</Content>
</ItemGroup>
</Project>