SMBLibrary.Tests.VS2005.csproj 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  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="NTFileStore\NTDirectoryFileSystemTests.cs" />
  40. <Compile Include="NTFileStore\NTFileStoreTests.cs" />
  41. <Compile Include="NTLM\NTLMAuthenticationTests.cs" />
  42. <Compile Include="NTLM\NTLMSigningTests.cs" />
  43. <Compile Include="NTLM\RC4Tests.cs" />
  44. <Compile Include="Program.cs" />
  45. <Compile Include="Properties\AssemblyInfo.cs" />
  46. <Compile Include="RPCTests.cs" />
  47. <Compile Include="SMB2SigningTests.cs" />
  48. </ItemGroup>
  49. <ItemGroup>
  50. <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.VS2005.csproj">
  51. <Project>{8CE25496-A52B-4841-822F-74C469D10EE7}</Project>
  52. <Name>SMBLibrary.Win32</Name>
  53. </ProjectReference>
  54. <ProjectReference Include="..\SMBLibrary\SMBLibrary.VS2005.csproj">
  55. <Project>{8D9E8F5D-FD13-4E4C-9723-A333DA2034A7}</Project>
  56. <Name>SMBLibrary</Name>
  57. </ProjectReference>
  58. <ProjectReference Include="..\Utilities\Utilities.VS2005.csproj">
  59. <Project>{6E0F2D1E-6167-4032-BA90-DEE3A99207D0}</Project>
  60. <Name>Utilities</Name>
  61. </ProjectReference>
  62. </ItemGroup>
  63. <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
  64. <!-- To modify your build process, add your task inside one of the targets below and uncomment it.
  65. Other similar extension points exist, see Microsoft.Common.targets.
  66. <Target Name="BeforeBuild">
  67. </Target>
  68. <Target Name="AfterBuild">
  69. </Target>
  70. -->
  71. </Project>