-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSkillServer.csproj
More file actions
48 lines (40 loc) · 1.65 KB
/
Copy pathSkillServer.csproj
File metadata and controls
48 lines (40 loc) · 1.65 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
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>$(NetLibVersion)</TargetFramework>
<RootNamespace>SkillServer</RootNamespace>
<AssemblyName>SkillServer</AssemblyName>
<EnableSdkContainerSupport>true</EnableSdkContainerSupport>
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
<ContainerRepository>netclaw-dev/skillserver</ContainerRepository>
<ContainerTitle>skillserver</ContainerTitle>
<ContainerImageTags>$(VersionPrefix);latest</ContainerImageTags>
<ContainerRuntimeIdentifiers>linux-x64;linux-arm64</ContainerRuntimeIdentifiers>
<RuntimeIdentifiers>linux-x64;linux-arm64</RuntimeIdentifiers>
</PropertyGroup>
<ItemGroup>
<ContainerPort Include="8080" Type="tcp" />
</ItemGroup>
<PropertyGroup Label="ServerRuntimeConfig">
<TieredPGO>true</TieredPGO>
<ServerGarbageCollection>true</ServerGarbageCollection>
</PropertyGroup>
<!-- AOT Preparation (MVC not fully AOT-compatible yet, but we prepare where possible) -->
<PropertyGroup>
<JsonSerializerIsReflectionEnabledByDefault>false</JsonSerializerIsReflectionEnabledByDefault>
</PropertyGroup>
<ItemGroup>
<InternalsVisibleTo Include="SkillServer.Tests" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="Microsoft.AspNetCore.OpenApi" />
<PackageReference Include="Dapper" />
<PackageReference Include="Microsoft.Data.Sqlite" />
<PackageReference Include="YamlDotNet" />
<PackageReference Include="SharpZipLib" />
</ItemGroup>
<ItemGroup>
<None Update="migrations\**\*.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>