Skip to content

Commit 16b0544

Browse files
committed
# Conflicts: # index.md
2 parents a13df40 + 8a5e554 commit 16b0544

16 files changed

Lines changed: 82 additions & 61 deletions

File tree

.vscode/tasks.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "2.0.0",
5+
"tasks": [
6+
{
7+
"label": "build",
8+
"command": "docfx docfx.json",
9+
"type": "shell",
10+
"group": "build",
11+
"presentation": {
12+
"reveal": "silent"
13+
},
14+
"problemMatcher": "$msCompile"
15+
}
16+
]
17+
}

README.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,4 @@
22

33
# Unity Documentation
44

5-
65
This repository hosts source files and instructions for building Unity documentation site: https://unitycontainer.github.io

articles/features.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,21 @@ uid: Article.Unity.Features
44

55
# Features
66

7-
### Setup
7+
## General Features
8+
9+
* No registration required for simple POCO types
10+
* Registration/updates at any time (no builder required)
11+
* Support registration metadata
12+
* Support generic types
13+
* Register existing objects
14+
* Custom Type factories
15+
* Register Type
16+
* List all registrations
17+
* Check existing registrations
18+
19+
## Setup
820

921
* Registration
10-
* No registration required for simple POCO types
11-
* Registration/updates at any time (no builder required)
12-
* Support registration metadata
13-
* Support generic types
14-
* Register existing objects
15-
* Custom Type factories
1622
* Type mappings
1723
* Register as a `Type`
1824
* Support `Type` polymorphism

articles/history.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
---
2+
uid: Article.Unity.History
3+
---
4+
5+
# The Unity Container History
6+
7+
| Year | Release | Authors and Contributors |
8+
|:-----| :-----------: | :----- |
9+
| | | |
10+
| October 2017 | Unity 5 | GitHub Community Site |
11+
| October 2015 | Unity 4 | GitHub Community Site |
12+
| April 2014 | [Unity 3.5](https://archive.codeplex.com/?p=unity) | CodePlex Community Site |
13+
| April 2013 | [Unity 3](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/dn170416(v%3dpandp.10)) | CodePlex Community Site |
14+
| Aug 2012 | [Unity 2.1](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/hh237492(v%3dpandp.10)) | CodePlex Community Site |
15+
| April 2010 | [Unity 2.0](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/ff663144(v%3dpandp.10)) | Grigori Melnik, Bob Brumfield, Chris Tavares, Fernando Simonazzi, Nicolas Botto, Olaf Conijn, Carlos Farre, Masashi Narumoto, Rohit Sharma, Lavanya Selvaraj, Magdelene Sona, Mani Krishnaswami, Meenakshi Krishnamoorthi, Santhosh Panneerselvam, Ravindra Varman, Erik Renaud, François Tanguay, Rick Carr, Alex Homer, Dennis DeWitt, RoAnn Corbisier, Steve Elston, Nancy Michel, Patrick Lanfear, Tom Draper, Richard Burte, Jennifer Burch, Tracy Emory |
16+
| October 2008 | [Unity Application Block 1.2](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/ff647347(v%3dpandp.10)) | Grigori Melnik, Chris Tavares, Fernando Simonazzi, Vijaya Janakiraman, Carlos Farre, Dennis DeWitt, Alex Homer, Nelly Delgado, RoAnn Corbisier, Tina Burden McGrayne, Richard Burte |
17+
| May 2008 | [Unity Application Block 1.1](https://docs.microsoft.com/en-us/previous-versions/msp-n-p/ff649080(v%3dpandp.10))| Grigori Melnik, Scott Densmore, William Loeffler, Chris Tavares, Fernando Simonazzi, Nicolas Botto, Hanz Zhang, Carlos Farre, Naveen Guda, Pooja Parate, Pravin Pawar, Ronita Acharya, Sai Pasumarthi, Venkata Appaji Sirangi, Vijaya Janakiraman, Alex Homer, Nelly Delgado, RoAnn Corbisier, Tina Burden McGrayne |
18+

gulpfile.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ const paths = watched();
4343
const watch = () => gulp.watch(paths, gulp.series(build, reload));
4444

4545
exports.default = gulp.parallel(watch, serve);
46-
exports.watch = watch;
4746
exports.serve = serve;
4847
exports.build = build;
4948
exports.develop = exports.default;

index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The Unity Container (Unity) is a lightweight, extensible dependency injection co
1313

1414
## Issues and Contributions
1515

16-
* If something is broken and you know how to fix it, send a pull request.
16+
* If something is broken and you know how to fix it, send a pull request.
1717
* If you have no idea what is wrong, create an issue
1818

1919
## Any feedback and contributions are welcome

toc.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,3 +7,4 @@
77
- name: Api Documentation
88
href: api/
99
homepage: api/index.md
10+

0 commit comments

Comments
 (0)