Upload via GUI (37 Dateien)

This commit is contained in:
Git Manager GUI
2026-07-28 19:00:17 +02:00
parent 0fa06d3ebd
commit 20b9d3a460
37 changed files with 1334 additions and 89 deletions

31
webview2/MyStart.csproj Normal file
View File

@@ -0,0 +1,31 @@
<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>
<ApplicationIcon>app.ico</ApplicationIcon>
<RuntimeIdentifier>win-x64</RuntimeIdentifier>
<PublishSingleFile>true</PublishSingleFile>
<SelfContained>true</SelfContained>
<IncludeNativeLibrariesForSelfExtract>true</IncludeNativeLibrariesForSelfExtract>
<EnableCompressionInSingleFile>true</EnableCompressionInSingleFile>
<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>