-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathbuild.proj
31 lines (24 loc) · 908 Bytes
/
build.proj
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0"
xmlns="http://schemas.microsoft.com/developer/msbuild/2003" Target="Build">
<Target Name="Clean">
<Message Text="Clean artifacts folder" />
<RemoveDir Directories="artifacts" />
</Target>
<Target Name="Build">
<Message Text="Build VS code extension" />
<MSBuild Projects="vscode-extension/build.proj" Targets="Build"/>
<Message Text="Build PowerShell module" />
<MSBuild Projects="powershell-module/build.proj" Targets="Build"/>
</Target>
<Target Name="Test" DependsOnTargets="Build">
</Target>
<Target Name="Package">
<!--
<Message Text="Package VS code extension" />
<MSBuild Projects="vscode-extension/build.proj" Targets="Package"/>
-->
<Message Text="Package PowerShell module" />
<MSBuild Projects="powershell-module/build.proj" Targets="Package"/>
</Target>
</Project>