Skip to content

Commit e5939d9

Browse files
committed
Migrated to v5.0 RTM
1 parent f3afd65 commit e5939d9

9 files changed

Lines changed: 22 additions & 21 deletions

File tree

Driver Code/DevDeploy.bat

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ rem @"LINQPad\Drivers\DataContext\3.5\")
1414
rem
1515
rem The final part of the directory is the name of the assembly plus its public key token in brackets.
1616
echo 3.5 b094696bc21c000a
17-
xcopy /i/y *.dll "C:\ProgramData\LINQPad\Drivers\DataContext\3.5\SD.LLBLGen.Pro.LINQPadDriver42 (b094696bc21c000a)"
18-
xcopy /i/y *.pdb "C:\ProgramData\LINQPad\Drivers\DataContext\3.5\SD.LLBLGen.Pro.LINQPadDriver42 (b094696bc21c000a)"
17+
xcopy /i/y *.dll "C:\ProgramData\LINQPad\Drivers\DataContext\3.5\SD.LLBLGen.Pro.LINQPadDriver50 (b094696bc21c000a)"
18+
xcopy /i/y *.pdb "C:\ProgramData\LINQPad\Drivers\DataContext\3.5\SD.LLBLGen.Pro.LINQPadDriver50 (b094696bc21c000a)"
1919
pause

Driver Code/DevDeploy4.bat

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@Echo off
12
rem
23
rem You can simplify development by updating this batch file and then calling it from the
34
rem project's post-build event.
@@ -14,6 +15,6 @@ rem @"LINQPad\Drivers\DataContext\3.5\")
1415
rem
1516
rem The final part of the directory is the name of the assembly plus its public key token in brackets.
1617
echo 4.0 b094696bc21c000a
17-
xcopy /i/y *.dll "C:\ProgramData\LINQPad\Drivers\DataContext\4.0\SD.LLBLGen.Pro.LINQPadDriver42 (b094696bc21c000a)"
18-
xcopy /i/y *.pdb "C:\ProgramData\LINQPad\Drivers\DataContext\4.0\SD.LLBLGen.Pro.LINQPadDriver42 (b094696bc21c000a)"
18+
xcopy /i/y *.dll "C:\ProgramData\LINQPad\Drivers\DataContext\4.0\SD.LLBLGen.Pro.LINQPadDriver50 (b094696bc21c000a)"
19+
xcopy /i/y *.pdb "C:\ProgramData\LINQPad\Drivers\DataContext\4.0\SD.LLBLGen.Pro.LINQPadDriver50 (b094696bc21c000a)"
1920
pause

Driver Code/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The sourcecode and binary compiled version of this driver are licensed under the BSD2 license:
44

55
COPYRIGHTS:
6-
Copyright (c)2002-2014 Solutions Design. All rights reserved.
6+
Copyright (c)2002-2016 Solutions Design. All rights reserved.
77
http://www.llblgen.com
88

99
The LLBLGen Pro LINQPad driver sourcecode is released under the following license (BSD2):

Driver Code/LINQPadDriver.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@
4545
<ExecutableExtension>.exe</ExecutableExtension>
4646
<HintPath>..\Externals\LINQPad.exe</HintPath>
4747
</Reference>
48-
<Reference Include="SD.LLBLGen.Pro.ORMSupportClasses, Version=4.0.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27, processorArchitecture=MSIL">
49-
<SpecificVersion>False</SpecificVersion>
50-
<HintPath>..\Externals\SD.LLBLGen.Pro.ORMSupportClasses.dll</HintPath>
48+
<Reference Include="SD.LLBLGen.Pro.ORMSupportClasses, Version=5.0.0.0, Culture=neutral, PublicKeyToken=ca73b74ba4e3ff27, processorArchitecture=MSIL">
49+
<HintPath>..\packages\SD.LLBLGen.Pro.ORMSupportClasses.5.0.0\lib\net45\SD.LLBLGen.Pro.ORMSupportClasses.dll</HintPath>
50+
<Private>True</Private>
5151
</Reference>
5252
<Reference Include="System" />
5353
<Reference Include="System.Core" />
@@ -77,8 +77,8 @@
7777
</ItemGroup>
7878
<ItemGroup>
7979
<None Include="DevDeploy.bat" />
80-
<None Include="DevDeploy5.bat" />
8180
<None Include="DevDeploy4.bat" />
81+
<None Include="packages.config" />
8282
<None Include="StrongName.snk" />
8383
</ItemGroup>
8484
<ItemGroup>

