-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDirectory.Build.props
More file actions
17 lines (15 loc) · 966 Bytes
/
Copy pathDirectory.Build.props
File metadata and controls
17 lines (15 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<Project>
<PropertyGroup>
<RestorePackagesWithLockFile>true</RestorePackagesWithLockFile>
<Deterministic>true</Deterministic>
<ContinuousIntegrationBuild Condition="'$(CI)' == 'true'">true</ContinuousIntegrationBuild>
</PropertyGroup>
<PropertyGroup Condition="'$(ReleaseVerificationRoot)' != '' And $([System.String]::Copy('$(MSBuildProjectDirectory)').EndsWith('\AiteBar.Tests'))">
<BaseIntermediateOutputPath>$(ReleaseVerificationRoot)\obj\AiteBar.Tests\</BaseIntermediateOutputPath>
<BaseOutputPath>$(ReleaseVerificationRoot)\bin\AiteBar.Tests\</BaseOutputPath>
</PropertyGroup>
<PropertyGroup Condition="'$(ReleaseVerificationRoot)' != '' And $([System.String]::Copy('$(MSBuildProjectDirectory)').EndsWith('\AiteBar'))">
<BaseIntermediateOutputPath>$(ReleaseVerificationRoot)\obj\AiteBar\</BaseIntermediateOutputPath>
<BaseOutputPath>$(ReleaseVerificationRoot)\bin\AiteBar\</BaseOutputPath>
</PropertyGroup>
</Project>