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:
authorTarek Mahmoud Sayed <tarekms@microsoft.com>2016-02-06 01:22:54 +0300
committerTarek Mahmoud Sayed <tarekms@microsoft.com>2016-02-06 01:22:54 +0300
commitc6d85485405ec7d33b9c4744da02afd5374c70e8 (patch)
tree213bc643924698e0c0ccfc4dc858a1e07ab03deb /src/System.Private.StackTraceGenerator
parentf46fd89272ff210a0c5dc4bcb4017ba59f84171e (diff)
Cleanup relative path in compile elements to have a link
without the link, VS will show all relative path elements in the root of the project explorer. adding link will organize the view and also avoid a conflic with the same file names
Diffstat (limited to 'src/System.Private.StackTraceGenerator')
-rw-r--r--src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj b/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
index 0e824f048..db49aa486 100644
--- a/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
+++ b/src/System.Private.StackTraceGenerator/src/System.Private.StackTraceGenerator.csproj
@@ -28,8 +28,12 @@
<Compile Include="Internal\Dia\DiaInterfaces.cs" />
</ItemGroup>
<ItemGroup>
- <Compile Include="..\..\Common\src\System\NotImplemented.cs" />
- <Compile Include="..\..\Common\src\System\Runtime\InteropServices\McgIntrinsicsAttribute.cs" />
+ <Compile Include="..\..\Common\src\System\NotImplemented.cs" >
+ <Link>System\NotImplemented.cs</Link>
+ </Compile>
+ <Compile Include="..\..\Common\src\System\Runtime\InteropServices\McgIntrinsicsAttribute.cs" >
+ <Link>System\Runtime\InteropServices\McgIntrinsicsAttribute.cs</Link>
+ </Compile>
</ItemGroup>
<Import Project="$([MSBuild]::GetDirectoryNameOfFileAbove($(MSBuildThisFileDirectory), dir.targets))\dir.targets" />