Skip to content

Commit

Permalink
Use the SharedSourceRoot variable in project files
Browse files Browse the repository at this point in the history
  • Loading branch information
Nate McMaster committed Nov 16, 2018
1 parent 269f6ee commit 888bcba
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ Microsoft.Extensions.DependencyInjection.IServiceCollection</Description>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\..\Shared\src\ParameterDefaultValue\*.cs" />
<Compile Include="..\..\..\Shared\src\ActivatorUtilities\*.cs" />
<Compile Include="$(SharedSourceRoot)ParameterDefaultValue\*.cs" />
<Compile Include="$(SharedSourceRoot)ActivatorUtilities\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="..\..\..\Shared\src\BenchmarkRunner\**\*.cs">
<Compile Include="$(SharedSourceRoot)BenchmarkRunner\**\*.cs">
<Link>Shared\%(FileName)%(Extension)</Link>
</Compile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

<Compile Condition="'$(ILEmitBackend)' == 'True'" Include="ServiceLookup\ILEmit\*.cs" />

<Compile Include="..\..\..\Shared\src\ParameterDefaultValue\*.cs" />
<Compile Include="..\..\..\Shared\src\TypeNameHelper\*.cs" />
<Compile Include="$(SharedSourceRoot)ParameterDefaultValue\*.cs" />
<Compile Include="$(SharedSourceRoot)TypeNameHelper\*.cs" />
</ItemGroup>

</Project>
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="..\..\Shared\src\BenchmarkRunner\**\*.cs">
<Compile Include="$(SharedSourceRoot)BenchmarkRunner\**\*.cs">
<Link>Shared\%(FileName)%(Extension)</Link>
</Compile>
</ItemGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
</ItemGroup>

<ItemGroup>
<Compile Include="..\..\Shared\src\BenchmarkRunner\**\*.cs">
<Compile Include="$(SharedSourceRoot)BenchmarkRunner\**\*.cs">
<Link>Shared\%(FileName)%(Extension)</Link>
</Compile>
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion src/Primitives/src/Microsoft.Extensions.Primitives.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Microsoft.Extensions.Primitives.StringSegment</Description>
</PropertyGroup>

<ItemGroup>
<Compile Include="..\..\Shared\src\HashCodeCombiner\**\*.cs" />
<Compile Include="$(SharedSourceRoot)HashCodeCombiner\**\*.cs" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 888bcba

Please sign in to comment.