forked from dotnet/toolset
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestAsset.props
More file actions
19 lines (16 loc) · 1.12 KB
/
testAsset.props
File metadata and controls
19 lines (16 loc) · 1.12 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<RepoRoot>$(MSBuildThisFileDirectory)</RepoRoot>
</PropertyGroup>
<Import Condition=" '$(VersionPropsIsImported)' == '' " Project="eng/Versions.props" />
<PropertyGroup>
<RestorePackagesPath Condition=" '$(RestorePackagesPath)' == '' ">$(RepoRoot).nuget/packages</RestorePackagesPath>
<!--<RestoreAdditionalProjectSources>$(RestoreAdditionalProjectSources);$(RepoRoot)/artifacts/tmp/$(Configuration)/test/packages</RestoreAdditionalProjectSources>-->
<NoPackageAnalysis>true</NoPackageAnalysis>
<EnableSourceControlManagerQueries>false</EnableSourceControlManagerQueries>
<EnableSourceLink>false</EnableSourceLink>
<DeterministicSourcePaths>false</DeterministicSourcePaths>
<!-- We have some test projects in the test assets that need this property set for them. They don't need to match arcade's version as we are actually testing the dotnet test command, so hard coding this version here. -->
<XUnitVersion>2.4.1-pre.build.4059</XUnitVersion>
</PropertyGroup>
</Project>