44 lines
1.7 KiB
XML
44 lines
1.7 KiB
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net10.0-windows</TargetFramework>
|
|
<UseWindowsForms>true</UseWindowsForms>
|
|
<Nullable>enable</Nullable>
|
|
<ImplicitUsings>enable</ImplicitUsings>
|
|
<AssemblyName>MyStart</AssemblyName>
|
|
<RootNamespace>MyStart</RootNamespace>
|
|
<Version>1.0.2</Version>
|
|
<Authors>M_Viper</Authors>
|
|
<Company>M_Viper</Company>
|
|
<Product>MyStart</Product>
|
|
<Copyright>© M_Viper</Copyright>
|
|
<ApplicationIcon>app.ico</ApplicationIcon>
|
|
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
|
|
<PublishSingleFile>true</PublishSingleFile>
|
|
<SelfContained>true</SelfContained>
|
|
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
|
|
<!-- Uncompressed on purpose: a compressed, self-extracting single file is a
|
|
classic "packer" pattern that antivirus heuristics flag on sight. Same
|
|
one portable exe, just bigger (~110 MB instead of ~50 MB) and nothing
|
|
to unpack at startup. -->
|
|
<EnableCompressionInSingleFile>false</EnableCompressionInSingleFile>
|
|
<!-- Keep publish output down to just the exe; without this, the WebView2
|
|
package's .xml IntelliSense docs get copied alongside it too. -->
|
|
<AllowedReferenceRelatedFileExtensions>.dll</AllowedReferenceRelatedFileExtensions>
|
|
<DebugType>none</DebugType>
|
|
<DebugSymbols>false</DebugSymbols>
|
|
<SatelliteResourceLanguages>en</SatelliteResourceLanguages>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.Web.WebView2" Version="1.0.3485.44" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<EmbeddedResource Include="app-index.html" />
|
|
<EmbeddedResource Include="app.ico" />
|
|
</ItemGroup>
|
|
|
|
</Project>
|