Skip to content

Commit

Permalink
Fixing version compiler to version 3.1.3
Browse files Browse the repository at this point in the history
  • Loading branch information
mbdavid committed Aug 13, 2017
1 parent 7dad3c3 commit 1ee7679
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 16 deletions.
4 changes: 2 additions & 2 deletions LiteDB.Shell/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("01ce385b-31a7-4b1a-9487-23fe8acb3888")]
[assembly: AssemblyVersion("3.1.2.0")]
[assembly: AssemblyFileVersion("3.1.2.0")]
[assembly: AssemblyVersion("3.1.3.0")]
[assembly: AssemblyFileVersion("3.1.3.0")]
[assembly: NeutralResourcesLanguage("en")]

4 changes: 2 additions & 2 deletions LiteDB.Tests/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: NeutralResourcesLanguage("en")]
[assembly: ComVisible(false)]
[assembly: Guid("de183e83-7df6-475c-8185-b0070d098821")]
[assembly: AssemblyVersion("3.1.2.0")]
[assembly: AssemblyFileVersion("3.1.2.0")]
[assembly: AssemblyVersion("3.1.3.0")]
[assembly: AssemblyFileVersion("3.1.3.0")]
6 changes: 3 additions & 3 deletions LiteDB.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/10/nuspec.xsd">
<metadata>
<id>LiteDB</id>
<version>3.1.2</version>
<version>3.1.3</version>
<title>LiteDB</title>
<authors>Mauricio David</authors>
<projectUrl>http://www.litedb.org</projectUrl>
Expand All @@ -17,8 +17,8 @@
<files>
<file src="LiteDB\bin\Release\net35\LiteDB.dll" target="lib\net35\LiteDB.dll" />
<file src="LiteDB\bin\Release\net35\LiteDB.xml" target="lib\net35\LiteDB.xml" />
<file src="LiteDB\bin\Release\net451\LiteDB.dll" target="lib\net451\LiteDB.dll" />
<file src="LiteDB\bin\Release\net451\LiteDB.xml" target="lib\net451\LiteDB.xml" />
<file src="LiteDB\bin\Release\net462\LiteDB.dll" target="lib\net462\LiteDB.dll" />
<file src="LiteDB\bin\Release\net462\LiteDB.xml" target="lib\net462\LiteDB.xml" />
<file src="LiteDB\bin\Release\netstandard1.3\LiteDB.dll" target="lib\netstandard1.3\LiteDB.dll" />
<file src="LiteDB\bin\Release\netstandard1.3\LiteDB.xml" target="lib\netstandard1.3\LiteDB.xml" />
</files>
Expand Down
13 changes: 6 additions & 7 deletions LiteDB/LiteDB.csproj
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>net35;net451;netstandard1.3</TargetFrameworks>
<TargetFrameworks>net35;net462;netstandard1.3</TargetFrameworks>
<AssemblyName>LiteDB</AssemblyName>
<PackageId>LiteDB</PackageId>
<GenerateAssemblyTitleAttribute>false</GenerateAssemblyTitleAttribute>
Expand All @@ -20,19 +20,18 @@
</PropertyGroup>

<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|AnyCPU'">
<DefineConstants>TRACE;DEBUG;NETSTANDARD1_3</DefineConstants>
<DefineConstants>TRACE;DEBUG</DefineConstants>
</PropertyGroup>

<PropertyGroup Condition="'$(TargetFramework)' == 'net462'">
<DefineConstants>NET35</DefineConstants>
</PropertyGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'netstandard1.3' ">
<PackageReference Include="System.Reflection" Version="4.3.0" />
<PackageReference Include="System.Reflection.TypeExtensions" Version="4.3.0" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net451' ">
<Reference Include="System" />
<Reference Include="Microsoft.CSharp" />
</ItemGroup>

<ItemGroup Condition=" '$(TargetFramework)' == 'net35' ">
<Reference Include="System" />
</ItemGroup>
Expand Down
4 changes: 2 additions & 2 deletions LiteDB/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
[assembly: AssemblyCulture("")]
[assembly: ComVisible(false)]
[assembly: Guid("54989b5c-4bcf-4d58-b8ba-9b014a324f76")]
[assembly: AssemblyVersion("3.1.2.0")]
[assembly: AssemblyFileVersion("3.1.2.0")]
[assembly: AssemblyVersion("3.1.3.0")]
[assembly: AssemblyFileVersion("3.1.3.0")]
[assembly: NeutralResourcesLanguage("en")]

0 comments on commit 1ee7679

Please sign in to comment.