Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
66a64c9
Merge pull request #3 from loresoft/master
djechelon Jul 9, 2015
23b5bf1
Merge pull request #4 from loresoft/master
djechelon Jul 9, 2015
5e8bb2a
Mysql detector
Jul 10, 2015
92ab257
Update xunit
Jul 10, 2015
b8b42a5
Draft of MySql tests
Jul 10, 2015
4da2cad
Escape in runner, not in mapping provider
Jul 13, 2015
40fcf7d
Merge from upstream
Jul 13, 2015
dc3ef71
Escape in runner, not in mapping provider
Jul 13, 2015
1c85f62
Merge from master
Jul 13, 2015
b26a91a
Merge pull request #5 from loresoft/master
djechelon Jul 15, 2015
f4c3327
Xunit
Jul 15, 2015
2395570
Merge branch 'master' of https://github.com/OpenCST/EntityFramework.E…
Jul 15, 2015
3f12a41
Escape in runner, not in mapping provider
Jul 13, 2015
6a3aa25
Advice from [email protected]
Jul 16, 2015
5cf8f6b
Merge
Jul 16, 2015
98916ea
Update tests with new specifications of Mapping
Jul 16, 2015
579b386
appveyor mysql
Jul 16, 2015
ca5dd80
Merge pull request #6 from loresoft/master
djechelon Jul 16, 2015
0441fe1
Net40 test updated
Jul 17, 2015
6c29dcc
Merge branch 'mysqlrunner' of https://github.com/OpenCST/EntityFramew…
Jul 17, 2015
47c67d1
Net40 test updated
Jul 17, 2015
22385b1
Implement batch runner for postgresql.
raol Dec 9, 2015
8601958
Remove detecting outside transaction.
raol Mar 4, 2016
f43974e
Put schema and table name in quotes
raol Mar 4, 2016
3bc120f
Merge pull request #7 from raol/pgsqlrunner
djechelon May 24, 2016
dd0b823
Merge mysqlbatchrunner branch
May 24, 2016
fae16bf
Solution configuration update
Dec 20, 2016
4a8ce60
Merge pull request #1 from OpenCST/master
Feb 22, 2017
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Solution configuration update
  • Loading branch information
Antonio Anzivino committed Dec 20, 2016
commit fae16bf0b43bbc910651d6c5e2c99e3328c4c9fd
Original file line number Diff line number Diff line change
Expand Up @@ -45,11 +45,11 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="EntityFramework, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
<HintPath>..\..\..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="EntityFramework.SqlServer, Version=6.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089, processorArchitecture=MSIL">
<HintPath>..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
<HintPath>..\..\..\packages\EntityFramework.6.1.3\lib\net45\EntityFramework.SqlServer.dll</HintPath>
<Private>True</Private>
</Reference>
<Reference Include="System" />
Expand Down Expand Up @@ -155,6 +155,13 @@
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\NuGet.targets" Condition="Exists('$(SolutionDir)\.nuget\NuGet.targets')" />
<Target Name="EnsureNuGetPackageBuildImports" BeforeTargets="PrepareForBuild">
<PropertyGroup>
<ErrorText>This project references NuGet package(s) that are missing on this computer. Enable NuGet Package Restore to download them. For more information, see http://go.microsoft.com/fwlink/?LinkID=322105. The missing file is {0}.</ErrorText>
</PropertyGroup>
<Error Condition="!Exists('$(SolutionDir)\.nuget\NuGet.targets')" Text="$([System.String]::Format('$(ErrorText)', '$(SolutionDir)\.nuget\NuGet.targets'))" />
</Target>
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
<Target Name="BeforeBuild">
Expand Down