Skip to content

Commit 5ea9a58

Browse files
Project revamp to move in shared project + Add .NET Standard compatibility + Signed key
Project revamp to move in shared project + Add .NET Standard compatibility + Signed key
1 parent a9d01d8 commit 5ea9a58

File tree

237 files changed

+2555
-10753
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

237 files changed

+2555
-10753
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
.vs/
2+
13
#################
24
## Eclipse
35
#################

EntityFrameworkExtras.EF5.Tests/App.config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<!-- For more information on Entity Framework configuration, visit http://go.microsoft.com/fwlink/?LinkID=237468 -->
66
</configSections>
77
<connectionStrings>
8-
<add name="ConnectionString" connectionString="Data Source=.;Initial Catalog=EntityFrameworkExtrasTests; Integrated Security=True;" providerName="System.Data.SqlClient" />
8+
<add name="ConnectionString" connectionString="Data Source=localhost;Initial Catalog=EntityFrameworkExtrasTests; Integrated Security=True;" providerName="System.Data.SqlClient" />
99
</connectionStrings>
1010
<entityFramework>
1111
<defaultConnectionFactory type="System.Data.Entity.Infrastructure.LocalDbConnectionFactory, EntityFramework">

EntityFrameworkExtras.EF5.Tests/EntityFrameworkExtras.EF5.Tests.csproj

