-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathbuild.proj
More file actions
57 lines (49 loc) · 2 KB
/
build.proj
File metadata and controls
57 lines (49 loc) · 2 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets ="Dist" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<!-- See https://onpointondemand.fogbugz.com/default.asp?W695 for documentation -->
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Onpoint.Targets.properties"/>
<!-- Version Information -->
<PropertyGroup>
<AppVersion>0.7.4</AppVersion>
<SchemaVersion>0</SchemaVersion>
<CompanyName>Project Extensions</CompanyName>
</PropertyGroup>
<!-- Project name and description -->
<PropertyGroup>
<ProductName>ProjectExtensions.Azure.ServiceBus</ProductName>
<ProductDescription>Azure ServiceBus Wrapper modeled after the NServiceBus pattern of IHandleMessage<T></ProductDescription>
</PropertyGroup>
<!-- NUnit Tests -->
<ItemGroup>
<NUnitTestItem Include="ProjectExtensions.Azure.ServiceBus.Tests.Unit"/>
<NUnitTestItem Include="ProjectExtensions.Azure.ServiceBus.Tests.Integration"/>
</ItemGroup>
<!-- Binary files to publish -->
<PropertyGroup>
<BinInclude>
src\ProjectExtensions.Azure.ServiceBus\bin\$(Configuration)\*.*;
</BinInclude>
</PropertyGroup>
<!-- Source files to publish -->
<PropertyGroup>
<SrcInclude>
src\**\*.cs;
</SrcInclude>
</PropertyGroup>
<!-- Source files to ignore -->
<PropertyGroup>
<SrcExclude>
src\Tests\**\*.cs;
</SrcExclude>
</PropertyGroup>
<!-- Nuget v2 -->
<ItemGroup>
<NugetItem Include="ProjectExtensions.Azure.ServiceBus">
<NugetPackageSummary>Azure ServiceBus Wrapper modeled after the NServiceBus pattern of IHandleMessage<T></NugetPackageSummary>
<NugetPackageId>ProjectExtensions.Azure.ServiceBus</NugetPackageId>
<NugetPushUrl>http://go.microsoft.com/fwlink/?LinkID=207106</NugetPushUrl>
<NugetPublishSymbols>true</NugetPublishSymbols>
</NugetItem>
</ItemGroup>
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Onpoint.Targets"/>
</Project>