Driver Code/Properties/AssemblyInfo.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@
66
// set of attributes. Change these attribute values to modify the information
77
// associated with an assembly.
88
[assembly: AssemblyTitle("LLBLGen Pro LINQPad Driver")]
9-
[assembly: AssemblyDescription("LINQPad driver for LLBLGen Pro v5.0b2")]
9+
[assembly: AssemblyDescription("LINQPad driver for LLBLGen Pro v5.0")]
1010
[assembly: AssemblyConfiguration(".NET 3.5")]
1111
[assembly: AssemblyCompany("Solutions Design bv")]
1212
[assembly: AssemblyProduct("LLBLGen Pro")]
13-
[assembly: AssemblyCopyright("Copyright ©2014 Solutions Design bv")]
13+
[assembly: AssemblyCopyright("Copyright ©2016 Solutions Design bv")]
1414
[assembly: AssemblyTrademark("LLBLGen and LLBLGen Pro are trademarks of Solutions Design bv.")]
1515
[assembly: AssemblyCulture("")]
1616

Driver Code/README.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ folder, you have to change the target framework to .NET 4 for the driver project
1111

1212
Requirements to compile the code:
1313
-----------------------------------
14-
.NET 3.5 SDK or higher. Recommented: VS.NET 2010, 2012 or 2013 (preferred).
14+
.NET 3.5 SDK or higher. Recommented: VS.NET 2010 or higher.
1515

1616

1717
How to distribute the driver

Driver Code/packages.config

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<packages>
3+
<package id="SD.LLBLGen.Pro.ORMSupportClasses" version="5.0.0" targetFramework="net452" />
4+
</packages>

LINQPadDriver.sln

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11

2-
Microsoft Visual Studio Solution File, Format Version 11.00
3-
# Visual Studio 2010
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 14
4+
VisualStudioVersion = 14.0.25123.0
5+
MinimumVisualStudioVersion = 10.0.40219.1
46
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "LINQPadDriver", "Driver Code\LINQPadDriver.csproj", "{E8D453FB-C87F-4BA3-A720-03850A191212}"
57
EndProject
6-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tests", "Tests\Tests.csproj", "{FD04146D-1D2B-46ED-9A67-FB16423A48A9}"
7-
EndProject
88
Global
99
GlobalSection(SolutionConfigurationPlatforms) = preSolution
1010
Debug|Any CPU = Debug|Any CPU
@@ -15,10 +15,6 @@ Global
1515
{E8D453FB-C87F-4BA3-A720-03850A191212}.Debug|Any CPU.Build.0 = Debug|Any CPU
1616
{E8D453FB-C87F-4BA3-A720-03850A191212}.Release|Any CPU.ActiveCfg = Release|Any CPU
1717
{E8D453FB-C87F-4BA3-A720-03850A191212}.Release|Any CPU.Build.0 = Release|Any CPU
18-
{FD04146D-1D2B-46ED-9A67-FB16423A48A9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
19-
{FD04146D-1D2B-46ED-9A67-FB16423A48A9}.Debug|Any CPU.Build.0 = Debug|Any CPU
20-
{FD04146D-1D2B-46ED-9A67-FB16423A48A9}.Release|Any CPU.ActiveCfg = Release|Any CPU
21-
{FD04146D-1D2B-46ED-9A67-FB16423A48A9}.Release|Any CPU.Build.0 = Release|Any CPU
2218
EndGlobalSection
2319
GlobalSection(SolutionProperties) = preSolution
2420
HideSolutionNode = FALSE

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ in those bat files or remove the post-build event. If you copied LINQPad.exe v4.
1111
folder, you have to change the target framework to .NET 4 for the driver project to compile the code.
1212

1313
###Requirements to compile the code:
14-
.NET 3.5 SDK or higher. Recommented: VS.NET 2010, 2012 or 2013 (preferred).
14+
.NET 3.5 SDK or higher. Recommented: VS.NET 2010 or higher.
1515

1616
###How to distribute the driver
1717
To distribute the driver, zip the dll and header.xml into a zip file and rename the extension to .lpx.

0 commit comments

Comments
 (0)