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

github.com/mono/corert.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJan Kotas <jkotas@microsoft.com>2015-11-14 03:54:12 +0300
committerJan Kotas <jkotas@microsoft.com>2015-11-14 04:11:57 +0300
commit636f8d3a976044ebb5b70d32dfdca42af4391f49 (patch)
tree755ad15d0b05610a99b1c00d5ec98646d9941377 /src/dirs.proj
parent3c1639cbf1f0ea9708b8addf8cbd624b024d1d34 (diff)
Rename ILToNative
- Rename the compiler .exe to ilc.exe - Rename ILToNative.* to ILCompiler.* everywhere else
Diffstat (limited to 'src/dirs.proj')
-rw-r--r--src/dirs.proj10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/dirs.proj b/src/dirs.proj
index d26f142be..04602d14a 100644
--- a/src/dirs.proj
+++ b/src/dirs.proj
@@ -16,13 +16,13 @@
<Import Project="$(ToolsDir)packages.targets" Condition="Exists('$(ToolsDir)packages.targets') and '$(ImportGetNuGetPackageVersions)' != 'false'" />
<Import Project="$(ToolsDir)UpdateBuildValues.targets" Condition="Exists('$(ToolsDir)UpdateBuildValues.targets')" />
- <!-- Have a task to copy ILToNative.exe to ILToNative.dll for inclusion into the NoDep nuget package -->
+ <!-- Have a task to copy ilc.exe to ilc.dll for inclusion into the NoDep nuget package -->
<ItemGroup>
- <SourceName Include="$(OutputPath)ILToNative.exe"/>
- <TargetName Include="$(OutputPath)ILToNative.dll"/>
+ <SourceName Include="$(OutputPath)ilc.exe"/>
+ <TargetName Include="$(OutputPath)ilc.dll"/>
</ItemGroup>
- <Target Name="RenameILToNative" AfterTargets="Build">
+ <Target Name="RenameILCompiler" AfterTargets="Build">
<Copy SourceFiles="@(SourceName)" DestinationFiles="@(TargetName)" />
</Target>
@@ -30,7 +30,7 @@
Generate Microsoft.Dotnet.CoreRT nuget package and associated development package
-->
- <Target Name="BuildNuGetPackages" Condition="'$(BuildNugetPackage)' != 'false'" AfterTargets="RenameILToNative">
+ <Target Name="BuildNuGetPackages" Condition="'$(BuildNugetPackage)' != 'false'" AfterTargets="RenameILCompiler">
<MakeDir Directories="$(ProductPackageDir)" Condition="!Exists('$(ProductPackageDir)')" />
<Copy SourceFiles="@(NuSpecSrcs)" DestinationFolder="$(ProductPackageDir)" />
<Exec Command="&quot;$(NuGetToolPath)&quot; pack &quot;%(NuSpecs.Identity)&quot; -NoPackageAnalysis -NoDefaultExcludes -OutputDirectory &quot;$(ProductPackageDir)&quot;" />