This repository was archived by the owner on Aug 25, 2018. It is now read-only.
forked from joefeser/Machine.Specifications.Mvc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.proj
More file actions
55 lines (46 loc) · 1.93 KB
/
build.proj
File metadata and controls
55 lines (46 loc) · 1.93 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
<?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\Common.Targets.properties"/>
<!-- Version Information -->
<PropertyGroup>
<AppVersion>1.5.10</AppVersion>
<Build>2</Build>
<SchemaVersion>1</SchemaVersion>
</PropertyGroup>
<!--Source and Tests Folder relative to root
No Leading or Trailing Slash
-->
<PropertyGroup>
<SourceRoot>Source</SourceRoot>
<TestsRoot>Source</TestsRoot>
</PropertyGroup>
<!-- Project name and description -->
<PropertyGroup>
<CompanyName>James Broome</CompanyName>
<ProductName>Machine.Specifications.Mvc</ProductName>
<ProductDescription>Machine.Specifications.Mvc is a set of extensions for testing ASP.Net MVC specific types.
It aims to ease the testing of ActionResult objects returned from MVC Controllers by providing an MSpec BDD syntax over these types.</ProductDescription>
</PropertyGroup>
<!-- MSpec Tests -->
<ItemGroup>
<MSpecTestItem Include="Machine.Specifications.Mvc.Specs"/>
<MSpecTestItem Include="Machine.Specifications.Mvc.Example"/>
</ItemGroup>
<!-- NUnit Tests -->
<ItemGroup>
<!--<NUnitTestItem Include="Assembly"/>-->
</ItemGroup>
<!-- Binary files to publish -->
<PropertyGroup>
<BinInclude>
source\Machine.Specifications.Mvc\bin\$(Configuration)\*.*
</BinInclude>
</PropertyGroup>
<!-- Nuget -->
<PropertyGroup>
<NugetPackageSummary>Machine.Specifications.Mvc is a set of extensions for testing ASP.Net MVC specific types using Machine.Specifications (MSpec).</NugetPackageSummary>
<NugetPackageId>Machine.Specifications.Mvc</NugetPackageId>
<NugetPushUrl>http://packages.nuget.org/v1/</NugetPushUrl>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Common.Targets"/>
</Project>