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>2018-02-22 10:41:19 +0300
committerMichal Strehovský <MichalStrehovsky@users.noreply.github.com>2018-02-22 10:41:19 +0300
commit5ec6a6b98da93620daec56de0100b0076c8a24d0 (patch)
tree6424ac80a8bde8e88d08a739d35dc3e8edffd9bb /src/ILCompiler.WebAssembly
parent851187489c8d57aa891bc58812d2cc64a62dae25 (diff)
Fix F5 debugging of ILCompiler project (#5422)
Trying to debug ILCompiler in Visual Studio was failing with missing assemblies. The problem was caused by recently added libLLVMdep.depproj reference that made NuGet delete certain files from the output tools directory. The fix is to move the .depproj reference to a different part of the build next to other similar .depproj reference where it won't be confusing NuGet.
Diffstat (limited to 'src/ILCompiler.WebAssembly')
-rw-r--r--src/ILCompiler.WebAssembly/src/ILCompiler.WebAssembly.csproj4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/ILCompiler.WebAssembly/src/ILCompiler.WebAssembly.csproj b/src/ILCompiler.WebAssembly/src/ILCompiler.WebAssembly.csproj
index 2eb7e3eeb..fd7351639 100644
--- a/src/ILCompiler.WebAssembly/src/ILCompiler.WebAssembly.csproj
+++ b/src/ILCompiler.WebAssembly/src/ILCompiler.WebAssembly.csproj
@@ -18,10 +18,6 @@
</ItemGroup>
<ItemGroup Condition="'$(IsProjectNLibrary)' != 'true'">
- <ProjectReference Include="libLLVMdep.depproj">
- <ReferenceOutputAssembly>false</ReferenceOutputAssembly>
- <SkipGetTargetFrameworkProperties>true</SkipGetTargetFrameworkProperties>
- </ProjectReference>
<ProjectReference Include="..\..\ILCompiler.DependencyAnalysisFramework\src\ILCompiler.DependencyAnalysisFramework.csproj" />
<ProjectReference Include="..\..\ILCompiler.MetadataTransform\src\ILCompiler.MetadataTransform.csproj" />
<ProjectReference Include="..\..\ILCompiler.MetadataWriter\src\ILCompiler.MetadataWriter.csproj" />