- Product key dialog: Fluent overlay with 5-field input + paste support
- Activate button on each license card asks for key first (/inpkey + /act)
- Auto-refresh lists after removal/activation on all pages
- Access checkbox disabled for Standard and Home & Business editions
- MSI uninstall: only accept {GUID} product codes (fix msiexec help popup)
- Window height properly resets when Details expander is collapsed
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
28 sor
974 B
XML
28 sor
974 B
XML
<Project Sdk="Microsoft.NET.Sdk">
|
|
<PropertyGroup>
|
|
<OutputType>WinExe</OutputType>
|
|
<TargetFramework>net48</TargetFramework>
|
|
<UseWPF>true</UseWPF>
|
|
<RootNamespace>InstaSoftOfficeTool</RootNamespace>
|
|
<AssemblyName>InstaSoftOfficeTool</AssemblyName>
|
|
<ApplicationIcon>Resources\app.ico</ApplicationIcon>
|
|
<Company>InstaSoft Zrt.</Company>
|
|
<Product>InstaSoft Office Tool</Product>
|
|
<Copyright>Copyright (c) InstaSoft Zrt. 2026</Copyright>
|
|
<Version>1.1.0</Version>
|
|
<AssemblyVersion>1.1.0.0</AssemblyVersion>
|
|
<FileVersion>1.1.0.0</FileVersion>
|
|
<ApplicationManifest>app.manifest</ApplicationManifest>
|
|
<LangVersion>latest</LangVersion>
|
|
</PropertyGroup>
|
|
|
|
<ItemGroup>
|
|
<PackageReference Include="Microsoft.NETFramework.ReferenceAssemblies" Version="1.0.3" PrivateAssets="all" />
|
|
<Reference Include="System.Net.Http" />
|
|
</ItemGroup>
|
|
|
|
<ItemGroup>
|
|
<Resource Include="Resources\app.ico" />
|
|
</ItemGroup>
|
|
</Project>
|