Skip to content

Commit 5ff6c3c

Browse files
committed
Added SQLite.CodeFirst.csproj.nuspec to the top of the solution.
1 parent bb3caba commit 5ff6c3c

File tree

2 files changed

+32
-5
lines changed

2 files changed

+32
-5
lines changed

SQLite.CodeFirst.csproj.nuspec

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
3+
<metadata>
4+
<id>$id$</id>
5+
<version>$version$</version>
6+
<authors>$author$</authors>
7+
<owners>$author$</owners>
8+
<licenseUrl>https://github.com/msallin/SQLiteCodeFirst/blob/master/LICENSE</licenseUrl>
9+
<projectUrl>https://github.com/msallin/SQLiteCodeFirst</projectUrl>
10+
<requireLicenseAcceptance>false</requireLicenseAcceptance>
11+
<description>$description$</description>
12+
<summary>Creates a SQLite Database from Code, using Entity Framework CodeFirst.</summary>
13+
<releaseNotes />
14+
<copyright>Copyright (C) Marc Sallin</copyright>
15+
<tags>SQLite EntityFramework EF CodeFirst</tags>
16+
<dependencies>
17+
<dependency id="EntityFramework" version="6.1" />
18+
</dependencies>
19+
<frameworkAssemblies>
20+
<frameworkAssembly assemblyName="System" targetFramework="" />
21+
<frameworkAssembly assemblyName="System.Core" targetFramework="" />
22+
<frameworkAssembly assemblyName="System.Data" targetFramework="" />
23+
</frameworkAssemblies>
24+
</metadata>
25+
<files>
26+
<file src="SQLite.CodeFirst\bin\Release-40\$id$.dll" target="lib\net40\SQLite.CodeFirst.dll" />
27+
<file src="SQLite.CodeFirst\bin\Release-45\$id$.dll" target="lib\net45\SQLite.CodeFirst.dll" />
28+
</files>
29+
</package>

SQLite.CodeFirst.sln

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,11 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = ".nuget", ".nuget", "{01B97A
1515
EndProjectSection
1616
EndProject
1717
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Build", "Build", "{7031BD3C-AE76-43CD-91B6-B6BCD823968C}"
18-
ProjectSection(SolutionItems) = preProject
19-
release_appveyor.yml = release_appveyor.yml
20-
EndProjectSection
21-
EndProject
22-
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{C3AEBA35-BAAE-43B6-B698-65CD15EB5C2B}"
2318
ProjectSection(SolutionItems) = preProject
2419
BuildAllConfigurations.proj = BuildAllConfigurations.proj
20+
release_appveyor.yml = release_appveyor.yml
21+
ReleaseBuild.proj = ReleaseBuild.proj
22+
SQLite.CodeFirst.csproj.nuspec = SQLite.CodeFirst.csproj.nuspec
2523
EndProjectSection
2624
EndProject
2725
Global

0 commit comments

Comments
 (0)