Skip to content

Commit

Permalink
target 4.5 netfx
Browse files Browse the repository at this point in the history
  • Loading branch information
Ronnie Overby committed Mar 21, 2015
1 parent f6167ec commit 539d09d
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 13 deletions.
4 changes: 2 additions & 2 deletions RavenLinqpadDriver.Common/RavenLinqpadDriver.Common.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -43,10 +43,10 @@
</PropertyGroup>
<ItemGroup>
<Reference Include="Raven.Abstractions">
<HintPath>..\packages\RavenDB.Client.3.0.3183-Unstable\lib\net45\Raven.Abstractions.dll</HintPath>
<HintPath>..\packages\RavenDB.Client.2.5.2874\lib\net45\Raven.Abstractions.dll</HintPath>
</Reference>
<Reference Include="Raven.Client.Lightweight">
<HintPath>..\packages\RavenDB.Client.3.0.3183-Unstable\lib\net45\Raven.Client.Lightweight.dll</HintPath>
<HintPath>..\packages\RavenDB.Client.2.5.2874\lib\net45\Raven.Client.Lightweight.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
Expand Down
2 changes: 1 addition & 1 deletion RavenLinqpadDriver.Common/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Client" version="3.0.3183-Unstable" targetFramework="net45" />
<package id="RavenDB.Client" version="2.5.2874" targetFramework="net45" />
</packages>
4 changes: 2 additions & 2 deletions RavenLinqpadDriver/AssemblyVersion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
using System.Reflection;
[assembly: AssemblyVersion("0.6.3183.0")]
[assembly: AssemblyFileVersion("0.6.3183.0")]
[assembly: AssemblyVersion("0.6.3183.1")]
[assembly: AssemblyFileVersion("0.6.3183.1")]
9 changes: 5 additions & 4 deletions RavenLinqpadDriver/RavenContext.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,10 +148,10 @@ public void Delete(string id)
_lazySession.Value.Delete(id);
}

public void Delete<T>(ValueType id)
/*public void Delete<T>(ValueType id)
{
_lazySession.Value.Delete<T>(id);
}
}*/

public ILoaderWithInclude<T> Include<T>(Expression<Func<T, object>> path)
{
Expand Down Expand Up @@ -396,8 +396,9 @@ public bool WasDisposed
get { return _docStore.WasDisposed; }
}

public System.Threading.Tasks.Task ExecuteIndexAsync(AbstractIndexCreationTask indexCreationTask)
/* public System.Threading.Tasks.Task ExecuteIndexAsync(AbstractIndexCreationTask indexCreationTask)
{
return _docStore.ExecuteIndexAsync(indexCreationTask);
}
Expand All @@ -414,7 +415,7 @@ public DocumentSessionListeners Listeners
public void SetListeners(DocumentSessionListeners listeners)
{
_docStore.SetListeners(listeners);
}
}*/

#endregion

Expand Down
7 changes: 4 additions & 3 deletions RavenLinqpadDriver/RavenLinqpadDriver.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@
<Reference Include="PresentationCore" />
<Reference Include="PresentationFramework" />
<Reference Include="Raven.Abstractions">
<HintPath>..\packages\RavenDB.Client.3.0.3183-Unstable\lib\net45\Raven.Abstractions.dll</HintPath>
<HintPath>..\packages\RavenDB.Client.2.5.2874\lib\net45\Raven.Abstractions.dll</HintPath>
</Reference>
<Reference Include="Raven.Client.Lightweight">
<HintPath>..\packages\RavenDB.Client.3.0.3183-Unstable\lib\net45\Raven.Client.Lightweight.dll</HintPath>
<HintPath>..\packages\RavenDB.Client.2.5.2874\lib\net45\Raven.Client.Lightweight.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
Expand Down Expand Up @@ -114,7 +114,8 @@
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<PropertyGroup>
<PostBuildEvent>xcopy /i/y *.* "C:\ProgramData\LINQPad\Drivers\DataContext\4.0\RavenLinqpadDriver (aaac23b83559e37f)\"</PostBuildEvent>
<PostBuildEvent>
</PostBuildEvent>
</PropertyGroup>
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<PropertyGroup>
Expand Down
2 changes: 1 addition & 1 deletion RavenLinqpadDriver/packages.config
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Client" version="3.0.3183-Unstable" targetFramework="net45" />
<package id="RavenDB.Client" version="2.5.2874" targetFramework="net45" />
</packages>

0 comments on commit 539d09d

Please sign in to comment.