Skip to content

Commit b9439cb

Browse files
committed
NuSpec
1 parent 8cda47d commit b9439cb

File tree

3 files changed

+15
-9
lines changed

3 files changed

+15
-9
lines changed

.travis.yml

Lines changed: 0 additions & 2 deletions
This file was deleted.

SQLite.CodeFirst/SQLite.CodeFirst.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
<Reference Include="System" />
4747
<Reference Include="System.Core" />
4848
<Reference Include="System.Data" />
49-
<Reference Include="System.Data.Entity" />
5049
</ItemGroup>
5150
<ItemGroup>
5251
<Compile Include="Builder\ColumnStatementCollectionBuilder.cs" />
Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
1-
<?xml version="1.0"?>
2-
<package >
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
33
<metadata>
44
<id>SQLite.CodeFirst</id>
55
<version>0.9.0</version>
66
<authors>Marc Sallin</authors>
7-
<owners>Marc</owners>
8-
<licenseUrl>https://github.com/msallin/SQLiteCodeFirst/blob/CI_Test/LICENSE</licenseUrl>
7+
<owners>Marc Sallin</owners>
8+
<licenseUrl>https://github.com/msallin/SQLiteCodeFirst/blob/master/LICENSE</licenseUrl>
99
<projectUrl>https://github.com/msallin/SQLiteCodeFirst</projectUrl>
1010
<requireLicenseAcceptance>false</requireLicenseAcceptance>
1111
<description>
1212
Creates a SQLite Database from Code, using Entity Framework CodeFirst.
1313
This Project ships several IDbInitializer which creates a new SQLite Database, based on your model/code.
1414
</description>
15-
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
15+
<summary>Creates a SQLite Database from Code, using Entity Framework CodeFirst.</summary>
16+
<releaseNotes />
1617
<copyright>Copyright 2015</copyright>
1718
<tags>SQLite EntityFramework EF CodeFirst</tags>
1819
<dependencies>
19-
<package id="EntityFramework" version="6)" />
20+
<dependency id="EntityFramework" version="6.1" />
2021
</dependencies>
22+
<frameworkAssemblies>
23+
<frameworkAssembly assemblyName="System" targetFramework="" />
24+
<frameworkAssembly assemblyName="System.Core" targetFramework="" />
25+
<frameworkAssembly assemblyName="System.Data" targetFramework="" />
26+
</frameworkAssemblies>
2127
</metadata>
28+
<files>
29+
<file src="bin\Release\SQLite.CodeFirst.dll" target="lib\net45\SQLite.CodeFirst.dll" />
30+
</files>
2231
</package>

0 commit comments

Comments
 (0)