Skip to content

Commit

Permalink
Convert to .NET 4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Mar 11, 2015
1 parent c71672c commit 754bd1c
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 35 deletions.
2 changes: 1 addition & 1 deletion Docs/1 - Getting Started.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LiteDB is a small, fast and lightweight NoSQL embedded database for .NET.

- Serverless NoSQL Document Store
- Simple API similar to MongoDB
- 100% C# code for .NET 3.5 in a single DLL (less then 200kb)
- 100% C# code for .NET 4 in a single DLL (less then 200kb)
- Transaction control - ACID
- Recovery in writing failure (journal mode)
- Store POCO classes or BsonDocument
Expand Down
4 changes: 2 additions & 2 deletions LiteDB.Shell/App.config
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?xml version="1.0"?>
<configuration>
<startup>
<supportedRuntime version="v2.0.50727"/>
</startup>

<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0"/></startup>
</configuration>
2 changes: 1 addition & 1 deletion LiteDB.Shell/LiteDB.Shell.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LiteDB.Shell</RootNamespace>
<AssemblyName>LiteDB.Shell</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
<PublishUrl>publish\</PublishUrl>
Expand Down
3 changes: 1 addition & 2 deletions LiteDB/LiteDB.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>LiteDB</RootNamespace>
<AssemblyName>LiteDB</AssemblyName>
<TargetFrameworkVersion>v3.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<TargetFrameworkProfile />
</PropertyGroup>
Expand Down Expand Up @@ -154,7 +154,6 @@
<Compile Include="Utils\DumpDatabase.cs" />
<Compile Include="Utils\IOExceptionExtensions.cs" />
<Compile Include="Utils\MimeTypeConverter.cs" />
<Compile Include="Utils\StreamExtensions.cs" />
<Compile Include="Utils\DictionaryExtensions.cs" />
<Compile Include="Utils\LiteException.cs" />
<Compile Include="Utils\StringScanner.cs" />
Expand Down
26 changes: 0 additions & 26 deletions LiteDB/Utils/StreamExtensions.cs

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ LiteDB is a small, fast and lightweight NoSQL embedded database.

- Serverless NoSQL Document Store
- Simple API similar to MongoDB
- 100% C# code for .NET 3.5 in a single DLL (less then 200kb)
- 100% C# code for .NET 4 in a single DLL (less then 200kb)
- Transaction control - ACID
- Recovery in writing failure (journal mode)
- Store POCO classes or BsonDocument
Expand Down
4 changes: 2 additions & 2 deletions UnitTest/UnitTest.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,14 +8,15 @@
<AppDesignerFolder>Properties</AppDesignerFolder>
<RootNamespace>UnitTest</RootNamespace>
<AssemblyName>UnitTest</AssemblyName>
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<FileAlignment>512</FileAlignment>
<ProjectTypeGuids>{3AC096D0-A1C2-E12C-1390-A8335801FDAB};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
<VisualStudioVersion Condition="'$(VisualStudioVersion)' == ''">10.0</VisualStudioVersion>
<VSToolsPath Condition="'$(VSToolsPath)' == ''">$(MSBuildExtensionsPath32)\Microsoft\VisualStudio\v$(VisualStudioVersion)</VSToolsPath>
<ReferencePath>$(ProgramFiles)\Common Files\microsoft shared\VSTT\$(VisualStudioVersion)\UITestExtensionPackages</ReferencePath>
<IsCodedUITest>False</IsCodedUITest>
<TestProjectType>UnitTest</TestProjectType>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -38,7 +39,6 @@
<Reference Include="Microsoft.CSharp" />
<Reference Include="System" />
<Reference Include="System.XML" />
<Reference Include="System.Xml.Serialization" />
</ItemGroup>
<Choose>
<When Condition="('$(VisualStudioVersion)' == '10.0' or '$(VisualStudioVersion)' == '') and '$(TargetFrameworkVersion)' == 'v3.5'">
Expand Down

0 comments on commit 754bd1c

Please sign in to comment.