From 5fa02e7dad2a93b2fa9ac4f4d67bc6a2c09a3eb6 Mon Sep 17 00:00:00 2001 From: Tomas Prokop Date: Thu, 13 Jun 2024 01:49:00 +0200 Subject: [PATCH] Updated readme --- README.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/README.md b/README.md index f40ea20..c712f1e 100644 --- a/README.md +++ b/README.md @@ -36,6 +36,7 @@ dotnet new pp-solution ` Create a new *standard* table: ```console dotnet new pp-entity ` +--output "src/Solutions.Model" ` --Behavior New ` --PublisherPrefix "tom" ` --LogicalName "location" ` @@ -49,6 +50,7 @@ dotnet new pp-entity ` Create a new *activity* table: ```console dotnet new pp-entity ` +--output "src/Solutions.Model" ` --EntityType "Activity" ` --Behavior "New" ` --PublisherPrefix "tom" ` @@ -63,6 +65,7 @@ dotnet new pp-entity ` Add an existing *custom table* to a solution: ```console dotnet new pp-entity ` +--output "src/Solutions.Presentation" ` --Behavior "Existing" ` --PublisherPrefix "tom" ` --LogicalName "shiftevent" ` @@ -74,6 +77,7 @@ dotnet new pp-entity ` Add an existing *system table* to a solution: ```console dotnet new pp-entity ` +--output "src/Solutions.Presentation" ` --Behavior "Existing" ` --IsSystemEntity "true" ` --LogicalName "account" `