-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSimpleModule.Cli.csproj
More file actions
78 lines (78 loc) · 2.84 KB
/
Copy pathSimpleModule.Cli.csproj
File metadata and controls
78 lines (78 loc) · 2.84 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0</TargetFramework>
<PackAsTool>true</PackAsTool>
<ToolCommandName>sm</ToolCommandName>
<PackageId>SimpleModule.Cli</PackageId>
<NoWarn>CA1308</NoWarn>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="NetEscapades.EnumGenerators" />
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="Npgsql" />
<PackageReference Include="Spectre.Console.Cli" />
</ItemGroup>
<ItemGroup>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\SimpleModule.Host.csproj"
LogicalName="Templates.Host.SimpleModule.Host.csproj"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\Program.cs"
LogicalName="Templates.Host.Program.cs"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\appsettings.json"
LogicalName="Templates.Host.appsettings.json"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\appsettings.Development.json"
LogicalName="Templates.Host.appsettings.Development.json"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\wwwroot\index.html"
LogicalName="Templates.Host.wwwroot.index.html"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\wwwroot\favicon.svg"
LogicalName="Templates.Host.wwwroot.favicon.svg"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\ClientApp\app.tsx"
LogicalName="Templates.Host.ClientApp.app.tsx"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\ClientApp\vite.config.ts"
LogicalName="Templates.Host.ClientApp.vite.config.ts"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\ClientApp\vite.dev.config.ts"
LogicalName="Templates.Host.ClientApp.vite.dev.config.ts"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\ClientApp\validate-pages.mjs"
LogicalName="Templates.Host.ClientApp.validate-pages.mjs"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\ClientApp\package.json"
LogicalName="Templates.Host.ClientApp.package.json"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\Styles\app.css"
LogicalName="Templates.Host.Styles.app.css"
/>
<EmbeddedResource
Include="..\..\template\SimpleModule.Host\Properties\launchSettings.json"
LogicalName="Templates.Host.Properties.launchSettings.json"
/>
<EmbeddedResource
Include="..\..\scripts\extract-ts-types.mjs"
LogicalName="Templates.scripts.extract-ts-types.mjs"
/>
<EmbeddedResource
Include="..\..\scripts\extract-routes.mjs"
LogicalName="Templates.scripts.extract-routes.mjs"
/>
</ItemGroup>
</Project>