Created
February 21, 2013 01:41
-
-
Save lukencode/5001242 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | |
<Import Project="$(MSBuildExtensionsPath)\MSBuildCommunityTasks\MSBuild.Community.Tasks.Targets"/> | |
<PropertyGroup> | |
<VersionMajor>1</VersionMajor> | |
<VersionMinor>0</VersionMinor> | |
<VersionPatch>0</VersionPatch> | |
<ChangesetNumber>0</ChangesetNumber> | |
<NugetFileShare>\\itsmanv01\Releases</NugetFileShare> | |
<SolutionPath>RequisitioningSolution.sln</SolutionPath> | |
</PropertyGroup> | |
<Target Name="Build"> | |
<TfsVersion | |
TfsLibraryLocation="C:\Program Files (x86)\Microsoft Visual Studio 11.0\Common7\IDE\ReferenceAssemblies\v2.0" | |
LocalPath="$(MSBuildProjectDirectory)"> | |
<Output TaskParameter="Changeset" PropertyName="ChangesetNumber"/> | |
</TfsVersion> | |
<MSBuild | |
Projects="$(SolutionPath)" | |
Targets="Build" | |
Properties="Configuration=Release;RunOctoPack=true;OctoPackPublishPackageToFileShare=$(NugetFileShare);OctoPackPackageVersion=$(VersionMajor).$(VersionMinor).$(VersionPatch).$(ChangesetNumber)" /> | |
</Target> | |
</Project> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment