Skip to content
This repository was archived by the owner on Jun 1, 2022. It is now read-only.

Commit 222641f

Browse files
tests: add test project
1 parent f1e4065 commit 222641f

File tree

6 files changed

+48
-0
lines changed

6 files changed

+48
-0
lines changed
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<packages>
3+
<package id="MSBuild.MSBBuildConvention" version="1.0.0" targetFramework="net40" />
34
<package id="MSBuild.MSBNuget" version="1.0.2-pre" targetFramework="net40" />
45
</packages>
Binary file not shown.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<?xml version="1.0"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>MSBuild.MSBBuildConvention</id>
5+
<version>1.0.0</version>
6+
<title>MSBuild project build convention target structure</title>
7+
<authors>Daniel Sack</authors>
8+
<owners>Daniel Sack</owners>
9+
<licenseUrl>https://raw.github.com/DanielTheCoder/MSBuild.MSBNuget/master/LICENSE</licenseUrl>
10+
<projectUrl>https://github.com/DanielTheCoder/MSBuild.MSBNuget</projectUrl>
11+
<iconUrl>https://raw.github.com/DanielTheCoder/MSBuild.MSBNuget/master/media/MSBuild.ico</iconUrl>
12+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
13+
<description>Convention based build pipeline for custom MSBuild projects</description>
14+
<releaseNotes>https://raw.github.com/DanielTheCoder/MSBuild.MSBNuget/master/changelog.txt</releaseNotes>
15+
<copyright>Copyright 2013</copyright>
16+
<tags>MSBuild Package</tags>
17+
</metadata>
18+
</package>
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003" >
2+
3+
<PropertyGroup>
4+
<BuildTargets>$(BuildDependsOn);</BuildTargets>
5+
<CleanTargets/>
6+
<RebuildTargets/>
7+
<PublishTargets/>
8+
</PropertyGroup>
9+
10+
<Target Name="Build">
11+
<CallTarget Targets="$(BuildTargets)" />
12+
</Target>
13+
14+
<Target Name="Clean">
15+
<CallTarget Targets="$(CleanTargets)" />
16+
</Target>
17+
18+
<Target Name="Rebuild">
19+
<CallTarget Targets="$(RebuildTargets)" />
20+
</Target>
21+
22+
<Target Name="Publish">
23+
<CallTarget Targets="$(PublishTargets)"/>
24+
</Target>
25+
26+
</Project>
Binary file not shown.

src/packages/MSBuild.MSBNuget.1.0.2-pre/MSBuild.MSBNuget.1.0.2-pre.nuspec

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,8 @@
1414
<releaseNotes>https://raw.github.com/DanielTheCoder/MSBuild.MSBNuget/master/changelog.txt</releaseNotes>
1515
<copyright>Copyright 2013</copyright>
1616
<tags>NuGet MSBuild Package</tags>
17+
<dependencies>
18+
<dependency id="MSBuild.MSBBuildConvention" />
19+
</dependencies>
1720
</metadata>
1821
</package>

0 commit comments

Comments
 (0)