ConnectionOdbcSdk
Diff Revisions
8
vs
9
for /trunk/ConnectionServerOdbcIntegrationTests/ConnectionServerOdbcTests.csproj
|
@@ -16,6 +16,8 @@ |
16 |
16 |
|
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath> |
17 |
17 |
|
<IsCodedUITest>False</IsCodedUITest> |
18 |
18 |
|
<TestProjectType>UnitTest</TestProjectType> |
|
19 |
+ |
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir> |
|
20 |
+ |
<RestorePackages>true</RestorePackages> |
19 |
21 |
|
</PropertyGroup> |
20 |
22 |
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' "> |
21 |
23 |
|
<DebugSymbols>true</DebugSymbols> |
|
@@ -35,6 +37,9 @@ |
35 |
37 |
|
<WarningLevel>4</WarningLevel> |
36 |
38 |
|
</PropertyGroup> |
37 |
39 |
|
<ItemGroup> |
|
40 |
+ |
<Reference Include="Moq"> |
|
41 |
+ |
<HintPath>..\packages\Moq.4.1.1308.2321\lib\net40\Moq.dll</HintPath> |
|
42 |
+ |
</Reference> |
38 |
43 |
|
<Reference Include="System" /> |
39 |
44 |
|
<Reference Include="System.Core"> |
40 |
45 |
|
<RequiredTargetFramework>3.5</RequiredTargetFramework> |
|
@@ -54,17 +59,23 @@ |
54 |
59 |
|
</Choose> |
55 |
60 |
|
<ItemGroup> |
56 |
61 |
|
<Compile Include="IntegrationTests\BaseIntegrationTests.cs" /> |
57 |
|
- |
<Compile Include="IntegrationTests\IntegrationTest.cs" /> |
58 |
|
- |
<Compile Include="UnitTests\LanguageHelperTests.cs" /> |
|
62 |
+ |
<Compile Include="IntegrationTests\ConnectionServerOdbcIntegrationTests.cs" /> |
|
63 |
+ |
<Compile Include="UnitTests\BaseUnitTests.cs" /> |
|
64 |
+ |
<Compile Include="UnitTests\ConnectionPropertyPairUnitTests.cs" /> |
|
65 |
+ |
<Compile Include="UnitTests\ConnectionServerOdbcUnitTests.cs" /> |
|
66 |
+ |
<Compile Include="UnitTests\EventUnitTests.cs" /> |
|
67 |
+ |
<Compile Include="UnitTests\LanguageHelperUnitTests.cs" /> |
59 |
68 |
|
<Compile Include="Properties\AssemblyInfo.cs" /> |
60 |
69 |
|
<Compile Include="Properties\Settings.Designer.cs"> |
61 |
70 |
|
<AutoGen>True</AutoGen> |
62 |
71 |
|
<DesignTimeSharedInput>True</DesignTimeSharedInput> |
63 |
72 |
|
<DependentUpon>Settings.settings</DependentUpon> |
64 |
73 |
|
</Compile> |
|
74 |
+ |
<Compile Include="UnitTests\UnityVersionDetailsUnitTests.cs" /> |
65 |
75 |
|
</ItemGroup> |
66 |
76 |
|
<ItemGroup> |
67 |
77 |
|
<None Include="app.config" /> |
|
78 |
+ |
<None Include="packages.config" /> |
68 |
79 |
|
<None Include="Properties\Settings.settings"> |
69 |
80 |
|
<Generator>SettingsSingleFileGenerator</Generator> |
70 |
81 |
|
<LastGenOutput>Settings.Designer.cs</LastGenOutput> |
|
@@ -96,6 +107,7 @@ |
96 |
107 |
|
</Choose> |
97 |
108 |
|
<Import Project="$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets" Condition="Exists('$(VSToolsPath)\TeamTest\Microsoft.TestTools.targets')" /> |
98 |
109 |
|
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" /> |
|
110 |
+ |
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" /> |
99 |
111 |
|
<!-- To modify your build process, add your task inside one of the targets below and uncomment it. |
100 |
112 |
|
Other similar extension points exist, see Microsoft.Common.targets. |
101 |
113 |
|
<Target Name="BeforeBuild"> |