forked from timabell/ef-enum-to-lookup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathef-enum-to-lookup.nuspec
36 lines (32 loc) · 2 KB
/
ef-enum-to-lookup.nuspec
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
27
28
29
30
31
32
33
34
35
36
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>ef-enum-to-lookup</id>
<version>1.3.0</version>
<title>Enum Lookup Table Generator for Entity Framework 6</title>
<authors>Tim Abell</authors>
<licenseUrl>http://opensource.org/licenses/MIT</licenseUrl>
<projectUrl>http://github.com/timabell/ef-enum-to-lookup</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>Entity Framework 6.1 Enum Lookup Table Generator
Creates lookup tables and foreign key constraints based on the enums used in your model.
This makes up for a feature that's missing in Entity Framework 6.1.
See the project site on github at http://github.com/timabell/ef-enum-to-lookup for usage and more information.
</description>
<summary>Entity Framework 6.1 Enum Lookup Table Generator
Creates lookup tables and foreign key constraints based on the enums used in your model.</summary>
<releaseNotes>* Allow setting a suffix for the generated table names - https://github.com/timabell/ef-enum-to-lookup/issues/13
* Handle apostrophes in names - https://github.com/timabell/ef-enum-to-lookup/issues/9
Note although this fixes a minor sql injection issue, it introduces a new limit on the number
of enum values it can handle in one enum of 1049 (tested on sql server 2012 r2). This is due to use of parameters.
If this is a problem for you please open an issue here https://github.com/timabell/ef-enum-to-lookup/issues
</releaseNotes>
<copyright>Tim Abell</copyright>
<language>en-GB</language>
</metadata>
<files>
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.dll" target="lib\net45\EfEnumToLookup.dll" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.pdb" target="lib\net45\EfEnumToLookup.pdb" />
<file src="EfEnumToLookup\bin\Debug\EfEnumToLookup.XML" target="lib\net45\EfEnumToLookup.XML" />
</files>
</package>