forked from msallin/SQLiteCodeFirst
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSQLite.CodeFirst.csproj
More file actions
26 lines (23 loc) · 1.36 KB
/
SQLite.CodeFirst.csproj
File metadata and controls
26 lines (23 loc) · 1.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFrameworks>net40;net45</TargetFrameworks>
<Authors>Marc Sallin</Authors>
<Company />
<Version /> <!-- This empty tag is necessary to make appveyor csproj version patching work! -->
<Description>Creates a SQLite Database from Code, using Entity Framework CodeFirst. This Project ships several IDbInitializer which creates a new SQLite Database, based on your model/code.</Description>
<PackageProjectUrl>https://github.com/msallin/SQLiteCodeFirst</PackageProjectUrl>
<RepositoryUrl>https://github.com/msallin/SQLiteCodeFirst</RepositoryUrl>
<RepositoryType>GitHub</RepositoryType>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<PackageLicenseUrl>https://github.com/msallin/SQLiteCodeFirst/blob/master/LICENSE</PackageLicenseUrl>
<PackageRequireLicenseAcceptance>false</PackageRequireLicenseAcceptance>
<Copyright>Copyright (C) Marc Sallin</Copyright>
<PackageTags>SQLite EntityFramework EF CodeFirst</PackageTags>
<IncludeDebugSymbolsProjectOutputGroup>true</IncludeDebugSymbolsProjectOutputGroup>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>..\Shared\SQLite.CodeFirst.StrongNameKey.snk</AssemblyOriginatorKeyFile>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="EntityFramework" Version="6.2.0" />
</ItemGroup>
</Project>