Skip to content

Commit 19cc331

Browse files
authored
feat(templates): preserve dotnet new bit-bp parameters while creating project for further references #11252 (#11253)
1 parent 4b1645c commit 19cc331

File tree

2 files changed

+66
-4
lines changed

2 files changed

+66
-4
lines changed

src/Templates/Boilerplate/Bit.Boilerplate/README.md

Lines changed: 66 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,71 @@
22

33
Thank you for creating a new project with bit platform! We appreciate your trust in our platform and are excited to see what you'll build.
44

5+
This project gets generated by bit-bp template v-9.11.3 using the following command
6+
```bash
7+
dotnet new bit-bp
8+
--name Boilerplate
9+
<!--#if (database == "SqlServer")-->
10+
--database SqlServer
11+
<!--#elif (database == "PostgreSQL")-->
12+
--database PostgreSQL
13+
<!--#elif (database == "MySql")-->
14+
--database MySql
15+
<!--#elif (database == "Other")-->
16+
--database Other
17+
<!--#endif-->
18+
<!--#if (filesStorage == "S3")-->
19+
--filesStorage S3
20+
<!--#elif (filesStorage == "AzureBlobStorage")-->
21+
--filesStorage AzureBlobStorage
22+
<!--#elif (filesStorage == "Other")-->
23+
--filesStorage Other
24+
<!--#endif-->
25+
<!--#if (api == "Standalone")-->
26+
--api Standalone
27+
<!--#endif-->
28+
<!--#if (pipeline == "Azure")-->
29+
--pipeline Azure
30+
<!--#elif (pipeline == "None")-->
31+
--pipeline None
32+
<!--#endif-->
33+
<!--#if (module == "Admin")-->
34+
--module Admin
35+
<!--#elif (module == "Sales")-->
36+
--module Sales
37+
<!--#endif-->
38+
<!--#if (captcha == "reCaptcha")-->
39+
--captcha reCaptcha
40+
<!--#endif-->
41+
<!--#if (aspire == true)-->
42+
--aspire
43+
<!--#endif-->
44+
<!--#if (notification == true)-->
45+
--notification
46+
<!--#endif-->
47+
<!--#if (sample == true)-->
48+
--sample
49+
<!--#endif-->
50+
<!--#if (sentry == true)-->
51+
--sentry
52+
<!--#endif-->
53+
<!--#if (appInsights == true)-->
54+
--appInsights
55+
<!--#endif-->
56+
<!--#if (signalR == true)-->
57+
--signalR
58+
<!--#endif-->
59+
<!--#if (offlineDb == true)-->
60+
--offlineDb
61+
<!--#endif-->
62+
<!--#if (cloudflare == false)-->
63+
--cloudflare false
64+
<!--#endif-->
65+
<!--#if (ads == true)-->
66+
--ads
67+
<!--#endif-->
68+
```
69+
570
## Documentation
671

772
To help you get started, we have comprehensive documentation available. You can find detailed guides, samples, and more at:
@@ -10,6 +75,4 @@ To help you get started, we have comprehensive documentation available. You can
1075

1176
If you have any questions or need further assistance, feel free to [reach out](https://github.com/bitfoundation/bitplatform/issues/new/choose). Happy coding!
1277

13-
---
14-
15-
The **bit platform** team.
78+
The **bit platform** team.

src/Templates/Boilerplate/Bit.Boilerplate/src/Directory.Build.props

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
<!-- Generated by bit-bp template v-9.11.3 -->
21
<Project>
32
<!--/-:msbuild-conditional:noEmit -->
43
<PropertyGroup>

0 commit comments

Comments
 (0)