forked from dotnet/test-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.proj
More file actions
19 lines (15 loc) · 774 Bytes
/
Copy pathbuild.proj
File metadata and controls
19 lines (15 loc) · 774 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<Project DefaultTargets="Build">
<Import Project="Version.props" />
<Import Project="Settings.props" />
<Target Name="Build">
<MakeDir Directories="$(ArtifactsDir);$(PackageOutputPath);$(TemplatesOutputPath);" />
<CallTarget Targets="CollectGitInfo" />
<!-- Build templates -->
<MSBuild Projects="template_feed/Template.proj" Targets="Build"
RunEachTargetSeparately="true" StopOnFirstFailure="true" />
<MSBuild Projects="Templates\MSTestTemplates.sln" Targets="Build"
RunEachTargetSeparately="true" StopOnFirstFailure="true" />
<MSBuild Projects="WizardExtensions\WizardExtensions.sln" Targets="Build"
RunEachTargetSeparately="true" StopOnFirstFailure="true" />
</Target>
</Project>