-
Notifications
You must be signed in to change notification settings - Fork 2
/
ExtDb.csproj
25 lines (21 loc) · 935 Bytes
/
ExtDb.csproj
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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>net6.0</TargetFramework>
<Nullable>enable</Nullable>
<ImplicitUsings>enable</ImplicitUsings>
<UserSecretsId>64adff0d-560b-4c18-84c4-45ba9b056c4d</UserSecretsId>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<DockerfileContext>.</DockerfileContext>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="Microsoft.VisualStudio.Azure.Containers.Tools.Targets" Version="1.15.1" />
<PackageReference Include="Swashbuckle.AspNetCore" Version="6.2.3" />
</ItemGroup>
<ItemGroup>
<Folder Include="Controllers\" />
<Folder Include="wwwroot\apps\extdbdemo\app\model\" />
<Folder Include="wwwroot\apps\packages\local\ext-db\src\mixin\" />
<Folder Include="wwwroot\apps\packages\local\ext-db\src\plugin\" />
<Folder Include="wwwroot\apps\packages\local\ext-db\src\store\" />
</ItemGroup>
</Project>