File tree 5 files changed +10
-9
lines changed
coverlet.core.performancetest
5 files changed +10
-9
lines changed Original file line number Diff line number Diff line change 1
1
<?xml version =" 1.0" encoding =" utf-8" ?>
2
2
<Project >
3
3
<PropertyGroup >
4
+ <RepoRoot >$(MSBuildThisFileDirectory)</RepoRoot >
4
5
<PackageOutputPath >$(MSBuildThisFileDirectory)build\$(Configuration)\</PackageOutputPath >
5
6
</PropertyGroup >
6
7
Original file line number Diff line number Diff line change 4
4
<When Condition =" '$(ThresholdType)' != '' " >
5
5
<ItemGroup >
6
6
<!-- Arrange for the project that builds the build tools has built first. -->
7
- <ProjectReference Include =" $(MSBuildThisFileDirectory)\..\ src\coverlet.msbuild.tasks\coverlet.msbuild.tasks.csproj" >
7
+ <ProjectReference Include =" $(RepoRoot) src\coverlet.msbuild.tasks\coverlet.msbuild.tasks.csproj" >
8
8
<ReferenceOutputAssembly >false</ReferenceOutputAssembly >
9
9
</ProjectReference >
10
10
</ItemGroup >
13
13
This is required when the coverlet.msbuild imports are made in their src directory
14
14
(so that msbuild eval works even before they are built)
15
15
so that they can still find the tooling that will be built by the build. -->
16
- <CoverletToolsPath >$(MSBuildThisFileDirectory)..\ src\coverlet.msbuild.tasks\bin\$(Configuration)\netstandard2.0\</CoverletToolsPath >
16
+ <CoverletToolsPath >$(RepoRoot) src\coverlet.msbuild.tasks\bin\$(Configuration)\netstandard2.0\</CoverletToolsPath >
17
17
</PropertyGroup >
18
18
</When >
19
19
</Choose >
Original file line number Diff line number Diff line change 18
18
</ItemGroup >
19
19
20
20
<ItemGroup >
21
- <ProjectReference Include =" ..\..\ src\coverlet.core\coverlet.core.csproj" />
22
- <ProjectReference Include =" ..\..\ src\coverlet.collector\coverlet.collector.csproj" />
21
+ <ProjectReference Include =" $(RepoRoot) src\coverlet.core\coverlet.core.csproj" />
22
+ <ProjectReference Include =" $(RepoRoot) src\coverlet.collector\coverlet.collector.csproj" />
23
23
</ItemGroup >
24
24
25
25
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <Import Project =" ..\..\ src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
2
+ <Import Project =" $(RepoRoot) src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
3
3
4
4
<PropertyGroup >
5
5
<TargetFramework >netcoreapp2.0</TargetFramework >
15
15
<ProjectReference Include =" ..\coverlet.testsubject\coverlet.testsubject.csproj" />
16
16
</ItemGroup >
17
17
18
- <Import Project =" ..\..\ src\coverlet.msbuild.tasks\coverlet.msbuild.targets" />
18
+ <Import Project =" $(RepoRoot) src\coverlet.msbuild.tasks\coverlet.msbuild.targets" />
19
19
</Project >
Original file line number Diff line number Diff line change 1
1
<Project Sdk =" Microsoft.NET.Sdk" >
2
- <Import Project =" ..\..\ src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
2
+ <Import Project =" $(RepoRoot) src\coverlet.msbuild.tasks\coverlet.msbuild.props" />
3
3
4
4
<PropertyGroup >
5
5
<TargetFramework >netcoreapp2.0</TargetFramework >
16
16
</ItemGroup >
17
17
18
18
<ItemGroup >
19
- <ProjectReference Include =" ..\..\ src\coverlet.core\coverlet.core.csproj" />
19
+ <ProjectReference Include =" $(RepoRoot) src\coverlet.core\coverlet.core.csproj" />
20
20
</ItemGroup >
21
21
22
- <Import Project =" ..\..\ src\coverlet.msbuild.tasks\coverlet.msbuild.targets" />
22
+ <Import Project =" $(RepoRoot) src\coverlet.msbuild.tasks\coverlet.msbuild.targets" />
23
23
</Project >
You can’t perform that action at this time.
0 commit comments