Skip to content
This repository has been archived by the owner on Oct 23, 2018. It is now read-only.

Commit

Permalink
v1.0.0: Adds support for Mono.
Browse files Browse the repository at this point in the history
  • Loading branch information
roydukkey committed Apr 4, 2014
1 parent 3d57d2b commit fd81e3f
Show file tree
Hide file tree
Showing 34 changed files with 457 additions and 390 deletions.
7 changes: 6 additions & 1 deletion .gitignore
Expand Up @@ -4,4 +4,9 @@

# mstest test results
TestResults
.DS_Store
.DS_Store

# User-specific files
*.suo
*.user
*.sln.docstates
19 changes: 12 additions & 7 deletions Dado.Validators/Dado.Validators.csproj
Expand Up @@ -12,6 +12,8 @@
<AssemblyName>Dado.Validators</AssemblyName>
<FileAlignment>512</FileAlignment>
<ReleaseVersion>0.0.0.2</ReleaseVersion>
<TargetFrameworkVersion>v4.0</TargetFrameworkVersion>
<TargetFrameworkProfile />
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
<DebugSymbols>true</DebugSymbols>
Expand All @@ -30,14 +32,17 @@
<DefineConstants>TRACE</DefineConstants>
<ErrorReport>prompt</ErrorReport>
<WarningLevel>4</WarningLevel>
<DocumentationFile>bin\Release\Dado.Validators.xml</DocumentationFile>
</PropertyGroup>
<ItemGroup>
<Reference Include="System" />
<Reference Include="System.configuration" />
<Reference Include="System.Core" />
<Reference Include="System.Design" />
<Reference Include="System.Drawing" />
<Reference Include="System.Web" />
<Reference Include="Microsoft.CSharp" />
<Reference Include="System.Web.Extensions" />
</ItemGroup>
<ItemGroup>
<Compile Include="extension\string.cs" />
Expand All @@ -50,7 +55,6 @@
<Compile Include="validator\custom.cs" />
<Compile Include="validator\email.cs" />
<Compile Include="validator\fileType.cs" />
<Compile Include="validator\helper\validatorCompatibility.cs" />
<Compile Include="validator\image.cs" />
<Compile Include="validator\length.cs" />
<Compile Include="validator\phone.cs" />
Expand All @@ -62,12 +66,6 @@
<Compile Include="validator\usdCurrency.cs" />
<Compile Include="validator\zipCode.cs" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="js\validation.min.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="js\validation.dev.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="image\range.bmp" />
</ItemGroup>
Expand Down Expand Up @@ -98,6 +96,13 @@
<ItemGroup>
<EmbeddedResource Include="image\custom.bmp" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="js\validation.dev.js" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource Include="js\validation.min.js" />
</ItemGroup>
<ItemGroup />
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
Other similar extension points exist, see Microsoft.Common.targets.
Expand Down
12 changes: 6 additions & 6 deletions Dado.Validators/Properties/AssemblyInfo.cs
@@ -1,5 +1,5 @@
//---------------------------------------------------------------------------------
// Dado Validators, Copyright 2013 roydukkey.
// Dado Validators, Copyright 2014 roydukkey.
// Dual licensed under the MIT (http://www.roydukkey.com/mit) and
// GPL Version 2 (http://www.roydukkey.com/gpl) licenses.
//---------------------------------------------------------------------------------
Expand All @@ -12,12 +12,12 @@
// General Information about an assembly is controlled through the following
// set of attributes. Change these attribute values to modify the information
// associated with an assembly.
[assembly: AssemblyTitle("Dado Validators")]
[assembly: AssemblyDescription("An healthy alternative to the ASP.NET validation controls.")]
[assembly: AssemblyTitle("An healthy alternative to the ASP.NET and Mono validation controls.")]
[assembly: AssemblyDescription("An healthy alternative to the ASP.NET and Mono validation controls.")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("roydukkey")]
[assembly: AssemblyProduct("Dado Validators")]
[assembly: AssemblyCopyright("Copyright © roydukkey, Inc. 2013")]
[assembly: AssemblyProduct("Dado.Validators")]
[assembly: AssemblyCopyright("Copyright © roydukkey, Inc. 2014")]
[assembly: AssemblyTrademark("")]
[assembly: AssemblyCulture("")]

Expand All @@ -38,7 +38,7 @@
//
// <major>.<minor>.<bugfix>.<devlopment>
//
[assembly: AssemblyVersion("0.7.1")]
[assembly: AssemblyVersion("1.0.0")]

[assembly: WebResource("Dado.js.validation.dev.js", "text/javascript")]
[assembly: WebResource("Dado.js.validation.min.js", "text/javascript")]
2 changes: 1 addition & 1 deletion Dado.Validators/extension/string.cs
@@ -1,5 +1,5 @@
//---------------------------------------------------------------------------------
// Dado Validators, Copyright 2013 roydukkey.
// Dado Validators, Copyright 2014 roydukkey.
// Dual licensed under the MIT (http://www.roydukkey.com/mit) and
// GPL Version 2 (http://www.roydukkey.com/gpl) licenses.
//---------------------------------------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion Dado.Validators/global.cs
@@ -1,5 +1,5 @@
//---------------------------------------------------------------------------------
// Dado Validators, Copyright 2013 roydukkey.
// Dado Validators, Copyright 2014 roydukkey.
// Dual licensed under the MIT (http://www.roydukkey.com/mit) and
// GPL Version 2 (http://www.roydukkey.com/gpl) licenses.
//---------------------------------------------------------------------------------
Expand Down

0 comments on commit fd81e3f

Please sign in to comment.