committed by
Christoph Ruegg
9 changed files with 105 additions and 25 deletions
@ -1,6 +1,8 @@ |
|||||
output |
output |
||||
*.Cache |
*.Cache |
||||
|
*.cache |
||||
*.ncb |
*.ncb |
||||
TestResult.xml |
TestResult.xml |
||||
coverage.* |
coverage.* |
||||
_ReSharper* |
_ReSharper* |
||||
|
*.marcus |
||||
|
|||||
@ -0,0 +1,27 @@ |
|||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" DefaultTargets="BuildAndTestManaged" ToolsVersion="3.5"> |
||||
|
<UsingTask TaskName="MSBuild.ExtensionPack.CodeQuality.StyleCop" AssemblyFile=".\MSBuild_Extension_Pack_3.5.3\MSBuild.ExtensionPack.StyleCop.dll" /> |
||||
|
<UsingTask TaskName="Gallio.MSBuildTasks.Gallio" AssemblyFile="..\lib\Gallio_3.0.6.787\bin\Gallio.MSBuildTasks.dll" /> |
||||
|
<Target Name="CompileManaged"> |
||||
|
<MSBuild Projects="C:\source\mathnet-numerics\src\Managed.UnitTests\Managed.UnitTests.csproj"> |
||||
|
</MSBuild> |
||||
|
</Target> |
||||
|
<Target Name="TestManaged" DependsOnTargets="CompileManaged"> |
||||
|
<Gallio.MSBuildTasks.Gallio ContinueOnError="False" Assemblies="../src/Managed.UnitTests/bin/Debug/MathNet.Numerics.UnitTests.dll" /> |
||||
|
</Target> |
||||
|
|
||||
|
<Target Name="StyleManaged"> |
||||
|
<CreateItem Include="../src/Managed/**/*.cs"> |
||||
|
<Output TaskParameter="Include" ItemName="StyleCopFiles" /> |
||||
|
</CreateItem> |
||||
|
|
||||
|
<MSBuild.ExtensionPack.CodeQuality.StyleCop |
||||
|
TaskAction="Scan" |
||||
|
SettingsFile="../src/Settings.StyleCop" |
||||
|
SourceFiles="@(StyleCopFiles)" |
||||
|
ShowOutput="true" |
||||
|
ForceFullAnalysis="true" |
||||
|
CacheResults="false" |
||||
|
ContinueOnError="false" |
||||
|
</Target> |
||||
|
<Target Name="BuildAndTestManaged" DependsOnTargets="TestManaged; StyleManaged"></Target> |
||||
|
</Project> |
||||
@ -0,0 +1 @@ |
|||||
|
<Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003" /> |
||||
@ -0,0 +1 @@ |
|||||
|
<StyleCopSettings Version="4.3" /> |
||||
Loading…
Reference in new issue