-
Notifications
You must be signed in to change notification settings - Fork 3
/
Expansive.nuspec
35 lines (33 loc) · 1.73 KB
/
Expansive.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
<?xml version="1.0"?>
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>Expansive</id>
<version>1.5.2</version>
<title>Expansive</title>
<authors>Adam Anderly</authors>
<owners>Adam Anderly</owners>
<licenseUrl>http://www.opensource.org/licenses/MS-PL</licenseUrl>
<projectUrl>https://github.com/anderly/Expansive</projectUrl>
<iconUrl>https://github.com/anderly/Expansive/raw/master/expansive.png</iconUrl>
<requireLicenseAcceptance>true</requireLicenseAcceptance>
<description>A powerful string expansion library for .NET you never knew you always wanted.
- Use for token-based string templating passing in a model for property replacement
- 4 token formats to pick from (MvcRoute-style, Razor-style, NAnt-style or MSBuild-style)
- Use as a more readable alternative to string.Format()
- Easily embed appSettings tokens in strings and expand them easily.
- Chain together appSettings tokens to reduce redundant values.
- Embed appSettings tokens in connection strings to make them more dynamic.
- Use your imagination.
Check out the readme file located here: http://github.com/anderly/Expansive to find out more.</description>
<summary>A powerful string expansion library for .NET you never knew you always wanted.</summary>
<releaseNotes>Minor refactoring.</releaseNotes>
<tags>.net asp.net mvc mvc3</tags>
<frameworkAssemblies>
<frameworkAssembly assemblyName="System.Configuration" targetFramework=".NETFramework4.0" />
</frameworkAssemblies>
</metadata>
<files>
<file src="content\App_Code\Config.cs" target="content\App_Code\Config.cs" />
<file src="content\App_Code\Expansive.cs" target="content\App_Code\Expansive.cs" />
</files>
</package>