-
Notifications
You must be signed in to change notification settings - Fork 13
/
condo.build
37 lines (31 loc) · 1.2 KB
/
condo.build
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
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="15.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
InitialTargets="Clean" DefaultTargets="Build">
<PropertyGroup>
<Product>AM.Condo</Product>
<StartDateUtc>2015-05-28</StartDateUtc>
<Company>automotiveMastermind and contributors</Company>
<Authors>automotiveMastermind and contributors</Authors>
<License>MIT</License>
<LicenseUri>https://opensource.org/licenses/MIT</LicenseUri>
<TestPurposeExclude>None</TestPurposeExclude>
<DockerEnableExtendedTags>true</DockerEnableExtendedTags>
</PropertyGroup>
<Target Name="PublishGitHubPages" Condition=" $(CreateRelease) AND $(DotNetDocsGenerated) ">
<PublishGitHubPages
Source="$(DocsArtifactsRoot)condo"
RepositoryUri="$(RepositoryUri)"
RepositoryRoot="$(RepositoryRoot)"
AuthorName="$(AuthorName)"
AuthorEmail="$(AuthorEmail)" />
</Target>
<Import Project="$(CondoTargetsPath)Lifecycle.targets" />
<Import Project="$(CondoTargetsPath)Goals.targets" />
<PropertyGroup>
<AfterDocument>
$(AfterPublish);
CreateRelease;
PublishGitHubPages;
</AfterDocument>
</PropertyGroup>
</Project>