-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1551 from microsoft/dev
Sync from dev
- Loading branch information
Showing
391 changed files
with
9,829 additions
and
8,682 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
[submodule "src/CoreTemplateStudio"] | ||
path = src/CoreTemplateStudio | ||
url = https://github.com/Microsoft/CoreTemplateStudio.git | ||
branch = dev | ||
branch = release |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# Documentation | ||
Web Template Studio (WebTS) documentation is divided into three areas. | ||
|
||
|
||
## General | ||
Everyone should read these. | ||
|
||
- [Installing the extension](/docs/install.md) | ||
- [Core Concepts](/docs/concepts.md) | ||
|
||
## Using WebTS to build apps | ||
These will help if you are using WebTS to build apps. | ||
|
||
- [Front-end frameworks](docs/generated-apps/frontend-frameworks/readme.md) | ||
- [Back-end frameworks](docs/generated-apps/backend-frameworks/readme.md) | ||
- [Pages](docs/generated-apps/pages/readme.md) | ||
- [Services](docs/generated-apps/services/readme.md) | ||
- [Deployment of the generated apps](docs/generated-apps/deployment.md) | ||
|
||
|
||
## Working on WebTS | ||
These will help if you want to know more about WebTS or contribute to the project. | ||
|
||
- [Application Arquitecture](docs/contributing/application-architecture.md) | ||
- [Getting started with the codebase](/docs/contributing/getting-started-developers.md) | ||
- [Templates](./contributing/templates.md) | ||
- [Accessibility](./contributing/accessibility.md) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# Concepts of Web Template Studio | ||
|
||
This section outlines the main concepts and definitions used in Web Template Studio. | ||
|
||
## Main concepts | ||
|
||
Web Template Studio is divided in the following main elements: | ||
|
||
- **Extension**: Refers to the Visual Studio Code Extension project, which, once installed, allows users to have an improved experience when creating a new Web Application from the "Web Template Studio: Launch" command. The extension is written in typescript. | ||
- **Wizard**: Refers to the WebTS client project, where all user interaction occurs after launching Web Template Studio. The Wizard guides the user through some steps to create the desired project. It allows the user to select from the available frameworks, pages and Azure Cloud Services. The wizard is created with React Typescript and is displayed through the React Panel. | ||
- **Core Template Studio and Core Template Studio CLI**: Refers to the .NET Core executable that handles all of the template synchronization and code generation (composition, generation + postaction execution). The CLI is the entry point for executing commands on Core Template Studio executable. CoreTS CLI is a self-contained .NET Core 3.1 application. | ||
- **Template** - A template contains code with metadata. The metadata will contain the following template information: name, description, licensing, remarks, programming language, type, etc. The template definition is based on [dotnet Template Engine](https://github.com/dotnet/templating). [More details on templates](/contributing/templates.md) | ||
|
||
## Other Terminology | ||
|
||
- **WinTS/Windows Template Studio** - Refers to the Visual Studio extension used to generate boilerplate code for UWP applications. | ||
- **Contributing Developer** - A developer who is contributing to this open source project. | ||
- **User** - A developer who is using the WebTS extension. | ||
- **MockUps** - A sample project that contains the code as it will be generated by the engine. MockUps are used to discuss how the generated code should look like before doing the templates. | ||
|
||
--- | ||
|
||
## Learn more | ||
|
||
- [Installing the extension](./install.md) | ||
- [Application Arquitecture](./contributing/application-architecture.md) | ||
- [Getting started with the WebTS codebase](./contributing/getting-started-developers.md) | ||
- [Templates](./contributing/templates.md) | ||
- [All docs](./readme.md) |
Oops, something went wrong.