-
Notifications
You must be signed in to change notification settings - Fork 749
Expand file tree
/
Copy pathrunsettings.proj
More file actions
36 lines (31 loc) · 1.42 KB
/
runsettings.proj
File metadata and controls
36 lines (31 loc) · 1.42 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<Project>
<Target Name="Build">
<Error Condition=" '$(IsOfficialBuild)' == 'true' AND '$(VsTargetMajorVersion)' == '' "
Text="VsTargetMajorVersion must be specified" />
<!-- NuGet.OptProfV2.runsettings -->
<MSBuild Condition=" '$(IsOfficialBuild)' == 'true' "
Projects="template.runsettingsproj"
Properties="RunName=NuGet.OptProfV2;
FileName=NuGet.OptProf.dll;
TestCaseFilter=TestCategory=OptProf;
OptProfCollector=enabled;
IncludeProfilingInputs=true;
VsConfigPath=tests.optprof.vsconfig;" />
<!-- NuGet.Tests.Apex.runsettings -->
<MSBuild
Projects="template.runsettingsproj"
Properties="RunName=NuGet.Tests.Apex;
FileName=NuGet.Tests.Apex.dll;" />
<!-- NuGet.Tests.Apex.Gate.runsettings (VS test gate - runs only [TestCategory("Gate")] tests) -->
<MSBuild
Projects="template.runsettingsproj"
Properties="RunName=NuGet.Tests.Apex.Gate;
FileName=NuGet.Tests.Apex.dll;NuGet.Tests.Apex.Daily.dll;
TestCaseFilter=TestCategory=Gate;" />
<!-- NuGet.Tests.Apex.Daily.runsettings -->
<MSBuild
Projects="template.runsettingsproj"
Properties="RunName=NuGet.Tests.Apex.Daily;
FileName=NuGet.Tests.Apex.Daily.dll;NuGet.Tests.Apex.dll;" />
</Target>
</Project>