-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMvcInteropX.nuspec
24 lines (24 loc) · 1.13 KB
/
MvcInteropX.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
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>MvcInteropX</id>
<version>$version$</version>
<authors>eric.newton</authors>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/ericnewton76/MvcInterop</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>
MvcInteropX is a library to help with websites that are partially MVC and partially WebForms by allowing the WebForms parts to call MVC Controllers Actions.
Forked from Zeus Mvc Interop, this is a defacto replacement for that package not being maintained since 2011.
</description>
<dependencies>
<dependency id="Microsoft.AspNet.Mvc" version="4.0.40804" />
</dependencies>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Web" targetFramework="net40" />
</frameworkAssemblies>
</metadata>
<files>
<file src="net40/MvcInteropX.*" target="lib/net40" />
</files>
</package>