-
Notifications
You must be signed in to change notification settings - Fork 735
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Initial implementation of integrated runner as part of framework; add…
…ed nunit.interfaces assembly and adhoco TestRunner executable for testing the framework. --HG-- branch : runner rename : solutions/vs2008/nunit.interfaces/nunit.interaces.csproj => solutions/vs2008/nunit.interfaces/nunit.interfaces.csproj extra : convert_revision : charlie%40nunit.com-20091003004305-73h9p6tj9lg7v53s
- Loading branch information
Charlie Poole
committed
Oct 3, 2009
1 parent
02d1674
commit d9fa7db
Showing
139 changed files
with
16,511 additions
and
154 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003"> | ||
<PropertyGroup> | ||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration> | ||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform> | ||
<ProductVersion>8.0.50727</ProductVersion> | ||
<SchemaVersion>2.0</SchemaVersion> | ||
<ProjectGuid>{5D2E48F2-5E51-4EA4-BD92-BB93CB3113A2}</ProjectGuid> | ||
<OutputType>Exe</OutputType> | ||
<AppDesignerFolder>Properties</AppDesignerFolder> | ||
<RootNamespace>TestRunner</RootNamespace> | ||
<AssemblyName>TestRunner</AssemblyName> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> | ||
<DebugSymbols>true</DebugSymbols> | ||
<DebugType>full</DebugType> | ||
<Optimize>false</Optimize> | ||
<OutputPath>..\bin\Debug\</OutputPath> | ||
<DefineConstants>DEBUG;TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' "> | ||
<DebugType>pdbonly</DebugType> | ||
<Optimize>true</Optimize> | ||
<OutputPath>..\bin\Release\</OutputPath> | ||
<DefineConstants>TRACE</DefineConstants> | ||
<ErrorReport>prompt</ErrorReport> | ||
<WarningLevel>4</WarningLevel> | ||
</PropertyGroup> | ||
<ItemGroup> | ||
<Reference Include="System" /> | ||
<Reference Include="System.Data" /> | ||
<Reference Include="System.Xml" /> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Compile Include="..\..\..\src\TestRunner\AssemblyInfo.cs"> | ||
<Link>AssemblyInfo.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\src\TestRunner\CommandLineOptions.cs"> | ||
<Link>CommandLineOptions.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\src\TestRunner\Program.cs"> | ||
<Link>Program.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\src\TestRunner\ResultSummary.cs"> | ||
<Link>ResultSummary.cs</Link> | ||
</Compile> | ||
<Compile Include="..\..\..\src\TestRunner\StackTraceFilter.cs"> | ||
<Link>StackTraceFilter.cs</Link> | ||
</Compile> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<ProjectReference Include="..\framework\nunit.framework.csproj"> | ||
<Project>{816F2E66-2A25-4513-B5FA-8ECB4A5647CD}</Project> | ||
<Name>nunit.framework</Name> | ||
</ProjectReference> | ||
<ProjectReference Include="..\nunit.interfaces\nunit.interfaces.csproj"> | ||
<Project>{C5FFA3A5-6A0C-44AD-B23F-9A8424136C7B}</Project> | ||
<Name>nunit.interfaces</Name> | ||
</ProjectReference> | ||
</ItemGroup> | ||
<ItemGroup> | ||
<Folder Include="Properties\" /> | ||
</ItemGroup> | ||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> | ||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. | ||
Other similar extension points exist, see Microsoft.Common.targets. | ||
<Target Name="BeforeBuild"> | ||
</Target> | ||
<Target Name="AfterBuild"> | ||
</Target> | ||
--> | ||
</Project> |
Oops, something went wrong.