SMBLibrary.Tests.csproj 884 B

1234567891011121314151617181920212223242526
  1. <Project Sdk="Microsoft.NET.Sdk">
  2. <PropertyGroup>
  3. <TargetFrameworks>net40</TargetFrameworks>
  4. <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
  5. <AssemblyName>SMBServer.Tests</AssemblyName>
  6. <RootNamespace>SMBServer.Tests</RootNamespace>
  7. <OutputType>Exe</OutputType>
  8. </PropertyGroup>
  9. <ItemGroup>
  10. <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj" />
  11. <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
  12. </ItemGroup>
  13. <ItemGroup Condition="'$(Configuration)' != 'Release'">
  14. <ProjectReference Include="..\Utilities\Utilities.csproj" />
  15. </ItemGroup>
  16. <ItemGroup>
  17. <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework">
  18. <HintPath>Components\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
  19. </Reference>
  20. </ItemGroup>
  21. </Project>