23 lines
807 B
XML
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>
|