Files
oc-sentinel/installer/OCSentinelBootstrapper/OCSentinelBootstrapper.csproj
OfficeCom Codex fde24f2616
Some checks failed
OfficeCom Sentinel Client / build-client (push) Has been cancelled
Add standalone OCSentinel setup executable builder
2026-07-17 01:07:37 +02:00

23 lines
807 B
XML

<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net10.0-windows</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
<UseWindowsForms>false</UseWindowsForms>
<AssemblyName>OCSentinelBootstrapper</AssemblyName>
<RootNamespace>OCSentinelBootstrapper</RootNamespace>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
</PropertyGroup>
<ItemGroup>
<EmbeddedResource Include="payload.zip" LogicalName="payload.zip" />
</ItemGroup>
</Project>