-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbuild.proj
More file actions
38 lines (32 loc) · 1.29 KB
/
build.proj
File metadata and controls
38 lines (32 loc) · 1.29 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
37
38
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets ="Dist" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Southside.Targets.properties"/>
<!-- Version Information -->
<PropertyGroup>
<AppVersion>1.0.0</AppVersion>
<SchemaVersion>0</SchemaVersion>
</PropertyGroup>
<!-- Project name and description -->
<PropertyGroup>
<CompanyName>Southside Software, LLC</CompanyName>
<ProductName>BuildLight</ProductName>
<ProductDescription>Support for driving some sort of external device off the status of one or more build configurations</ProductDescription>
</PropertyGroup>
<!-- NUnit Tests -->
<ItemGroup>
<DllsToTest Include="$(MsBuildProjectDirectory)\tests\BuildLight.Tests.Unit\bin\$(Configuration)\BuildLight.Tests.Unit.dll"/>
</ItemGroup>
<!-- Binary files to publish -->
<PropertyGroup>
<BinInclude>
src\BuildLight.Service\bin\$(Configuration)\*.*;
license.txt
</BinInclude>
</PropertyGroup>
<ItemGroup>
<NugetItem Include="BuildLight">
<NugetPackageId>BuildLight</NugetPackageId>
</NugetItem>
</ItemGroup>
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Southside.Targets"/>
</Project>