Skip to content
This repository has been archived by the owner on Nov 3, 2018. It is now read-only.

Commit

Permalink
Update to RavenDB 2230 and set version to 2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
mattjohnsonpint committed Mar 22, 2013
1 parent b087320 commit f8e6372
Show file tree
Hide file tree
Showing 9 changed files with 352 additions and 359 deletions.
6 changes: 3 additions & 3 deletions .nuget/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Server" version="2.0.2261" />
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Server" version="2.0.2330" />
</packages>
22 changes: 11 additions & 11 deletions README.md
@@ -1,11 +1,11 @@
Temporal Versioning Bundle for RavenDB
======================================

This a custom bundle for RavenDB. The current release requires RavenDB version 2.0.2261 or higher.

It allows you to make changes to a document that are effective at a particular point in time. Often, this will be "now", but it can easily be a past or future date. All version history is maintained.

The difference between this and Raven's official "Versioning Bundle" is that past changes are not hidden from you. You can load, store, delete, or query at any date - past, present or future.

[Full documentation is available here](https://github.com/mj1856/RavenDB-TemporalVersioning/wiki).

Temporal Versioning Bundle for RavenDB
======================================

This a custom bundle for RavenDB. The current release requires RavenDB version 2.0.2330 or higher.

It allows you to make changes to a document that are effective at a particular point in time. Often, this will be "now", but it can easily be a past or future date. All version history is maintained.

The difference between this and Raven's official "Versioning Bundle" is that past changes are not hidden from you. You can load, store, delete, or query at any date - past, present or future.

[Full documentation is available here](https://github.com/mj1856/RavenDB-TemporalVersioning/wiki).

@@ -1,87 +1,85 @@
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8310DFC1-0E0C-4534-B92C-8894599AEFB1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Raven.Bundles.TemporalVersioning</RootNamespace>
<AssemblyName>Raven.Bundles.TemporalVersioning</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;SERVERBUNDLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Raven.Abstractions, Version=2.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\RavenDB.Database.2.0.2261\lib\net40\Raven.Abstractions.dll</HintPath>
</Reference>
<Reference Include="Raven.Database, Version=2.0.0.0, Culture=neutral, PublicKeyToken=37f41c7f99471593, processorArchitecture=MSIL">
<SpecificVersion>False</SpecificVersion>
<HintPath>..\packages\RavenDB.Database.2.0.2261\lib\net40\Raven.Database.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Common\TemporalConstants.cs" />
<Compile Include="Common\TemporalExtensions.cs" />
<Compile Include="Common\TemporalHistory.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Common\TemporalMetadata.cs" />
<Compile Include="Common\TemporalStatus.cs" />
<Compile Include="Common\TemporalVersioningConfiguration.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="TemporalActivator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PendingRevisionsIndex.cs" />
<Compile Include="TemporalVersioningUtil.cs" />
<Compile Include="Triggers\SharedTriggerActions.cs" />
<Compile Include="Triggers\TemporalVersioningQueryTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningDeleteTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningPutTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningLoadTrigger.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="Raven.Bundles.TemporalVersioning.nuspec">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<!-- 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">
</Target>
<Target Name="AfterBuild">
</Target>
-->
<?xml version="1.0" encoding="utf-8"?>
<Project ToolsVersion="4.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
<PropertyGroup>
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
<ProjectGuid>{8310DFC1-0E0C-4534-B92C-8894599AEFB1}</ProjectGuid>
<OutputType>Library</OutputType>
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>Raven.Bundles.TemporalVersioning</RootNamespace>
<AssemblyName>Raven.Bundles.TemporalVersioning</AssemblyName>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<SolutionDir Condition="$(SolutionDir) == '' Or $(SolutionDir) == '*Undefined*'">..\</SolutionDir>
<RestorePackages>true</RestorePackages>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
<DebugType>full</DebugType>
<Optimize>false</Optimize>
<OutputPath>bin\Debug\</OutputPath>
<DefineConstants>TRACE;DEBUG</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<DebugType>pdbonly</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE;SERVERBUNDLE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
</PropertyGroup>
<ItemGroup>
<Reference Include="Raven.Abstractions">
<HintPath>..\packages\RavenDB.Database.2.0.2330\lib\net40\Raven.Abstractions.dll</HintPath>
</Reference>
<Reference Include="Raven.Database">
<HintPath>..\packages\RavenDB.Database.2.0.2330\lib\net40\Raven.Database.dll</HintPath>
</Reference>
<Reference Include="System" />
<Reference Include="System.ComponentModel.Composition" />
<Reference Include="System.Core" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>
<ItemGroup>
<Compile Include="..\SharedAssemblyInfo.cs">
<Link>Properties\SharedAssemblyInfo.cs</Link>
</Compile>
<Compile Include="Common\TemporalConstants.cs" />
<Compile Include="Common\TemporalExtensions.cs" />
<Compile Include="Common\TemporalHistory.cs">
<SubType>Code</SubType>
</Compile>
<Compile Include="Common\TemporalMetadata.cs" />
<Compile Include="Common\TemporalStatus.cs" />
<Compile Include="Common\TemporalVersioningConfiguration.cs" />
<Compile Include="Extensions.cs" />
<Compile Include="TemporalActivator.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
<Compile Include="PendingRevisionsIndex.cs" />
<Compile Include="TemporalVersioningUtil.cs" />
<Compile Include="Triggers\SharedTriggerActions.cs" />
<Compile Include="Triggers\TemporalVersioningQueryTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningDeleteTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningPutTrigger.cs" />
<Compile Include="Triggers\TemporalVersioningLoadTrigger.cs" />
</ItemGroup>
<ItemGroup>
<None Include="packages.config" />
<None Include="Raven.Bundles.TemporalVersioning.nuspec">
<SubType>Designer</SubType>
</None>
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<Import Project="$(SolutionDir)\.nuget\nuget.targets" />
<!-- 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">
</Target>
<Target Name="AfterBuild">
</Target>
-->
</Project>
6 changes: 3 additions & 3 deletions Raven.Bundles.TemporalVersioning/packages.config
@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Database" version="2.0.2261" targetFramework="net40" />
<?xml version="1.0" encoding="utf-8"?>
<packages>
<package id="RavenDB.Database" version="2.0.2330" targetFramework="net40" />
</packages>

0 comments on commit f8e6372

Please sign in to comment.