This repository has been archived by the owner on Oct 2, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
before.NSuggest.sln.targets
24 lines (24 loc) · 1.7 KB
/
before.NSuggest.sln.targets
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="utf-8"?>
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<PropertyGroup>
<Props>CurrentSolutionConfigurationContents=$(CurrentSolutionConfigurationContents); SolutionDir=$(SolutionDir); SolutionExt=$(SolutionExt); SolutionFileName=$(SolutionFileName); SolutionName=$(SolutionName); SolutionPath=$(SolutionPath)</Props>
</PropertyGroup>
<Target Name="Test">
<MSBuild Projects="@(ProjectReference)" Targets="Test" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
<Target Name="Coverage">
<MSBuild Projects="@(ProjectReference)" Targets="Coverage" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
<Target Name="CoverageReport">
<MSBuild Projects="@(ProjectReference)" Targets="CoverageReport" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
<Target Name="CoverageUpload">
<MSBuild Projects="@(ProjectReference)" Targets="CoverageUpload" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
<Target Name="Package">
<MSBuild Projects="@(ProjectReference)" Targets="Package" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
<Target Name="Deploy">
<MSBuild Projects="@(ProjectReference)" Targets="Deploy" BuildInParallel="True" Properties="$(Props)" SkipNonexistentProjects="%(ProjectReference.SkipNonexistentProjects)" />
</Target>
</Project>