Skip to content

Commit 8d4c305

Browse files
committed
Added references.
1 parent a58bf16 commit 8d4c305

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

SQLite.CodeFirst.Test/SQLite.CodeFirst.Test.csproj

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,20 @@
3535
<WarningLevel>4</WarningLevel>
3636
</PropertyGroup>
3737
<ItemGroup>
38+
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
39+
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
40+
<Private>True</Private>
41+
</Reference>
42+
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
43+
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
44+
<Private>True</Private>
45+
</Reference>
46+
<Reference Include="Moq, Version=4.2.1510.2205, Culture=neutral, PublicKeyToken=69f491c39445e920, processorArchitecture=MSIL">
47+
<HintPath>..\packages\Moq.4.2.1510.2205\lib\net40\Moq.dll</HintPath>
48+
<Private>True</Private>
49+
</Reference>
3850
<Reference Include="System" />
51+
<Reference Include="System.ComponentModel.DataAnnotations" />
3952
</ItemGroup>
4053
<Choose>
4154
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
@@ -45,7 +58,9 @@
4558
</When>
4659
<Otherwise>
4760
<ItemGroup>
48-
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework" />
61+
<Reference Include="Microsoft.VisualStudio.QualityTools.UnitTestFramework">
62+
<Private>False</Private>
63+
</Reference>
4964
</ItemGroup>
5065
</Otherwise>
5166
</Choose>
@@ -64,6 +79,9 @@
6479
<Name>SQLite.CodeFirst</Name>
6580
</ProjectReference>
6681
</ItemGroup>
82+
<ItemGroup>
83+
<None Include="packages.config" />
84+
</ItemGroup>
6785
<Choose>
6886
<When Condition="'$(VisualStudioVersion)' == '10.0' And '$(IsCodedUITest)' == 'True'">
6987
<ItemGroup>
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="EntityFramework" version="6.1.3" targetFramework="net452" />
4+
<package id="Moq" version="4.2.1510.2205" targetFramework="net452" />
5+
</packages>

0 commit comments

Comments
 (0)