forked from timabell/ef-enum-to-lookup
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ef-enum-to-lookup.nuspec
46 lines (40 loc) · 2.09 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
37
38
39
40
41
42
43
44
45
46
<?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.7.1</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.
Please report any issues you encounter here: https://github.com/timabell/ef-enum-to-lookup/issues
</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>
v1.7.0
* fixed bug getting table names from some contexts https://github.com/timabell/ef-enum-to-lookup/issues/25
* you can now generate scripts to run later https://github.com/timabell/ef-enum-to-lookup/issues/22 (see updated readme / usage files for details)
* refactoring and cleanup of the code
v1.7.1
* fix broken generated sql (oops), didn't affect main Apply() code though.
* both methods now use the generated sql, note this means no more parameters, which *should* have no effect but file a bug if you spot anything.
* wrapped all sql in a transaction
</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>