You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
38 lines
1.3 KiB
38 lines
1.3 KiB
<Project Sdk="Microsoft.NET.Sdk.Worker"> |
|
|
|
<PropertyGroup> |
|
<TargetFramework>net6.0</TargetFramework> |
|
<Nullable>enable</Nullable> |
|
<ImplicitUsings>enable</ImplicitUsings> |
|
<UserSecretsId>dotnet-deep_cms-101b2c8f-ab12-408d-95e1-fab0acc1536e</UserSecretsId> |
|
<RootNamespace>tias.deep.CMS</RootNamespace> |
|
<RuntimeIdentifier>linux-x64</RuntimeIdentifier> |
|
<PublishSingleFile>true</PublishSingleFile> |
|
<SelfContained>true</SelfContained> |
|
</PropertyGroup> |
|
|
|
<ItemGroup> |
|
<ProjectReference Include="../deep-server-core/deep-server-core-dotnet.csproj" /> |
|
<ProjectReference Include="../deep-server-cms/deep-server-cms-backend.csproj" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" /> |
|
<PackageReference Include="Microsoft.Extensions.Hosting.SystemD" Version="6.0.0" /> |
|
<PackageReference Include="Microsoft.Extensions.Hosting.WindowsServices" Version="6.0.0" /> |
|
</ItemGroup> |
|
|
|
<PropertyGroup> |
|
<ErrorOnDuplicatePublishOutputFiles>false</ErrorOnDuplicatePublishOutputFiles> |
|
</PropertyGroup> |
|
|
|
|
|
<ItemGroup> |
|
<None Update="settings\**" CopyToOutputDirectory="PreserveNewest" /> |
|
</ItemGroup> |
|
|
|
<ItemGroup> |
|
<None Update="webclient\**" CopyToOutputDirectory="PreserveNewest" /> |
|
</ItemGroup> |
|
|
|
</Project>
|
|
|