Skip to content

Commit

Permalink
Merge pull request IntertechInc#9 from wald-tq/Development
Browse files Browse the repository at this point in the history
Add notes about Development
  • Loading branch information
richinator38 committed Jul 13, 2015
2 parents b0f2509 + 22958d0 commit fab28a7
Show file tree
Hide file tree
Showing 6 changed files with 55 additions and 1 deletion.
1 change: 1 addition & 0 deletions Intertech.Validation/Intertech.Validation.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@
<Compile Include="ValidationHelper.cs" />
</ItemGroup>
<ItemGroup>
<None Include="Intertech.Validation.nuspec" />
<None Include="packages.config" />
</ItemGroup>
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
Expand Down
17 changes: 17 additions & 0 deletions Intertech.Validation/Intertech.Validation.nuspec
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?xml version="1.0"?>
<package >
<metadata>
<id>$id$</id>
<version>$version$</version>
<title>$title$</title>
<authors>$author$</authors>
<owners>$author$</owners>
<licenseUrl>http://www.apache.org/licenses/LICENSE-2.0</licenseUrl>
<projectUrl>https://github.com/IntertechInc/aa-validation-from-server</projectUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<description>$description$</description>
<releaseNotes>Summary of changes made in this release of the package.</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags>Intertech validation AngularAgility form external configuration api</tags>
</metadata>
</package>
2 changes: 1 addition & 1 deletion Intertech.Validation/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
[assembly: AssemblyTitle("Intertech.Validation")]
[assembly: AssemblyDescription("")]
[assembly: AssemblyConfiguration("")]
[assembly: AssemblyCompany("")]
[assembly: AssemblyCompany("Intertech, Inc")]
[assembly: AssemblyProduct("Intertech.Validation")]
[assembly: AssemblyCopyright("Copyright © 2014")]
[assembly: AssemblyTrademark("")]
Expand Down
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,3 +139,7 @@ The controller now can inject validationData since it was resolved in the router
}
}
```

## Contributing

See file [development.md](development.md) for more infos on the project structure.
1 change: 1 addition & 0 deletions aa-validation-from-server.sln
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ EndProject
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{4C7BB457-4636-4990-AAC6-98EDA5B828D5}"
ProjectSection(SolutionItems) = preProject
.gitignore = .gitignore
development.md = development.md
README.md = README.md
EndProjectSection
EndProject
Expand Down
31 changes: 31 additions & 0 deletions development.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# Development

## Solution structure

### AATestAPI
A small WebAPI Project for testing purposes

One simple controller which can be called by URL:
http://localhost:52931/api/Validation/GetValidations?dtoObjectName=ValidationTest&jsonObjectName=ObjectName

### AATestSite
A simple web site.

Can be called at http://localhost:52536/app/index.html

TODO:

* Install required dependencies with bower
* End-to-end tests?

### Intertech.Validation
The actual source of the library.

#### Build the NuGet Package

```
.nuget\NuGet.exe pack Intertech.Validation\Intertech.Validation.csproj
```

### Intertech.Validation.Test
The test-project with backend unit-tests

0 comments on commit fab28a7

Please sign in to comment.