Skip to content

Commit

Permalink
disable tests for now
Browse files Browse the repository at this point in the history
  • Loading branch information
pwelter34 committed Dec 23, 2014
1 parent 4dfa7e6 commit b8f2daf
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 10 deletions.
6 changes: 3 additions & 3 deletions Master.proj
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@
Includes="Microsoft.Build.Commontypes.xsd"/>
</Target>

<Target Name="Zip" DependsOnTargets="Documentation;Test;Merge">
<Target Name="Zip" DependsOnTargets="Documentation;Merge">
<ItemGroup>
<ZipFiles Include="$(BuildFolder)\*.*" />
</ItemGroup>
Expand All @@ -119,15 +119,15 @@
ZipFileName="MSBuild.Community.Tasks.v$(PackageVersion).zip" />
</Target>

<Target Name="Installer" DependsOnTargets="Compile;Documentation;Test;Merge" Condition="'$(OS)' == 'Windows_NT'">
<Target Name="Installer" DependsOnTargets="Compile;Documentation;Merge" Condition="'$(OS)' == 'Windows_NT'">
<MSBuild Projects="$(SourceFolder)\MSBuild.Community.Tasks.Setup\MSBuildTasks.wixproj"
Properties="Configuration=Release;Major=$(Major);Minor=$(Minor);Build=$(Patch);Revision=$(BuildNumber)" />

<Copy SourceFiles="$(SourceFolder)\MSBuild.Community.Tasks.Setup\bin\Release\MSBuild.Community.Tasks.msi"
DestinationFiles="MSBuild.Community.Tasks.v$(PackageVersion).msi" />
</Target>

<Target Name="Pack" DependsOnTargets="Merge;Test">
<Target Name="Pack" DependsOnTargets="Merge">
<NuGetPack ToolPath="$(SourceFolder)\.nuget"
File="MSBuildTasks.nuspec"
OutputDirectory="$(MSBuildProjectDirectory)"
Expand Down
20 changes: 13 additions & 7 deletions readme.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,14 @@
#MSBuild Community Tasks
# MSBuild Community Tasks

The MSBuild Community Tasks Project is an open source project for MSBuild tasks.

##Download
[![Build status](https://ci.appveyor.com/api/projects/status/16y9eh9swsqn5g8l?svg=true)](https://ci.appveyor.com/project/LoreSoft/msbuildtasks)

![NuGet Version](https://img.shields.io/nuget/v/MSBuildTasks.svg?style=flat-square)

![NuGet Version](https://img.shields.io/nuget/dt/MSBuildTasks.svg?style=flat-square)

## Download

The latest build can be downloaded from the releases section.
https://github.com/loresoft/msbuildtasks/releases
Expand All @@ -16,21 +22,21 @@ To install MSBuildTasks, run the following command in the Package Manager Consol
More information about NuGet package avaliable at
https://nuget.org/packages/MSBuildTasks

##Development Builds
## Development Builds

Development builds are available on the myget.org feed. A development build is promoted to the main NuGet feed when it's determined to be stable.

In your Package Manager settings add the following package source for development builds:
http://www.myget.org/F/loresoft/

##Join Project
## Join Project

Please join the MSBuild Community Tasks Project and help contribute in building the tasks.

Google Group for MSBuild Community Tasks
https://groups.google.com/d/forum/msbuildtasks

##Current Community Tasks
## Current Community Tasks

<table id="tasksTable" border="0" cellpadding="3" cellspacing="0" width="90%">
<tr>
Expand Down Expand Up @@ -474,7 +480,7 @@ https://groups.google.com/d/forum/msbuildtasks
</table>


##Getting Started
## Getting Started

In order to use the tasks in this project, you need to import the MSBuild.Community.Tasks.Targets files.

Expand All @@ -492,7 +498,7 @@ Alternatively if you want to get started with the nuget packages please add the

## License

Copyright (c) 2012, LoreSoft
Copyright (c) 2015, LoreSoft
All rights reserved.

Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
Expand Down

0 comments on commit b8f2daf

Please sign in to comment.