mirror of
https://github.com/pleonex/NitroDebugger.git
synced 2025-06-18 13:15:39 -04:00
65 lines
2.6 KiB
XML
65 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<Project DefaultTargets="Build" ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
|
<PropertyGroup>
|
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
|
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
|
<ProductVersion>8.0.30703</ProductVersion>
|
|
<SchemaVersion>2.0</SchemaVersion>
|
|
<ProjectGuid>{A114EA52-2DC2-4DD3-937B-CD9FB236BA74}</ProjectGuid>
|
|
<OutputType>Library</OutputType>
|
|
<RootNamespace>NitroDebugger.UnitTests</RootNamespace>
|
|
<AssemblyName>NitroDebugger.UnitTests</AssemblyName>
|
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
|
<DebugSymbols>true</DebugSymbols>
|
|
<DebugType>full</DebugType>
|
|
<Optimize>false</Optimize>
|
|
<OutputPath>bin\Debug</OutputPath>
|
|
<DefineConstants>DEBUG;</DefineConstants>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
|
<DebugType>full</DebugType>
|
|
<Optimize>true</Optimize>
|
|
<OutputPath>bin\Release</OutputPath>
|
|
<ErrorReport>prompt</ErrorReport>
|
|
<WarningLevel>4</WarningLevel>
|
|
<ConsolePause>false</ConsolePause>
|
|
</PropertyGroup>
|
|
<ItemGroup>
|
|
<Reference Include="System" />
|
|
<Reference Include="nunit.framework">
|
|
<HintPath>..\packages\NUnit.2.6.4\lib\nunit.framework.dll</HintPath>
|
|
</Reference>
|
|
<Reference Include="Moq">
|
|
<HintPath>..\packages\Moq.4.2.1507.0118\lib\net40\Moq.dll</HintPath>
|
|
</Reference>
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<Compile Include="SessionTests.cs" />
|
|
<Compile Include="PacketTests.cs" />
|
|
<Compile Include="PacketTypesTest.cs" />
|
|
<Compile Include="PresentationTests.cs" />
|
|
<Compile Include="Signals.cs" />
|
|
<Compile Include="GdbClientTests.cs" />
|
|
<Compile Include="GdbStreamTests.cs" />
|
|
<Compile Include="GdbTestingBase.cs" />
|
|
<Compile Include="GdbSessionManagerTests.cs" />
|
|
<Compile Include="PluginTests.cs" />
|
|
<Compile Include="RegisterManagerTests.cs" />
|
|
</ItemGroup>
|
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
|
<ItemGroup>
|
|
<None Include="packages.config" />
|
|
</ItemGroup>
|
|
<ItemGroup>
|
|
<ProjectReference Include="..\NitroDebugger\NitroDebugger.csproj">
|
|
<Project>{FBAFCD9C-6B05-41C5-AEED-19784A9DC8C1}</Project>
|
|
<Name>NitroDebugger</Name>
|
|
</ProjectReference>
|
|
</ItemGroup>
|
|
</Project>
|