Lines changed: 2 additions & 63 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<DebugType>full</DebugType>
1919
<Optimize>false</Optimize>
2020
<OutputPath>bin\Debug\</OutputPath>
21-
<DefineConstants>DEBUG;TRACE</DefineConstants>
21+
<DefineConstants>TRACE;DEBUG;EF5</DefineConstants>
2222
<ErrorReport>prompt</ErrorReport>
2323
<WarningLevel>4</WarningLevel>
2424
<Prefer32Bit>false</Prefer32Bit>
@@ -51,80 +51,19 @@
5151
<Reference Include="System.Xml" />
5252
</ItemGroup>
5353
<ItemGroup>
54-
<Compile Include="Integration\DatabaseIntegrationTests.cs" />
55-
<Compile Include="Integration\ParameterBigIntTests.cs" />
56-
<Compile Include="Integration\ParameterBinaryTests.cs" />
57-
<Compile Include="Integration\ParameterBitTests.cs" />
58-
<Compile Include="Integration\ParameterCharTests.cs" />
59-
<Compile Include="Integration\ParameterDateTests.cs" />
60-
<Compile Include="Integration\ParameterDateTime2Tests.cs" />
61-
<Compile Include="Integration\ParameterDateTimeOffsetTests.cs" />
62-
<Compile Include="Integration\ParameterDateTimeTests.cs" />
63-
<Compile Include="Integration\ParameterDecimalTests.cs" />
64-
<Compile Include="Integration\ParameterDirectionTests.DirectionDefault.cs" />
65-
<Compile Include="Integration\ParameterDirectionTests.DirectionInput.cs" />
66-
<Compile Include="Integration\ParameterDirectionTests.DirectionInputOutput.cs" />
67-
<Compile Include="Integration\ParameterDirectionTests.DirectionOutput.cs" />
68-
<Compile Include="Integration\ParameterDirectionTests.DirectionReturn.cs" />
69-
<Compile Include="Integration\ParameterFloatTests.cs" />
70-
<Compile Include="Integration\ParameterImageTests.cs" />
71-
<Compile Include="Integration\ParameterIntTests.cs" />
72-
<Compile Include="Integration\ParameterMoneyTests.cs" />
73-
<Compile Include="Integration\ParameterNCharTests.cs" />
74-
<Compile Include="Integration\ParameterNTextTests.cs" />
75-
<Compile Include="Integration\ParameterNvarCharTests.cs" />
76-
<Compile Include="Integration\ParameterRealTests.cs" />
77-
<Compile Include="Integration\ParameterSizeTests.cs" />
78-
<Compile Include="Integration\ParameterSizeTests.OutputParameters.cs" />
79-
<Compile Include="Integration\ParameterSmallDateTimeTests.cs" />
80-
<Compile Include="Integration\ParameterSmallIntTests.cs" />
81-
<Compile Include="Integration\ParameterSmallMoneyTests.cs" />
82-
<Compile Include="Integration\ParameterTextTests.cs" />
83-
<Compile Include="Integration\ParameterTimeTests.cs" />
84-
<Compile Include="Integration\ParameterTinyIntTests.cs" />
85-
<Compile Include="Integration\ParameterVarBinaryTests.cs" />
86-
<Compile Include="Integration\ParameterVarCharTests.cs" />
87-
<Compile Include="Integration\ParameterXmlTests.cs" />
88-
<Compile Include="Integration\ParameteUniqueIdentifier​​Tests.cs" />
89-
<Compile Include="Integration\StoredProcedures\AllTypesParameterOutputStoredProcedure.cs" />
90-
<Compile Include="Integration\StoredProcedures\AllTypesStoredProcedure.cs" />
91-
<Compile Include="Integration\StoredProcedures\AllTypesStoredProcedureReturn.cs" />
92-
<Compile Include="Integration\StoredProcedures\AllTypesUserDefinedTable.cs" />
93-
<Compile Include="Integration\StoredProcedures\ExplicitySetColumnNamesUserDefinedTable.cs" />
94-
<Compile Include="Integration\StoredProcedures\InvalidColumnCountUserDefinedTable.cs" />
95-
<Compile Include="Integration\StoredProcedures\NoneExistingStoredProcedure.cs" />
96-
<Compile Include="Integration\StoredProcedures\NoParametersStoredProcedure.cs" />
97-
<Compile Include="Integration\StoredProcedures\OutputParameterSizeNotSetStoredProcedure.cs" />
98-
<Compile Include="Integration\StoredProcedures\OutputParameterSizeSetStoredProcedure.cs" />
99-
<Compile Include="Integration\StoredProcedures\ParameterDirectionStoredProcedure.cs" />
100-
<Compile Include="Integration\StoredProcedures\ParameterDirectionStoredProcedureReturn.cs" />
101-
<Compile Include="Integration\StoredProcedures\ParameterSizeStoredProcedure.cs" />
102-
<Compile Include="Integration\StoredProcedures\ParameterSizeStoredProcedureReturn.cs" />
103-
<Compile Include="Integration\StoredProcedures\UserDefinedTableExplicitlySetColumnNameStoredProcedure.cs" />
104-
<Compile Include="Integration\StoredProcedures\UserDefinedTableInvalidColumnCountStoredProcedure.cs" />
105-
<Compile Include="Integration\StoredProcedures\UserDefinedTableStoredProcedure.cs" />
106-
<Compile Include="Integration\StoredProcedures\UserDefinedTableStoredProcedureReturn.cs" />
107-
<Compile Include="Integration\StoredProcedureTests.cs" />
108-
<Compile Include="Integration\UserDefinedTableParameterTests.cs" />
109-
<Compile Include="Integration\UserDefinedTableTypeColumnTests.cs" />
11054
<Compile Include="Properties\AssemblyInfo.cs" />
11155
</ItemGroup>
11256
<ItemGroup>
11357
<None Include="App.config" />
114-
<None Include="Integration\App.config">
115-
<SubType>Designer</SubType>
116-
</None>
11758
<None Include="packages.config" />
11859
</ItemGroup>
119-
<ItemGroup>
120-
<Content Include="Integration\IntegrationSqlScript.sql" />
121-
</ItemGroup>
12260
<ItemGroup>
12361
<ProjectReference Include="..\EntityFrameworkExtras.EF5\EntityFrameworkExtras.EF5.csproj">
12462
<Project>{357c473a-d606-4a9b-8c5f-17deb6ffb006}</Project>
12563
<Name>EntityFrameworkExtras.EF5</Name>
12664
</ProjectReference>
12765
</ItemGroup>
66+
<Import Project="..\EntityFrameworkExtras.Tests.Shared\EntityFrameworkExtras.Tests.Shared.projitems" Label="Shared" />
12867
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
12968
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
13069
Other similar extension points exist, see Microsoft.Common.targets.

EntityFrameworkExtras.EF5.Tests/Integration/App.config

Lines changed: 0 additions & 20 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/DatabaseIntegrationTests.cs

Lines changed: 0 additions & 44 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/ParameteUniqueIdentifier​​Tests.cs

Lines changed: 0 additions & 42 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/ParameterBigIntTests.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/ParameterBinaryTests.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/ParameterBitTests.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

EntityFrameworkExtras.EF5.Tests/Integration/ParameterCharTests.cs

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)