1234567891011121314151617181920212223242526 |
- <Project Sdk="Microsoft.NET.Sdk">
- <PropertyGroup>
- <TargetFrameworks>net40</TargetFrameworks>
- <GenerateAssemblyInfo>false</GenerateAssemblyInfo>
- <AssemblyName>SMBServer.Tests</AssemblyName>
- <RootNamespace>SMBServer.Tests</RootNamespace>
- <OutputType>Exe</OutputType>
- </PropertyGroup>
- <ItemGroup>
- <ProjectReference Include="..\SMBLibrary.Win32\SMBLibrary.Win32.csproj" />
- <ProjectReference Include="..\SMBLibrary\SMBLibrary.csproj" />
- </ItemGroup>
- <ItemGroup Condition="'$(Configuration)' != 'Release'">
- <ProjectReference Include="..\Utilities\Utilities.csproj" />
- </ItemGroup>
- <ItemGroup>
- <Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework">
- <HintPath>Components\Microsoft.VisualStudio.QualityTools.UnitTestFramework.dll</HintPath>
- </Reference>
- </ItemGroup>
- </Project>
|