SMBLibrary.Tests.csproj 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. <Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
  2. <PropertyGroup>
  3. <Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
  4. <Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
  5. <ProductVersion>8.0.50727</ProductVersion>
  6. <SchemaVersion>2.0</SchemaVersion>
  7. <ProjectGuid>{C79B06EB-32C1-44CA-B7E1-A891B8135658}</ProjectGuid>
  8. <OutputType>Exe</OutputType>
  9. <AppDesignerFolder>Properties</AppDesignerFolder>
  10. <RootNamespace>SMBLibrary.Tests</RootNamespace>
  11. <AssemblyName>SMBLibrary.Tests</AssemblyName>
  12. </PropertyGroup>
  13. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
  14. <DebugSymbols>true</DebugSymbols>
  15. <DebugType>full</DebugType>
  16. <Optimize>false</Optimize>
  17. <OutputPath>bin\Debug\</OutputPath>
  18. <DefineConstants>DEBUG;TRACE</DefineConstants>
  19. <ErrorReport>prompt</ErrorReport>
  20. <WarningLevel>4</WarningLevel>
  21. </PropertyGroup>
  22. <PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
  23. <DebugType>pdbonly</DebugType>
  24. <Optimize>true</Optimize>
  25. <OutputPath>bin\Release\</OutputPath>
  26. <DefineConstants>TRACE</DefineConstants>
  27. <ErrorReport>prompt</ErrorReport>
  28. <WarningLevel>4</WarningLevel>
  29. </PropertyGroup>
  30. <ItemGroup>
  31. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
  32. <SpecificVersion>False</SpecificVersion>
  33. <HintPath>Components\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
  34. </Reference>
  35. <Reference Include="System" />
  36. </ItemGroup>
  37. <ItemGroup>
  38. <Compile Include="NetBiosTests.cs" />
  39. <Compile Include="NTLM\NTLMAuthenticationTests.cs" />
  40. <Compile Include="NTLM\NTLMSigningTests.cs" />
  41. <Compile Include="NTLM\RC4Tests.cs" />
  42. <Compile Include="Program.cs" />
  43. <Compile Include="Properties\AssemblyInfo.cs" />
  44. <Compile Include="RPCTests.cs" />
  45. <Compile Include="SMB2SigningTests.cs" />
  46. </ItemGroup>
  47. <ItemGroup>
  48. <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj">
  49. <Project>{8CE25496-A52B-4841-822F-74C469D10EE7}</Project>
  50. <Name>SMBLibrary.Win32</Name>
  51. </ProjectReference>
  52. <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj">
  53. <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
  54. <Name>SMBLibrary</Name>
  55. </ProjectReference>
  56. <ProjectReference Include="..\Utilities\Utilities.csproj">
  57. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  58. <Name>Utilities</Name>
  59. </ProjectReference>
  60. </ItemGroup>
  61. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  62. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  63. Other similar extension points exist, see Microsoft.Common.targets.
  64. <Target Name="BeforeBuild">
  65. </Target>
  66. <Target Name="AfterBuild">
  67. </Target>
  68. -->
  69. </Project>