Skip to content

Instantly share code, notes, and snippets.

@tmori3y2
Created March 26, 2016 05:40
Show Gist options
  • Save tmori3y2/6d0d5471a73c7bfee713 to your computer and use it in GitHub Desktop.
Save tmori3y2/6d0d5471a73c7bfee713 to your computer and use it in GitHub Desktop.
NuSpec for automatic imported MSBuild target file which imports another one installed at the same time by NuGet
<?xml version="1.0"?>
<package>
<metadata>
<id>MSBuildTasks.ImportTasks</id>
<version>0.1.0.0</version>
<title>MSBuildTasks.ImportTasks</title>
<authors>tmori3y2</authors>
<owners>tmori3y2</owners>
<projectUrl>http://tmori3y2.hatenablog.com/</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<developmentDependency>true</developmentDependency>
<description>MSBuild Task to Import Tasks from build folder.</description>
<releaseNotes>The first release.</releaseNotes>
<copyright>Copyright (C) 2016 tmori3y2</copyright>
<tags>MSBuild</tags>
</metadata>
<files>
<file src="nupkg\build\*.*" target="build" />
<file src="nupkg\content\build\*.*" target="content\build" />
<file src="bin\**\*.*" exclude="**\*.*" />
</files>
</package>