forked from jamesbroome/Machine.Specifications.AutoMocking
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.proj
More file actions
53 lines (45 loc) · 1.96 KB
/
build.proj
File metadata and controls
53 lines (45 loc) · 1.96 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
<?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.AutoMocking</ProductName>
<ProductDescription>Machine.Specifications.AutoMocking attempts to reduce noise in MSpec tests when creating mock objects, dependencies and the subject under test.</ProductDescription>
</PropertyGroup>
<!-- MSpec Tests -->
<ItemGroup>
<MSpecTestItem Include="Machine.Specifications.AutoMocking.Specs"/>
</ItemGroup>
<!-- NUnit Tests -->
<ItemGroup>
<NUnitTestItem Include="NUnit.Specifications.AutoMocking.Example"/>
</ItemGroup>
<!-- Binary files to publish -->
<PropertyGroup>
<BinInclude>
source\Machine.Specifications.AutoMocking\bin\$(Configuration)\*.*;
source\NUnit.Specifications.AutoMocking\bin\$(Configuration)\*.*
</BinInclude>
</PropertyGroup>
<!-- Nuget -->
<PropertyGroup>
<NugetPackageSummary>Machine.Specifications.AutoMocking attempts to reduce noise in Machine.Specifications (MSpec) tests when creating mock objects, dependencies and the subject under test.</NugetPackageSummary>
<NugetPackageId>Machine.Specifications.AutoMocking</NugetPackageId>
<NugetPushUrl>http://packages.nuget.org/v1/</NugetPushUrl>
</PropertyGroup>
<Import Project="$(MSBuildProjectDirectory)\Tools\MSBuild\BuildSupport\Common.Targets"/>
</Project>